欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

重启或杀掉Nginx进程后丢失nginx.pid的解决办法

程序员文章站 2022-06-29 23:27:38
安装ssl证书时,强行杀掉了nginx的进程,就再也没起来: restarting nginx daemon: nginxcat: /usr/local/nginx/lo...

安装ssl证书时,强行杀掉了nginx的进程,就再也没起来:

restarting nginx daemon: nginxcat: /usr/local/nginx/logs/nginx.pid: no such file or directory
kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec … or kill -l [sigspec]
nginx not running.

原因分析:
nginx.pid丢掉了

如何找回:

复制代码 代码如下:

issued a nginx -s stop and after that i got this error when trying to reload it.
[error]: invalid pid number “” in “/var/run/nginx.pid”
that /var/run/nginx/pid file is empty atm.
what do i need to do to fix it?
nginx -s reload is only used to tell a running nginx process to reload its config. after a stop, you don't have a running nginx process to send a signal to. just run nginx (possibly with a -c /path/to/config/file)

运行命令:

复制代码 代码如下:

/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/vhost/jb51.net.conf

此时,nginx已可以正常启动了。