一、下載最新版的 Windows Service Wrapper 程序,好比我下載的名稱是 "winsw-1.9-bin.exe",
而後,把它命名成你想要的名字(好比: "mynginx.exe",固然,你也能夠不更名)nginx
二、把下載的文件(winsw-1.9-bin.exe)複製到nginx目錄(D:\nginx-1.12.2)app
三、nginx目錄下建立一個同名的Windows Service Wrapper的XML配置文件(winsw-1.9-bin.xml)spa
文件內容以下:命令行
<service> <id>nginx</id> <name>Nginx Service</name> <description>High Performance Nginx Service</description> <logpath>D:\nginx-1.12.2\logs</logpath> <log mode="roll-by-size"> <sizeThreshold>10240</sizeThreshold> <keepFiles>8</keepFiles> </log> <executable>D:\nginx-1.12.2\nginx.exe</executable> <startarguments>-p D:\nginx-1.12.2</startarguments> <stopexecutable>D:\nginx-1.12.2\nginx.exe</stopexecutable> <stoparguments>-p D:\nginx-1.12.2\ -s stop</stoparguments> </service>
說明:code
<name>Nginx Service</name> #這是服務裏面名字
<description>High Performance Nginx Service</description> #這裏是對服務的描述
四、命令行執行安裝命令orm
Windows Servcie Wrapper的命令格式以下:xml
#安裝服務 CMD:\> winsw-1.9-bin.exe install #卸載服務 CMD:\> winsw-1.9-bin.exe uninstall #啓動服務 CMD:\> winsw-1.9-bin.exe start #中止服務 CMD:\> winsw-1.9-bin.exe stop
#附個當時安裝1.8版本時的圖片blog