nginx注册服务-八零岁月
记录所见
分享所感

nginx注册服务

一、创建服务脚本

vim /etc/init.d/nginx

脚本内容如下

PATH=/usr/local/webserver/nginx/sbin
DESC="NginxService"
NAME=nginx
DAEMON=/usr/local/webserver/nginx/sbin/$NAME
CONFIGFILE=/usr/local/webserver/nginx/conf/$NAME.conf
PIDFILE=/usr/local/webserver/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() {
$DAEMON -s stop || echo -n "nginx not running"
}
do_reload() {
$DAEMON -s reload || 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

二、添加服务

chkconfig --add nginx

给脚本添加执行权限(a+x 所有用户可执行)

chmod a+x /etc/init.d/nginx

三、运行命令

service nginx start
service nginx stop
service nginx restart
service nginx reload

开机自启动

chkconfig nginx on

文章转载请说明出处:八零岁月 » nginx注册服务

分享到:更多 ()

吐槽集中营 抢沙发

评论前必须登录!