学习日志-运维01,window服务器上nginx开机自启

1.下载winsw工具

首先下载winsw工具 http://repo.jenkins-ci.org/re...
将winsw工具移动到nginx的安装目录,并将winsw工具改名为 nginx-service.exe

2.添加配置文件

然后在安装目录下新建文件 nginx-service.xmlnginx-service.exe.config
我的nginx的安装目录为C:\develop\nginx-1.12.2

此时的目录结构如图所示

nginx-service.xml文件内容


  nginx
  nginx
  nginx
  
  C:/develop/nginx-1.12.2/nginx.exe
  -p C:/develop/nginx-1.12.2
  C:/develop/nginx-1.12.2/logs/
  roll

nginx-service.exe.config文件内容

   
         
             
           
       
         
            
     

注意相应的目录路径需要以实际路径为准, 下同

3.安装服务

以管理员打开cmd, 输入 C:\develop\nginx-1.12.2\nginx-service.exe install,没报错即为正常开启

4.查看服务

打开 运行(win+R),输入service.msc,然后找到nginx的项,即为成功开启服务,如图

你可能感兴趣的:(nginx,windows-server)