您的位置:首页 > 运维架构 > Tomcat

修改tomcat启动和停止时间

2014-04-20 11:38 316 查看
当启动tomcat时候出现 Server
Tomcat v6.0 Server at localhost was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in the server editor. 的错误,那表示你的tomcat启动超时了,有时候你重新启动下就好了,但有时需要重新启动很多次,如果你不想这样的话,你只需修改下tomcat的启动
时间就行了,步骤如下:

修改 workspace\.metadata\.plugins\org.eclipse.wst.server.core\servers.xml文件。

<?xml version="1.0" encoding="UTF-8" standalone="no"?>

<servers>

<server auto-publish-setting="2" auto-publish-time="1" configuration-id="/Servers/Tomcat v7.0 Server at localhost-config" hostname="localhost" id="Tomcat v7.0 Server at localhost" name="Tomcat v7.0 Server at localhost" runtime-id="Apache Tomcat v7.0" server-type="org.eclipse.jst.server.tomcat.70"
server-type-id="org.eclipse.jst.server.tomcat.70" start-timeout="45" stop-timeout="15" testEnvironment="false" timestamp="19">

<list key="modules" value0="ShoppingMall::org.eclipse.jst.jee.server:ShopMall::jst.web::3.0"/>

</server>

</servers>

解决方案:

把 start-timeout="45" 改为 start-timeout="1000" 或者更长 重启eclipse就可以了。

同样的道理,也可以对tomcat的停止时间限制进行修改,方法就是把后面的stop-timeout="15"改为stop-timeout="60" 或者更长。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: