在使用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
说明Linux找不到你在window存放JDK、JRE的位置,这时你需要找到你安装在window下的这两个文件的路径,也就是说配置一下JAVA的环境变量。
两种情况:window路径和Linux路径
window解决办法:在setclasspath.bat的开头声明环境变量,打开tomcat的bin目录下面的setclasspath.sh,添加加粗部分,路径修改为自己机器jdk和jre路径即可。
。。。。
#See the License for the specific language governing permissions and
#limitations under the License.
#-----------------------------------------------------------------------------
#Set CLASSPATH and Java options
#$Id: setclasspath.sh 795037 2009-07-17 10:52:16Z markt $
#-----------------------------------------------------------------------------
export JAVA_HOME=/opt/zimbra/jdk1.6.0_31
export JRE_HOME=/opt/zimbra/jdk1.6.0_31/jre
#Make sure prerequisite environment variables are set
if [ -z “JAVAHOME"−a−z"JAVA_HOME" -a -z "JAVAHOME"−a−z"JRE_HOME” ]; then
。。。

在Linux中安装JDK时找不到路径:
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
说明Linux找不到你在window存放JDK、JRE的位置,这时你需要找到你安装在linux下的这两个文件的路径,也就是说配置一下JAVA的环境变量。
window解决办法:在bash_profile的中间声明环境变量,输入 vi ~/.bash_profile,添加如图部分,路径修改为自己机器jdk和jre路径即可。
(也就是改三个export)
然后进到安装目录下面的bin目录开启tomcat服务:./startup.sh start
结果如图,我的是安装在root目录下的,注意路径一样


当在Linux上启动Tomcat时遇到'Neither the JAVA_HOME nor the JRE_HOME environment variable is defined'错误,需要设置JAVA_HOME和JRE_HOME环境变量。可以编辑setclasspath.sh或.bash_profile文件,添加对应的JDK和JRE路径,确保Tomcat能找到Java运行环境。

6634

被折叠的 条评论
为什么被折叠?



