hdfs-site.xml
<configuration>
<property>
<name>dfs.data.dir</name>
<value>/hadoop/data</value>
</property>
</configuration>
mapred-site.xml
<configuration>
<property>
<name>mapred.job.tracker</name>
<value>localhost:9001</value>
</property>
</configuration>
<configuration>
<property>
<name>dfs.data.dir</name>
<value>/hadoop/data</value>
</property>
</configuration>
mapred-site.xml
<configuration>
<property>
<name>mapred.job.tracker</name>
<value>localhost:9001</value>
</property>
</configuration>
2016-01-21
<!-- core-site.xml -->
<property>
<name>hadoop.tmp.dir</name>
<value>/hadoop</value>
</property>
<property>
<name>dfs.name.dir</name>
<value>/hadoop/name</value>
</property>
<property>
<name>fs.default.name</name>
<value>hdfs://localhost:9000</value>
</property>
<property>
<name>hadoop.tmp.dir</name>
<value>/hadoop</value>
</property>
<property>
<name>dfs.name.dir</name>
<value>/hadoop/name</value>
</property>
<property>
<name>fs.default.name</name>
<value>hdfs://localhost:9000</value>
</property>
2016-01-21
http://mirror.bit.edu.cn/apache/hadoop/common/hadoop-2.7.1/hadoop-2.7.1.tar.gz
2016-01-21
最新回答 / rainbow702
你是不是JobTracker之类的进程没显示?如果是的话,建议你去看看"/opt/hadoop-1.2.1/logs"目录中,“namenode”相关的日志log,看看log里有没有下面这样的错误信息:2016-01-09 15:29:12,036 ERROR org.apache.hadoop.hdfs.server.namenode.NameNode: java.net.BindException: Problem binding to imooc/183.207.232.253:9000 : 无法指...
2016-01-10
最新回答 / 历史与足迹
jps命令查看进程状态。如果有以下的进程,<...图片...>,然后在浏览器访问:http://localhost:50030 (mapreduce页面) 和http://localhost:50070 (hdfs页面)。如果访问成功,则说明hadoop起来了。
2016-01-10