1. 下载windows service wrapper
- github上下载,地址https://github.com/kohsuke/winsw
- 百度网盘下载,地址百度网盘,密码是ewzm
2. 修改文件名
修改下载后的exe
文件和xml
文件名称,是什么名称并不重要,但是必须保证两个文件的名称一致
3. 修改配置文件
winsw的配置如下
<service>
<id>nginx</id>
<name>nginx</name>
<description>This service runs nginx continuous integration system.</description>
<executable>C:\Applications\nginx-1.15.7\nginx.exe</executable>
<arguments>-jar "%BASE%\optimize.api.jar"</arguments>
<logmode>rotate</logmode>
<logpath>C:\Applications\nginx-1.15.7\logs</logpath>
<startargument>-p C:\Applications\nginx-1.15.7</startargument>
<stopargument>-p C:\Applications\nginx-1.15.7 -s stop</stopargument>
</service>
4. 命令行使用说明
- 安装服务
winsw-1.9-bin.exe install
- 卸载服务
winsw-1.9-bin.exe uninstall
- 启动服务
winsw-1.9-bin.exe start
- 停止服务
winsw-1.9-bin.exe stop
原文地址:https://www.cnblogs.com/hwang126/p/10085800.html
时间: 2024-10-12 20:27:50