Skip to content

Instantly share code, notes, and snippets.

@kymtwyf
Last active October 31, 2015 03:28
Show Gist options
  • Save kymtwyf/346506298468bbf40265 to your computer and use it in GitHub Desktop.
Save kymtwyf/346506298468bbf40265 to your computer and use it in GitHub Desktop.
HDFS Exception java.net.ConnectException: Call to IP:9000 failed on connection exception: java.net.ConnectException: Connection refused

可能原因

  1. hdfs未启动

sbin/start-dfs.sh

  1. core-site.xml配置错误
<configuration>
  <property>
    <name>fs.defaultFS</name>
    <!--<value>hdfs://localhost:9000</value>不应该是localhost应该是ip-->
    <value>hdfs://192.168.1.108:9000</value>
  </property>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment