nginx开机自动启动脚本
把以下脚本保存为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
@ atm080203 嗯,总结的很到位。
这文章比较久了,大家当作脚本启动的参考吧。可以看新版本的开机启动方法,nginx开机启动配置 特别是centos7以后使用systemd启动了。
浪费人时间
下官方脚本不就好了
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/
nginx都写错,可信么
do_stop() {
if [ -f "$PIDFILE" ]; then
kill -INT
cat $PIDFILE
|| echo -n "nginx not running"fi
}
停止服务函数完善
stop不能用报错,
跪了,多谢评论里面的补充。
在/bin/sh下面加一行 # chkconfig: - 85 15
chkconfig --add ningx
这里有误。
应该是
chkconfig --add nginx
还是有执行这个命令有报错
nginx 服务不支持 chkconfig
貌似/etc/init.d/nginx这个脚本里还差点东西
文件少了头部的那些注释, 从其他的脚本里面copy一份粘贴上去, 改改就好了