Skip to content

Nginx无法停止服务

运行 nginx -s stop时,nginx无法启动,查看 nginx-1.22.1/logs 文件夹下,没有 nginx.pid 这个文件。

原因是配这里注释掉了这一行:

shell
#pid        logs/nginx.pid;

取消注释,再次运行 nginx就会发现,在nginx-1.22.1/logs 下多了这么一个文件。

此时再次运行nginx -s stop,服务就可以停止了。

Released under the MIT License.