搭建虚拟机Tomcat环境启动报错:Neither the JAVA_HOME nor the JRE_HOME environment variable is defined

linux启动tomcat报错:

搭建虚拟机Tomcat环境启动报错:Neither the JAVA_HOME nor the JRE_HOME environment variable is defined_第1张图片

问题分析:

启动tomcat的时候调用了tomcat安装文件中的startup.bat,vi查看startup.bat,发现里面调用了catalina.bat

[root@host bin]# vi startup.bat

搭建虚拟机Tomcat环境启动报错:Neither the JAVA_HOME nor the JRE_HOME environment variable is defined_第2张图片
再用vi查看catalina.bat,发现里面又调用了setclasspath.bat

[root@host bin]# vi catalina.bat

搭建虚拟机Tomcat环境启动报错:Neither the JAVA_HOME nor the JRE_HOME environment variable is defined_第3张图片
禁止套娃,在setclasspath.bat中添加JAVA_HOME和JRE_HOME两个环境变量(可以查看/etc/profile/中的配置路径)。保存退出,启动Tomcat成功

[root@host bin]# vi setclasspath.bat
//添加java环境变量
export JAVA_HOME=/usr/local/java/jdk1.8.0_251
export JRE_HOME=/usr/local/java/jdk1.8.0_251/jre
//:x保存退出
[root@host bin]# service tomcat start

搭建虚拟机Tomcat环境启动报错:Neither the JAVA_HOME nor the JRE_HOME environment variable is defined_第4张图片
搭建虚拟机Tomcat环境启动报错:Neither the JAVA_HOME nor the JRE_HOME environment variable is defined_第5张图片

你可能感兴趣的:(Java)