/etc/rc.d/nginx

1038 단어 bashweb
nginx 를 컴 파일 할 때 service 를 기록 하 는 스 크 립 트
#!/bin/sh

nginx=/usr/local/nginx/sbin/nginx
conf=/usr/local/nginx/conf/nginx.conf

ngfunc () {
    case $1 in
        start)
            echo -n "Starting Nginx"
            $nginx -c $conf
            echo " done"
        ;;
    
        stop)
            echo -n "Stopping Nginx"
            killall -9 nginx
            echo " done"
        ;;
    
        test)
            $nginx -t -c $conf
        ;;
    
        reload)
            echo -n "Reloading Nginx"
            ps auxww | grep nginx | grep master | awk '{print $2}' | xargs kill -HUP
            echo " done"
        ;;
    
        restart)
            ngfunc stop && sleep 1 && ngfunc start
        ;;
    
        show)
            ps -aux|grep nginx | grep -v grep | grep -v 'rc.d'
        ;;
    
        *)
            echo -n "Usage: $0 {start|restart|reload|stop|test|show}"
        ;;
    esac
}

ngfunc $1

좋은 웹페이지 즐겨찾기