从本地主机调用,连接异常失败

时间:2018-09-16 05:44:04

标签: hadoop hdfs

我是Hadoop编程的新手,在https://www.guru99.com/create-your-first-hadoop-program.html上的一个简单示例文档之后,我陷入了以下错误。

copyFromLocal: Call From localhost/127.0.0.1 to localhost:9000 failed on connection exception: java.net.ConnectException: Connection refused; For more details see:  http://wiki.apache.org/hadoop/ConnectionRefused

我的文件配置:

core-site.xml:

<configuration>
    <property>
        <name>fs.default.name</name>
        <value>hdfs://saichanda-OptiPlex-9020:9000</value>
    </property>
</configuration>

/ etc / hosts:

127.0.0.1       localhost
#127.0.0.1       saichanda-OptiPlex-9020

10.0.3.18       localhost

其中,10.0.3.18是系统IP地址

/ etc / hostname:

saichanda-OptiPlex-9020

我遇到此错误是什么配置错误。 我浏览了错误声明中提供的链接,但不清楚在可能的解决方案列表中属于哪一类。

有人可以解决这个问题吗??

1 个答案:

答案 0 :(得分:1)

将/ etc / hosts修改为此:

127.0.0.1 localhost
10.0.3.18 saichanda-OptiPlex-9020

重新启动您的hdfs和yarn。