To see if nodes in your Hadoop cluster connected and run, followings are the ways to see     JPS Command  Run jps  command in master node and slave nodes. In master node, the output of the jps  should be something like this     $ jps 1634 JobHistoryServer 692 NameNode 2471 Jps 1191 ResourceManager 841 DataNode 1023 SecondaryNameNode 1311 NodeManager   When you run jps  in slave, the output should be something like this     $ jps 528 Jps 292 NodeManager 170 DataNode    hdfs dfsadmin -report  This is a very nice tool to see the statistic of each nodes in your Hadoop cluster. When you run the command, you will get ouput something like     $ hdfs dfsadmin -report Configured Capacity: 82999410688 (77.30 GB) Present Capacity: 59326111744 (55.25 GB) DFS Remaining: 59325284352 (55.25 GB) DFS Used: 827392 (808 KB) DFS Used%: 0.00% Under replicated blocks: 0 Blocks with corrupt replicas: 0 Missing blocks: 0 Missing blocks (with replication factor 1): 0 Pending deletion blocks: 0 ...