Cannot connect to http://localhost:50030/ - Hadoop 2.6.0 Ubuntu 14.04 LTS

青春壹個敷衍的年華 提交于 2019-11-29 15:53:04

问题


I have Hadoop 2.6.0 installed on my Ubuntu 14.04 LTS machine. I am able to successfully connect to http://localhost:50070/.

I am trying to connect to http://locahost:50030/ I have the following in my mapred-site.xml

<configuration>
    <property>
        <name>mapred.job.tracker</name>
        <value>localhost:9001</value>
    </property>
</configuration>

Yet I continue to get an error of not being able to connect. I ran the jps command and got the following output:

12272 Jps
10059 SecondaryNameNode
6675 org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar
10233 ResourceManager
9867 DataNode
9745 NameNode
10362 NodeManager

So my name and data nodes are both running.

If I need to post anymore information please let me know.

Thanks


回答1:


You are using hadoop 2.6.0, job tracker is replaced by YARN. The port number to look for is 8088.
Try http://localhost:8088




回答2:


http://localhost:50070/ node manager is not working because you run command prompt without Administrator rights. Run command prompt with "Run As Administrator" option, then it will work.



来源:https://stackoverflow.com/questions/31232915/cannot-connect-to-http-localhost50030-hadoop-2-6-0-ubuntu-14-04-lts

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!