nginx服务window开机自启动

1、工具下载

下载Windows Service Wrapper 工具

项目地址: https://github.com/kohsuke/winsw
下载地址:  http://repo.jenkins-ci.org/releases/com/sun/winsw/winsw/2.1.2/winsw-2.1.2-bin.exe
2、配置文件

1、下载该工具后,将其放在 Nginx安装目录下,并重命名为nginx-service.exe。
2、创建配置文件nginx-service.xml(名字要和工具名一样)。
3、创建nginx-service.exe.config(为支持NET 4.0 runtime,默认只支持NET 2.0 runtime)

2.1 nginx-service.xml 内容
<service>
  <id>nginxid>   
  <name>Nginx Servicename>   
  <description>High Performance Nginx Servicedescription>   
  <logpath>D:\nginx-1.20.2\logslogpath>   
  <log mode="roll-by-size">
    <sizeThreshold>10240sizeThreshold>    
    <keepFiles>8keepFiles>  
  log>  
  <executable>D:\nginx-1.9.3\nginx.exeexecutable>  
  <startarguments>-p D:\nginx-1.20.2\nginxstartarguments>  
  <stopexecutable>D:\nginx-1.20.2\nginx.exestopexecutable>
  <stoparguments>-p D:\nginx-1.20.2\nginx -s stopstoparguments>
service>
2.2 nginx-service.exe.config 内容
<configuration>
   <startup>
     <supportedRuntime version="v2.0.50727" />    
     <supportedRuntime version="v4.0" />  
  startup>
  <runtime>
     <generatePublisherEvidence enabled="false"/>   
  runtime>
configuration>
3、 安装服务

在cmd中运行如下命令安装windows服务

nginx-service.exe install  #安装Windows服务
nginx-service.exe uninstall  #卸载Windows服务
 
nginx-service.exe start  #启动Windows服务
nginx-service.exe stop  #停止Windows服务

你可能感兴趣的:(#,Nginx,nginx,运维)