I setup Hadoop on my local machine by following some instructions mentioned on a website.
After setting up Hadoop, I tried to run the following command:
user1@ubuntu:~$ /usr/local/hadoop/bin/start-all.sh
And this is the error I get
-su: /usr/local/hadoop/bin/start-all.sh: No such file or directory
My .bashrc file looks like as:
# Set Hadoop-related environment variables
export HADOOP_HOME=/usr/local/hadoop
# Set JAVA_HOME
export JAVA_HOME=/usr/lib/jvm/java-8-oracle
# Add Hadoop bin/ directory to PATH
export PATH=$PATH:$HADOOP_HOME/bin
Can anyone tell me What exactly I'm doing wrong?
Thanks in advance!