Nginx 의 CentOS 자동 시작 스 크 립 트

\ # nginx 를 서비스 로 설정 하고 자동 으로 시작 합 니 다.
\ # 설명: 저 자 는 CentOS 7.0 에서 만 테스트 를 했 고 신뢰성 과 안정성 테스트 를 하지 않 았 습 니 다!
cp /tmp/nginx /etc/rc.d/init.d/nginx
chmod +x /etc/rc.d/init.d/nginx
chkconfig --add nginx
chkconfig nginx on

/ tmp / nginx 파일 의 내용 은 다음 과 같 습 니 다.
#! /bin/sh
#chkconfig: 2345 50 90

DESC="nginx daemon"
NAME=nginx
INSTALLDIR=/opt/nginx
DAEMON=$INSTALLDIR/sbin/$NAME
CONFIGFILE=$INSTALLDIR/conf/$NAME.conf
PIDFILE=$INSTALLDIR/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

사용 명령 은 다음 과 같 습 니 다:
service nginx start
service nginx stop
service nginx reload
service nginx restart

좋은 웹페이지 즐겨찾기