Google News
logo
Hadoop - Interview Questions
How can you restart NameNode and all the daemons in Hadoop?
The following commands will help you restart NameNode and all the daemons :
 
You can stop the NameNode with ./sbin /Hadoop-daemon.sh stop NameNode command and then start the NameNode using ./sbin/Hadoop-daemon.sh start NameNode command.

You can stop all the daemons with the ./sbin /stop-all.sh command and then start the daemons using the ./sbin/start-all.sh command.
Advertisement