简体   繁体   English

无法连接到http:// localhost:50030 /-Hadoop 2.6.0 Ubuntu 14.04 LTS

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

I have Hadoop 2.6.0 installed on my Ubuntu 14.04 LTS machine. 我在Ubuntu 14.04 LTS计算机上安装了Hadoop 2.6.0。 I am able to successfully connect to http://localhost:50070/ . 我能够成功连接到http://localhost:50070/

I am trying to connect to http://locahost:50030/ I have the following in my mapred-site.xml 我正在尝试连接到http://locahost:50030/ ,我的mapred-site.xml包含以下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: 我运行jps命令并获得以下输出:

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 谢谢

You are using hadoop 2.6.0, job tracker is replaced by YARN. 您正在使用hadoop 2.6.0,作业跟踪器已替换为YARN。 The port number to look for is 8088. 要查找的端口号是8088。
Try http://localhost:8088 尝试http:// localhost:8088

http://localhost:50070/ node manager is not working because you run command prompt without Administrator rights. http:// localhost:50070 /节点管理器不起作用,因为您在没有管理员权限的情况下运行命令提示符。 Run command prompt with "Run As Administrator" option, then it will work. 使用“以管理员身份运行”选项运行命令提示符,然后它将起作用。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM