WinSW.exe 是一个可以将Windows上的任何一个程序注册为服务的工具,也可以进行卸载该服务。
下载 nginx 放到 C:\bsq\nginx-1.22.1
下载 WinSW.exe 重命名为 nginxService.exe,放到 C:\bsq\nginx-1.22.1文件夹
新建 nginxService.xml 配置文件,内容如下:
<service>
<id>NginxService</id>
<name>NginxService</name>
<description>Nginx启动服务</description>
<executable>nginx.exe</executable>
<startmode>Automatic</startmode>
<logpath>logs\log</logpath>
<logmode>none</logmode>
</service>
//安装服务
cmd 进入 C:\bsq\nginx-1.22.1文件夹下运行:nginxService.exe install
//启动服务
net start NginxService
//删除服务
sc delete NginxService
标签:exe,服务,Windows,bsq,nginx,部署,nginxService,NginxService From: https://blog.csdn.net/shmp54/article/details/136750964