首页 > nginx > nginx开机自动启动脚本

nginx开机自动启动脚本

2012年9月20日 发表评论 阅读评论

把以下脚本保存为nginx文件放入/etc/init.d/nginx

然后可以通过
/etc/init.d/nginx start 命令启动nginx
/etc/init.d/nginx stop 命令停止nginx
/etc/init.d/nginx restart 命令重启nginx

开机自动启动nginx,

如果需要开机启动服务,保存好 /etc/init.d/nginx文件后,

执行以下命令:

chkconfig --add ningx

chkconfig --level nginx 2345 on

你也可以直接下载nginx启动停止脚本

---------------------分割线下是脚本内容,红色字体需要你修改-------------------------------------------
#! /bin/sh

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

DESC="nginx daemon"
NAME=nginx
DAEMON=/usr/local/nginx/sbin/$NAME
CONFIGFILE=/usr/local/nginx/conf/$NAME.conf
PIDFILE=/usr/local/nginx/logs/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME

set -e
[ -x "$DAEMON" ] || exit 0

do_start() {
$DAEMON -c $CONFIGFILE || echo -n "nginx already running"
}

do_stop() {
kill -INT cat $PIDFILE || echo -n "nginx not running"
}

do_reload() {
kill -HUP cat $PIDFILE || echo -n "nginx can't reload"
}

case "$1" in
start)
echo -n "Starting $DESC: $NAME"
do_start
echo "."
;;
stop)
echo -n "Stopping $DESC: $NAME"
do_stop
echo "."
;;
reload|graceful)
echo -n "Reloading $DESC configuration..."
do_reload
echo "."
;;
restart)
echo -n "Restarting $DESC: $NAME"
do_stop
do_start
echo "."
;;
*)
echo "Usage: $SCRIPTNAME {start|stop|reload|restart}" >&2
exit 3
;;
esac

exit 0

分类: nginx 标签: ,
  1. mood
    2020年9月21日21:14 | #1

    @ atm080203 嗯,总结的很到位。
    这文章比较久了,大家当作脚本启动的参考吧。可以看新版本的开机启动方法,nginx开机启动配置 特别是centos7以后使用systemd启动了。

  2. atm080203
    2020年8月13日08:54 | #2

    浪费人时间
    下官方脚本不就好了
    1.检查nginx 和 NGINX_CONF_FILE路径
    2.chmod a+x /etc/init.d/nginx
    3.chkconfig --add /etc/init.d/nginx
    4.service nginx start
    不嫌麻烦第二步做完直接/etc/init.d/nginx start
    https://www.nginx.com/resources/wiki/start/topics/examples/redhatnginxinit/

  3. andor
    2017年8月18日09:22 | #3

    nginx都写错,可信么

  4. suiyanxin
    2017年6月1日14:09 | #4

    do_stop() {
    if [ -f "$PIDFILE" ]; then
    kill -INT cat $PIDFILE || echo -n "nginx not running"
    fi
    }
    停止服务函数完善

  5. 2017年1月20日10:47 | #5

    stop不能用报错,

  6. 蒙太奇葩
    2015年5月5日11:47 | #6

    跪了,多谢评论里面的补充。

  7. cccc
    2013年7月22日16:43 | #7

    在/bin/sh下面加一行 # chkconfig: - 85 15

  8. 2013年7月3日09:45 | #8

    chkconfig --add ningx
    这里有误。
    应该是
    chkconfig --add nginx
    还是有执行这个命令有报错
    nginx 服务不支持 chkconfig
    貌似/etc/init.d/nginx这个脚本里还差点东西

    • 2015年3月15日23:09 | #9

      文件少了头部的那些注释, 从其他的脚本里面copy一份粘贴上去, 改改就好了

  1. 本文目前尚无任何 trackbacks 和 pingbacks.