Hadoop cluster setup - java.net.ConnectException: Connection refused

后端 未结 15 767
心在旅途
心在旅途 2020-11-29 02:31

I want to setup a hadoop-cluster in pseudo-distributed mode. I managed to perform all the setup-steps, including startuping a Namenode, Datanode, Jobtracker and a Tasktracke

15条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-29 03:04

    I was getting the same issue and found that OpenSSH service was not running and it was causing the issue. After starting the SSH service it worked.

    To check if SSH service is running or not:

    ssh localhost
    

    To start the service, if OpenSSH is already installed:

    sudo /etc/init.d/ssh start
    

提交回复
热议问题