Windows下配置Nginx开机自启动
1.下载WinSW.NET4.exe,放在Nginx的安装目录下,并且将其重命名为nginx-service.exe
。
2.在Nginx安装目录下新建nginx-service.xml
文件,写入下面的配置信息,配置好了之后就可以通过WinSW将Nginx注册为Windows服务。
<!-- nginx-service.xml -->
<service>
<id>nginx</id>
<name>nginx</name>
<description>nginx</description>
<logpath>D:\nginx-1.18.0\</logpath>
<logmode>roll</logmode>
<depend></depend>
<executable>D:\nginx-1.18.0\nginx.exe</executable>
<stopexecutable>D:\nginx-1.18.0\nginx.exe -s stop</stopexecutable>
</service>
3.以上内容配置好了之后,在nginx安装目录下以管理员运行命令:.\nginx-service.exe install
就成功将其注册为Windows服务了,然后运行 .\nginx-service.exe start
启动服务。
这时我们可以在Windows任务管理器的服务中查看该是否成功启动。
注:nginx-service.exe install
命令可注册对应的系统服务nginx-service.exe uninstall
命令可删除对应的系统服务nginx-service.exe stop
命令可停止对应的系统服务nginx-service.exe start
命令可启动对应的系统服务
当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »