情况
使用命令重启时报错
[root@localhost sbin]# ./nginx -s reload
nginx: [alert] kill(2536544, 1) failed (3: No such process)
解决方案
需要重新指定nginx.conf配置路径
[root@localhost sbin]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
重启
[root@localhost/]# nginx -s reload
成功解决~
评论区