Rana Arepalli
Rana Arepalli

Reputation: 9

jps command not found in ubuntu 16.04 while installing hadoop

rana@ubuntu:/usr/local/hadoop/hadoop-2.7.3/bin$ start-yarn.sh
starting yarn daemons
starting resourcemanager, logging to /usr/local/hadoop/hadoop-2.7.3/logs/yarn-rana-resourcemanager-ubuntu.out
localhost: starting nodemanager, logging to /usr/local/hadoop/hadoop-2.7.3/logs/yarn-rana-nodemanager-ubuntu.out
rana@ubuntu:/usr/local/hadoop/hadoop-2.7.3/bin$ jps
The program 'jps' can be found in the following packages:
 * openjdk-8-jdk-headless
 * openjdk-9-jdk-headless
Try: sudo apt install <selected package>
rana@ubuntu:/usr/local/hadoop/hadoop-2.7.3/bin$ sudo jps
sudo: jps: command not found

i was trying to install hadoop, at the end i got an error of jps command not found

anyone please help me with this thank you

Upvotes: 0

Views: 5109

Answers (2)

VARSHA
VARSHA

Reputation: 21

I had the same issue and I solved my issue by entering the following :-

sudo apt install openjdk-8-jdk-headless

Hope this one helps :)

Upvotes: 2

Soheil Pourbafrani
Soheil Pourbafrani

Reputation: 3427

You should add JAVA_HOME/bin address to your PATH at the environment file, I mean bashrc. So use the command nano ~/.bashrc open the environment file and add then line export PATH=$JAVA_HOME/bin:$PATH at the end of the file and save it by pressing control + x. After closing the file use command source ~/.bashrc to compile file and update to new setting. Now JPS command will works!

Upvotes: 0

Related Questions