I am running a hadoop using the apache-hadoop binary and i have started dfs, yarn and mr deamon using the following commands:
start-dfs.sh
start-yarn.sh
mr-jobhistory-daemon.sh start historyserver
After this everything is working fine, viz, i could see the HDFS UI, resource amanger UI, Job History UI etc.
Here is the jps command output:
sh-3.2# jps
61601 Jps
sh-3.2#
But, when i am checking which processes are running using the jps command, it is showing no processes running, no name node, no datanode, no resource manager, no secondarynamenode. Even though, i could comfortably copy files from and to local to HDFS, make directory on HDFS etc.
My question is why the jps command is not showing the processes which are actually running? Do we need to invoke jps with some other argument to check the processes?