Neither the JAVA_HOME nor the JRE_HOME environment variable is defined(Tomcat安装报错)

一、Tomcat报错

Neither the JAVA_HOME nor the JRE_HOME environment variable is defined(Tomcat安装报错)

二、问题原因

      因为启动tomcat会调用tomcat安装文件中的startup.bat,而它调用了catalina.bat则调用了setclasspath.bat。因此需要在setclasspath.bat的开头手动声明环境变量。

三、解决方案:

       用vim打开tomcat的bin目录下的setclasspath.sh,添加JAVA_HOME和JRE_HOME两个环境变量(下图红色方框内),两个环境变量路径为您安装的java JDK的路径。

windows下将export改为set即可。

Neither the JAVA_HOME nor the JRE_HOME environment variable is defined(Tomcat安装报错)

:wq保存并且退出即可。

再次使用service tomcat start没报错。

Neither the JAVA_HOME nor the JRE_HOME environment variable is defined(Tomcat安装报错)