복붙노트

[HADOOP] 여러 노드가 구성 후 작동하지 HDFS의 DFS 1!

HADOOP

여러 노드가 구성 후 작동하지 HDFS의 DFS 1!

내 단일 로컬 VM에 멀티 ndoes를 구성 할 수있는 온라인 자습서 다음 시작했다. 여기 마스터 노드의 호스트입니다 :

127.0.0.1   localhost
192.168.96.132  hadoop
192.168.96.135  hadoop1
192.168.96.136  hadoop2

ssh:ALL:allow
sshd:ALL:allow

다음은 작업에 사용되는 명령은 다음과 같습니다 HDFS DFS -ls

지금은 아래의 오류 메시지가 표시하고있다 :

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

어떻게 내 구성에 문제가 있습니다? 어디 확인하고이를 수정해야합니까?

대단히 감사합니다.

해결법

  1. ==============================

    1.

    First try to 
    ping hadoop,
    ping hadoop1 and 
    ping hadoop2.
    Ex: ping hadoop 
    Then just try to connect via ssh
    The syntax is 
    ssh username@hadoop
    ssh username@hadoop1
    ssh username@hadoop2
    Then see the results to find out whether the systems are connecting or not.
    
  2. from https://stackoverflow.com/questions/37907249/hdfs-dfs-ls-not-working-after-multiple-nodes-configured by cc-by-sa and MIT license