把ngnix註冊爲linux服務 將Nginx設置爲linux下的服務 並設置nginx開機啓動

1、建立服務腳本

vim /etc/init.d/nginx

腳本內容以下nginx

#! /bin/sh
# chkconfig: - 85 15vim

PATH=/usr/local/nginx/sbin/測試

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/$NAMErest

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

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

do_stop() {
$DAEMON -s stop || echo -n "nginx not running"
}it

do_reload() {
$DAEMON -s reload || echo -n "nginx can't reload"
}io

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
;;
esacclass

exit 0service

 

2、添加服務

chkconfig --add nginx

 

3、測試

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

 

問題解決! 

 

====================我是華麗的分割線==========================

 

若是執行不成功, 能夠給腳本添加執行權限

 

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

 

還能夠添加開機自啓動

chkconfig nginx on
相關文章
相關標籤/搜索