I have connected two machines via Ethernet cable, 192.168.1.2(master) & 192.168.1.3(slave). I can ssh both and even ping command also works fine. Trouble is while running Hadoop & Nutch I have to ssh to the other machine, comes a part where ssh asks for password like this:
[email protected] password: [email protected] password
Wonder whose password should I be giving? master's? or slave's? or should it be:
master's passwd: slave passwd
?.
The machine you ssh from is typically called the client. The server you connect to is called the server.
You would use the (root) password you use to log into the server.
Note: In general you should try to avoid ssh as root, ssh in as a user and use sudo if at all possible.