Tomcat5 windows服务不能启动的终极解决方法

合集下载
相关主题
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

本人多次碰到这个问题,在网上搜索很久,一直没有找到真正的解决方法。今天下午一次偶然的机会发现了问题所在,根据问题,提出以下解决方案。

问题所在:

现在很多人都在使用jdk的压缩版,使得tomcat服务不能正确设置java VM,导致tomcat服务不能正常配置和启动。如果你是安装版jdk也出现启动问题,请参照以下方法解决。

假设

jdk 安装目录为 d:\j2sdk

tomcat5 安装目录为 D:\Program Files\Apache Software Foundation\Tomcat 5.0

1. 配置环境变量:

JAVA_HOME = d:\j2sdk

CLASSPATH

= %JAVA_HOME%\bin;.;%JAVA_HOME%\lib;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME %\lib\tools.jar

CATALINA_HOME = D:\Program Files\Apache Software Foundation\Tomcat 5.0

2. 配置 Tomcat 服务

这里有两种情况,一是tomcat5为安装版,二是解压版,针对这两种情况分别解决。

(1)安装版 tomcat5

在安装时选择安装tomcat服务,如图

安装完成后,打开注册表regedit.exe, 找到

HKEY_LOCAL_MACHINE\SOFTWARE\Apache Software Foundation\Tomcat Service Manager\Tomcat5\Parameters,你可以看到里面有很多参数值,主要是修改Java 项的值为 d:\j2sdk\jre\bin\server\jvm.dll, 修改正确后,你就可以通过开始->程序->Apache Tomcat 5.0->start tomcat启动服务了。若没有若没有此项,可以依照以下方法设置参数。

(2)解压版 tomcat5

这时你要先配置服务所用的参数,启动命令是 tomcat5的bin目录下的tomcatw.exe(后面附上tomcatw.exe命令参数)。

如果不存在HKEY_LOCAL_MACHINE\SOFTWARE\Apache Software

Foundation\Tomcat Service Manager\Tomcat5\Parameters,请先创建,这一步是关键。

使用命令tomcatw.exe //ES//Tomcat5打开配置窗口,如下

设置参数如下:

Service栏

Description = Apache Tomcat 5.0 (这个可以随便写)

Image Path = d:\Program Files\Apache Software Foundation\Tomcat 5.0\bin\bootstrap.jar

Work Path = d:\Program Files\Apache Software Foundation\Tomcat 5.0

Auto Start 这个参数允许设置服务为自动启动

Java VM栏:

Auto 不要打勾

Java VM = D:\j2sdk\jre\bin\server\jvm.dll

Java Options = -Dcatalina.home="d:\Program Files\Apache Software Foundation\Tomcat 5.0"

-Djava.endorsed.dirs="d:\Program Files\Apache Software

Foundation\Tomcat 5.0\common\endorsed" -Xrs

Start Class = org/apache/catalina/startup/Bootstrap;main;start Stop Class = org/apache/catalina/startup/Bootstrap;main;stop Standard Streams:

只要设置两项

Output = d:\Program Files\Apache Software Foundation\Tomcat 5.0\logs\stdout.log

Error = d:\Program Files\Apache Software Foundation\Tomcat

5.0\logs\stderr.log

根据以上设置,接下来可以使用 tomcatw.exe //GT//Tomcat5 启动服务了。

若有问题可以给我留言或者加我QQ: 4034348

TOMCAT5在WINDOWS 下的一些命令行

Tomcatw monitor application

Tomcatw is a GUI application for monitoring and configuring Tomcat services.

The available command line options are:

//ES// Edit service configuration This is the default operation. It is called if the no option is provided but the executable is

renamed to servicenameW.exe

//MS// Monitor service Put the icon in the system try

Command line arguments

Each command line directive is in the form of //XX//ServiceName The available command line options are:

//TS// Run the service as console application This is the default operation. It is called if the no option is provided. The ServiceName is the name of the executable without exe sufix, meaning Tomcat5

//RS// Run the service Called only from ServiceManager

//SS// Stop the service

//US// Update service parameters

//IS// Install service

//DS// Delete service Stops the service if running

Command line parameters

Each command parameter is prefixed with --. If the command line is prefixed with ++ then it's value will be appended to the existing option. If the environment variable with the same name as command line parameter but prefixed with PR_ exists it will take precedence. For example:

相关文档
最新文档