天天看點

upstart-20190417-Ubuntu 14.04 利用 upstart 守護 Nginx 程序IntroSolution

Intro

用 Ubuntu 的 upstart 守護 Nginx

Solution

# /etc/init/nginx.conf

description "nginx - small, powerful, scalable web/proxy server"

start on filesystem and static-network-up
stop on runlevel [016]

expect fork
respawn

pre-start script
        [ -x /usr/sbin/nginx ] || { stop; exit 0; }
        /usr/sbin/nginx -q -t -g 'daemon on; master_process on;' || { stop; exit 0; }
end script

exec /usr/sbin/nginx -g 'daemon on; master_process on;'

pre-stop exec /usr/sbin/nginx -s quit

           

重新整理配置使其生效即可

# 重新整理配置
initctl reload-configuration

# 加入 nginx
initctl start nginx