补充: Windows Servcie Wrapper的命令格式如下: # 安装服务 D:\NeatbeansSoft

时间:2021-11-19 01:38:01

1.下载最新版的 Windows Service Wrapper 措施

https://github.com/kohsuke/winsw/releases

2.可以改削它的名字,例如:myapp.exe 将重定名后的 myapp.exe 复制到 nginx 的安置目录

3. 在同一个nginx目录下创建一个Windows Service Wrapper的XML配置文件,名称必需与第一步重定名时使用的名称一致(好比我这里是 "myapp.xml")

myapp.xml的文件内容如下:

<configuration>

  <!-- ID of the service. It should be unique accross the Windows system-->
  <id>nginx</id>

<!-- Display name of the service -->
  <name>Nginx Service 1.12.2</name>

<!-- Service description -->
  <description>High Performance Nginx Service</description>

<executable>C:\nginx\nginx.exe</executable>

</configuration>

4,命令行下执行以下命令,以便将其安置成Windows处事。

D:\NeatbeansSofts\Redis-x64-3.2.100> myapp.exe install

至此,完工,确认一下:我的电脑 右键 -> 打点 -> 处事 -> 是否有了个 nginx 呢?启动起来,

在浏览器中 访谒 确认一下,,再 遏制处事,再访谒一下   确认一下。 

增补:
Windows Servcie Wrapper的命令格局如下:
 
# 安置处事

D:\NeatbeansSofts\Redis-x64-3.2.100> myapp.exe install

# 卸载处事

D:\NeatbeansSofts\Redis-x64-3.2.100> myapp.exe uninstall

# 启动处事

D:\NeatbeansSofts\Redis-x64-3.2.100> myapp.exe start

# 遏制处事

D:\NeatbeansSofts\Redis-x64-3.2.100> myapp.exe stop

windows下nginx以处事自启动

标签:

原文地点:https://www.cnblogs.com/wangfeixiong/p/8929130.html