Я хочу зупинити Nginx, але він не вдається.
$ sudo service nginx stop
Stopping nginx: [FAILED]
І nginx.conf
це визначає місце nginx.pid мають рядок.
# /etc/nginx/nginx.conf
pid /var/run/nginx.pid;
Але nginx.pid
в каталозі немає /var/run/
.
locate nginx.pid
показує цей вихід.
/var/run/nginx.pid
/var/run/nginx.pid.oldbin
Але після updatedb
пошуку немає відповідності. Я використовую nginx / 1.4.4 дюйма CentOS release 6.5 (Final)
.
Що мені робити, щоб зупинити демон nginx?
Редагувати 2014/01/07
Це вихід ps -ef | grep nginx
, схоже, демон nginx все ще працює.
ironsand 17065 16933 0 15:55 pts/0 00:00:00 grep --color nginx
root 19506 1 0 2013 ? 00:00:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
ironsand 19507 19506 0 2013 ? 00:00:25 nginx: worker process
І sudo service nginx restart
дає цю помилку. Я думаю, що nginx
не вдається запуститись, бо старий ще живий. І /var/log/nginx/error.log-2014017
містить також цю помилку.
Stopping nginx: [FAILED]
Starting nginx: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] still could not bind()
[FAILED]
ps
команди.
ps -ef | grep nginx
абоsudo netstat -tlnp | grep nginx
.