Reputation: 173
I am trying to install hadoop in my ubuntu 15.4 machine,and getting Hadoop command not found everytime. I have configured everything in hadoop/conf and my .bashrc entries are :
export HADOOP_HOME=/opt/hadoop
export PATH=$PATH:$HADOOP_HOME/bin
and when i tried echo $PATH
, the result is:
/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
It is pointing usr/local
. I have nothing to do with this location.
And echo $HADOOP_HOME
results nothing.
How to solve this ?
Upvotes: 0
Views: 90
Reputation: 191681
Either restart your computer or Source the bashrc
source ~/.bashrc
Then try again
Upvotes: 1