今天在Linux启动tomcat报错了
Neither the JAVA_HOME nor the JRE_HOME environment variable is defined
At least one of these environment variable is needed to run this program
原来是因为没有配置jdk的变量,只是把jdk放到了linux中
解决
第一步:右键打开tomcat目录下的bin文件中的setclaspath.sh
使用记事本打开
添加如下代码
export JAVA_HOME=/stefan/jdk1.7.0_72 //你自己jdk的路径 export JRE_HOME=/stefan/jdk1.7.0_72/jre //同上
启动成功
windows 10中把export 换成set
Linux 如何配置jdk环境变量
https://mp.csdn.net/mdeditor/96496491