Appearance
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
,服务就可以停止了。