Nginx系列(三.nginx注册为linux系统服务)

原创
2016-08-08 09:24:56 926浏览

一、创建服务脚本

vim /etc/init.d/nginx

脚本内容如下

#! /bin/sh# chkconfig: - 85 15PATH=/web/server/nginx/sbin

DESC="nginx daemon"
NAME=nginx
DAEMON=/web/server/nginx/sbin/$NAME
CONFIGFILE=/web/server/nginx/conf/$NAME.conf
PIDFILE=/web/server/nginx/logs/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAMEset-e
[ -x "$DAEMON" ] || exit0do_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}" >&2exit3
;;
esacexit0

二、添加服务

chkconfig--addnginx

三、测试

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

以上就介绍了Nginx系列(三.nginx注册为linux系统服务),包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。