Tomcat Neither the JAVA_HOME nor the JRE_HOME environment variable is defined
Posted IT小不点
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tomcat Neither the JAVA_HOME nor the JRE_HOME environment variable is defined相关的知识,希望对你有一定的参考价值。
一眼就能看出来是jdk的环境有问题,但是用了这么久的jdk一直都配置的好好的,怎么一到Tomcat上就这么矫情了。
最后查解决方案,原来是我的jdk从官网直接下载的,虽然我修改了java_home,但不太智能的tomcat仍然没有自动识别出java_home路径。
linux解决方法:
编辑文件 /usr/local/tomcat/bin/catalina.sh (根据你自己的jdk路径进行修改) 在文件的正文开头,即正式代码前,大概在99行添加如下代码
1 |
export JAVA_HOME= /usr/local/jdk |
2 |
export JRE_HOME= /usr/local/jdk/jre |
修改后大概是下面的样子
01 |
# $Id: catalina.sh 1202062 2011-11-15 06:50:02Z mturk $ |
02 |
# ----------------------------------------------------------------------------- |
03 |
04 |
export JAVA_HOME= /usr/local/jdk |
05 |
export JRE_HOME= /usr/local/jdk/jre |
06 |
07 |
# OS specific support. $var _must_ be set to either true or false. |
08 |
cygwin= false |
09 |
darwin= false |
10 |
os400= false |
11 |
case "`uname`" in |
12 |
CYGWIN*) cygwin= true ;; |
13 |
Darwin*) darwin= true ;; |
14 |
OS400*) os400= true ;; |
15 |
esac ..................... |
注意:Windows下请修改对应的 catalina.bat
http://blog.csdn.net/zhangpengyu321/article/details/12144497
配置tomcat参考:
http://blog.csdn.net/ithomer/article/details/7827045
以上是关于Tomcat Neither the JAVA_HOME nor the JRE_HOME environment variable is defined的主要内容,如果未能解决你的问题,请参考以下文章
[转]Tomcat----Neither the JAVA_HOME nor the JRE_HOME environment variable is defined
添加tomcat开机启动服务时报错:Neither the JAVA_HOME nor the JRE_HOME enviromment variable is defined
启动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 definedAt lea
在Linux虚拟机下安装tomcat:Neither the JAVA_HOME nor the JRE_HOME environment variable is definedAt lea(示例代码
Tomcat解决配置了环境变量还是会Neither the JAVA_HOME nor the JRE_HOME environment...的问题和启动后乱码问题