在我的hadoop安装中,我找不到mapred-site.xml文件,但它有mapred-site.xml.template。
我已将以下属性添加到mapred.xml.template
<configuration>
<property>
<name>mapred.job.tracker</name>
<value>localhost:9001</value>
</property>
</configuration>
我错过了什么吗?
芯-site.xml中
<property>
<name>fs.default.name</name>
<value>hdfs://localhost:9000</value>
</property>
HDFS-site.xml中
<property>
<name>dfs.replication</name>
<value>1</value>
</property>
使用以下配置:
http://localhost:50070/ : Running
http://localhost:50060/ : Not Running
http://localhost:50030/ : Not Running
答案 0 :(得分:8)
Joboer和任务跟踪器概念在hadoop YARN中有所不同。您发布的链接仅适用于旧的hadoop。在新版本的hadoop中,您可以监视正在执行的作业
localhost:8088
您将在其中找到新的hadoop的webUI。此外,如果您使用的是mapred-site.xml,则必须将mapred-site.xml.template重命名为mapred-site.xml。添加所需的属性并重新启动系统。