Estou usando o seguinte script para iniciar / parar o nginx:
#! /bin/sh
### BEGIN INIT INFO
# Provides: nginx
# Required-Start: $all
# Required-Stop: $all
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: starts the nginx web server
# Description: starts nginx using start-stop-daemon
### END INIT INFO
PATH=/opt/nginx/sbin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/opt/nginx/sbin/nginx
NAME=nginx
DESC=nginx
test -x $DAEMON || exit 0
# Include nginx defaults if available
if [ -f /etc/default/nginx ] ; then
. /etc/default/nginx
fi
set -e
case "$1" in
start)
echo -n "Starting $DESC: "
start-stop-daemon --start --quiet --pidfile /opt/nginx/logs/$NAME.pid \
--exec $DAEMON -- $DAEMON_OPTS
echo "$NAME."
;;
stop)
echo -n "Stopping $DESC: "
start-stop-daemon --stop --quiet --pidfile /opt/nginx/logs/$NAME.pid \
--exec $DAEMON
echo "$NAME."
;;
restart|force-reload)
echo -n "Restarting $DESC: "
start-stop-daemon --stop --quiet --pidfile \
/opt/nginx/logs/$NAME.pid --exec $DAEMON
sleep 1
start-stop-daemon --start --quiet --pidfile \
/opt/nginx/logs/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS
echo "$NAME."
;;
reload)
echo -n "Reloading $DESC configuration: "
start-stop-daemon --stop --signal HUP --quiet --pidfile /opt/nginx/logs/$NAME.pid \
--exec $DAEMON
echo "$NAME."
;;
*)
N=/etc/init.d/$NAME
echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
exit 1
;;
esac
exit 0
Depois de executar qualquer um:
/etc/init.d/nginx stop
ou
service nginx stop
Ele envia a mensagem para o console 'start / stoping nginx'. Mas se eu tentar e começar depois de parar, recebo os erros usuais não consigo ligar (), uma vez que ainda está em execução.
Quando eu corro:
ps -elf | grep nginx
Ainda vejo dois processos em execução:
1 S root 2113 1 0 80 0 - 9043 rt_sig 07:36 ? 00:00:00 nginx: master process /opt/nginx/sbin/nginx
5 S nobody 2114 2113 0 80 0 - 9172 ep_pol 07:36 ? 00:00:00 nginx: worker process
0 S root 5541 5280 0 80 0 - 1609 pipe_w 11:29 pts/1 00:00:00 grep --color=auto nginx
Como posso diagnosticar porque o serviço não está parando corretamente?
Atualizar
Na verdade, quando eu faço /etc/init.d/nginx stop
Eu vejo:
sudo: unable to resolve host myhostname