Neither the JAVA_HOME nor the JRE_HOME environment variable is defined

Error:  Neither the JAVA_HOME nor the JRE_HOME environment variable is defined
Solution :
If JAVA_HOME and JRE_HOME path is not defined on the server then it shows above error. You must set the paths on the server for JAVA_HOME and JRE_HOME. Below commands will help you to set the paths for JAVA_HOME and JRE_HOME respectively.
JAVA_HOME

Quote:
[root@server /] export JAVA_HOME=/usr/local/java

JRE_HOME

Quote:
[root@server /] export JRE_HOME=/usr/local/jdk

Start/Stop tomcat on the server.

Leave a Comment