I'm trying to install Hadoop on ubuntu 11.10. I set the JAVA_HOME variable in the file conf/hadoop-env.sh to :

# export JAVA_HOME=/usr/lib/jvm/java-1.6.0-openjdk

and then I execute these commands (Standalone Operation):

$ mkdir input 
$ cp conf/*.xml input 
$ bin/hadoop jar hadoop-examples-*.jar grep input output 'dfs[a-z.]+' 
$ cat output/*

but I have the following errot when executing the third command

ERROR : JAVA_HOME is not set

Is the JAVA_HOME variable not set correctly?

link|improve this question

0% accept rate
1  
Is that # really there? If so, that means the line is a comment. – Dave Newton Jan 11 at 22:07
@DaveNewton post that as an answer so I can up vote it! – orangeoctopus Jan 11 at 23:06
feedback

1 Answer

Type :
echo $JAVA_HOME

in your terminal to be sure your JAVA_HOME is set. You can also type
java -version

to know what version of java you are actually using

By the way reading your description it seems your actually writting export JAVA_HOME=/usr/lib/jvm/java-1.6.0-openjdk in the file conf/hadoop-env.sh, you should write it in your terminal or in ~/.bashrc or ~/.profile then type source < path to modified file >

link|improve this answer
yes, the # is by default there so I delete it and I tried these 4 commands again and it works. but when I type "echo $JAVA_HOME" , I don't obtain it value and when I type "java -version" I obtain "java version "1.6.0_23" . Is it correct? OpenJDK Runtime Environment (IcedTea6 1.11pre) (6b23~pre11-0ubuntu1.11.10) OpenJDK Server VM (build 20.0-b11, mixed mode)" . Is it correct? – koukou Jan 12 at 2:06
If nothing appears writting echo $JAVA_HOME", means that the environnement variable is not properly set. Type sudo vi ~/.bashrc then add in the file : export JAVA_HOME=< java_path > export PATH=$PATH:< java_path >/bin. Then type sudo source ~/.bashrc – alain.janinm Jan 12 at 8:30
I'm following this tutorial hadoop.apache.org/common/docs/stable/… : the JAVA_HOME is defined only in the conf/hadoop-env.sh .I added export PATH=$PATH:< java_path >/bin in the hadoop-env.sh file,typing "echo $PATH " the path appears but typing "echo $ JAVA_HOME" a space appears!!! – koukou Jan 12 at 11:06
Ok I was wrong i foound this doc wiki.apache.org/hadoop/… Do all steps it must work! – alain.janinm Jan 12 at 11:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.