I have installed tomcat7
(using apt-get install
) and whenever I want to start tomcat7
it says :
* no JDK found - please set JAVA_HOME
I have set JAVA_HOME
in my bash.bashrc
and also in ~/.bashrc
and when I issue echo $JAVA_HOME
I clearly see that this variable is pointing to my jdk's root folder. Can someone help me with this please?
Thanks
You can try this:
Just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command below.
When the file opens, uncomment the line that sets the JAVA_HOME variable.
Save and restart tomcat7 server.
Tomcat will not actually use your JAVA_HOME environmente variable, but look in some predefined locations and in the JAVA_HOME variable set inside the startup script, as other answers point out. If you don't like messing with the tomcat startup script, you could create a symlink for your preferred java installation, which will be picked up by tomcat.
For example:
Open terminal
Copy the result. Then
Replace
#JAVA_HOME=/usr/lib/jvm/openjdk-6-jdk
with the output you copied from$JAVA_HOME
.Just add following line in /etc/default/tomcat7 at where JAVA_HOME variable is defined
then run command
Adding to the answer of Mitch (the accepted answer above), check your
/usr/lib/jvm/
directory. Usually, java is installed there itself.You might have oracle java installed or you might have a latest version of java installed. Just checkout the directories at
/usr/lib/jvm/
and add the one your java is in.For me, it was:
So, replace
with
did the job for me.