CentOS 시스템 설정 Nginx 서비스 자동 시작

843 단어 nginx
#!/bin/sh
#chkconfig: 2345 10 90
#name: nginx
#description: Nginx Service Script
#
case $1 in
    start)
                echo  "Starting Nginx..."
        /usr/local/nginx/nginx  -c /usr/local/nginx/nginx.conf
        ;;
    stop)
        echo  "Stopping Nginx..."
        /usr/bin/killall  -s  QUIT  nginx
        ;;
    restart)
                echo  "Reloading Nginx..."
        $0  stop
        $0  start
         ;;
    *)
                echo  "Usage: $0 {start|stop|restart}"
esac
exit  0

자동 시작 설정
chkconfig --level 2345 nginx on
스 크 립 트 실행 후 효 과 는 다음 과 같 습 니 다.
root@lxhtest html$service nginx stopStopping Nginx...root@lxhtest html$service nginx startStarting Nginx...root@lxhtest html$service nginx restartReloading Nginx...Stopping Nginx...Starting Nginx...

좋은 웹페이지 즐겨찾기