What are simple commands to check if Hadoop daemons are running?
For example if I\'m trying to figure out why HDFS is not setup correctly I\'ll want to know a way to ch
Try running this:
for service in /etc/init.d/hadoop-hdfs-*; do $service status; done;