Common Hadoop Problems
Today we will learn some common problems, that a person faces while installing Hadoop. Here are few problems listed below. 1. Problem with ssh conguration. error: connection refused to port 22 2. Namenode node not reachable error: Retrying to connect 127.0.0.1 1. Problem with ssh configuration: In this case you may face many kind of errors, but most common one while installing hadoop is connection refused to port 22. Here you should check if machine on which you are trying to login, should have ssh server installed. If you are using Ubuntu/Lubuntu, you can install ssh server using following command. sudo apt-get install openssh-server On CentOs or Redhat you can install ssh server using yum package manager sudo yum install openssh-server after installing ssh server, make sure you have configured the keys properly and sha...