关于tomcat点击startup.bat后闪退问题的解决办法

2025-05-26 0 69

问题:使用免安装的tomcat双击startup.bat后,启动窗口一闪而过,而且tomcat服务未启动。

原因:在启动tomcat是需要读取环境变量和配置信息,缺少了这些信息,就不能登记环境变量,导致了tomcat的闪退

解决办法:

1.在已解压的tomcat的bin文件夹下找到startup.bat,右击->编辑。在文件头加入下面两行:

?

1

2
SET JAVA_HOME=D:\\Java\\jdk1.6.0_10 (java jdk目录)

SET TOMCAT_HOME=E:\\tomcat-6.0.35 (解压后的tomcat文件目录)

2.同样的。在已解压的tomcat的bin文件夹下找到shutdown.bat,右击->编辑。在文件头加入下面两行:

?

1

2
SET JAVA_HOME=D:\\Java\\jdk1.6.0_10 (java jdk目录)

SET TOMCAT_HOME=E:\\tomcat-6.0.35 (解压后的tomcat文件目录)

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16
@echo off

SET JAVA_HOME=C:\\Program Files (x86)\\Java\\jdk1.7.0_11

SET TOMCAT_HOME=D:\\apache-tomcat-6.0.30

rem Licensed to the Apache Software Foundation (ASF) under one or more

rem contributor license agreements. See the NOTICE file distributed with

rem this work for additional information regarding copyright ownership.

rem The ASF licenses this file to You under the Apache License, Version 2.0

rem (the "License"); you may not use this file except in compliance with

rem the License. You may obtain a copy of the License at

rem

rem http://www.apache.org/licenses/LICENSE-2.0

rem

rem Unless required by applicable law or agreed to in writing, software

rem distributed under the License is distributed on an "AS IS" BASIS,

rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

rem See the License for the specific language governing permissions and

以上所述是小编给大家介绍的关于tomcat点击startup.bat闪退问题的解决办法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对快网idc网站的支持!

原文链接:http://blog.csdn.net/u013088059/article/details/54693005

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 关于tomcat点击startup.bat后闪退问题的解决办法 https://www.kuaiidc.com/54453.html

相关文章

发表评论
暂无评论