I am trying to stop the daemon processes in hadoop by ./stop-all.sh script but it gives following message:
no jobtracker to stop localhost: no tasktracker to stop no namenode to stop localhost: no datanode to stop localhost: no secondarynamenode to stop
I tried to see if the hadoop is running after this using jps and it showed:
27948 SecondaryNameNode 27714 NameNode 28136 TaskTracker 27816 DataNode 28022 JobTracker 8174 Jps
That is, it's running all daemons properly. I also checked hadoop dfs -ls / to just see if I am able to connect to hdfs. It's working.
I am running stop-all.sh script by supergroup user meaning, there is no issue with permissions.