记录一下系统上线过程中遇到的一些关于把Tomcat做成window自启动服务的方法;
1、使用service.bat
如果是采用将项目放在Tomcat文件夹下面的方式的话,可以在Tomcat文件夹下的bin\service.bat(比如说我的就是D:\develop\apache-tomcat-9.0.24-windows-x64\apache-tomcat-9.0.24\bin)
然后,打开你的cmd或者powershell或者terminal(有人在用terminal了吗),进入到这个路径(快捷的话可以用Shift+鼠标右键进入哦),如图
在控制台中输入高贵的 service.bat install name 是你想给你的Tomcat服务取的名字,我就直接叫Tomcat9了),如图
PS:如果想删掉的话就把install 换成 remove
PPS:这里还有一个问题,如果你只是直接注册成服务的话,关于Jvm的配置要在哪里修改呢?
答案1:service.bat
答案2:注册表
熟悉的名称,把自己要改的东西放进去即可
2、使用winsw
winsw是一个开源项目,github地址
1、现在比较多是使用spring-boot内置tomcat的方式来启动项目,我的做法是将winsw.exe以及配置配件,winsw.xml文件放在项目的启动脚本相同文件夹,然后编辑winsw.xml文件
<configuration>
<!-- 服务id -->
<id>jc_service</id>
<!-- 服务名称-->
<name>jc_service</name>
<!-- 服务描述-->
<description>jc_service</description>
<!-- 执行程序 -->
<executable>E:\issue\start.bat</executable> (项目的启动脚本)
<!-- 优先级 -->
<priority>Normal</priority>
<!--依赖 -->
<!-- <depend>zookeeper</depend> -->
<!-- 执行文件参数 -->
<!-- <argument></argument> -->
<stoptimeout>15 sec</stoptimeout>
<startmode>Automatic</startmode>
<waithint>15 sec</waithint>
<sleeptime>1 sec</sleeptime>
<stopparentprocessfirst>false</stopparentprocessfirst>
<!-- 日志模式-->
<log mode="rotate"></log>
</configuration>
确认无误后,然后打开cmd,执行
winsw install (服务注册)
winsw uninstall (删除)
jvm的配置,我是在启动脚本中制定相关参数的大小,启动服务其实也就是执行了一下启动脚本。如果有更好的方案,可以的话麻烦提出来相互学习学习 嘿嘿
本文由博客一文多发平台 OpenWrite 发布!
网友评论