首页 > 代码库 > 解决Linux下启动Tomcat遇到Neither the JAVA_HOME nor the JRE_HOME environment variable is defined

解决Linux下启动Tomcat遇到Neither the JAVA_HOME nor the JRE_HOME environment variable is defined

找不到JAVA_HOME路径,需要做以下变更:

找到启动路径所在的目录:

vi /usr/local/apache-tomcat-7.0.55/bin/catalina.sh

加入以下信息:

export JAVA_HOME=/usr/local/jdk1.7.0_67
export JRE_HOME=/usr/local/jdk1.7.0_67/jre


本文出自 “IT·奋斗” 博客,请务必保留此出处http://qiangsh.blog.51cto.com/3510397/1897418

解决Linux下启动Tomcat遇到Neither the JAVA_HOME nor the JRE_HOME environment variable is defined