centos 에서 nginx 시작 스 크 립 트 와 chkconfig 관리

4047 단어 nginxcentos
nginx 를 설치 한 후 다시 시작 하려 면 'kill - UP nginx 프로 세 스 번호' 가 필요 합 니 다. 다시 불 러 오기 가 불편 합 니 다.apache 처럼 스 크 립 트 를 통 해 직접 관리 할 수 있다 면 훨씬 편리 할 것 입 니 다.
nginx 공식 적 으로 생각 했 고 이 스 크 립 트, 주소 도 제공 했다.http://wiki.nginx.org/RedHatNginxInitScript。관리 스 크 립 트 를 여기에 기록 합 니 다:
#!/bin/sh
#
# nginx - this script starts and stops the nginx daemon
#
# chkconfig:   - 85 15
# description:  Nginx is an HTTP(S) server, HTTP(S) reverse \
#               proxy and IMAP/POP3 proxy server
# processname: nginx
# config:      /etc/nginx/nginx.conf
# config:      /etc/sysconfig/nginx
# pidfile:     /var/run/nginx.pid
  
# Source function library.
. /etc/rc.d/init.d/functions
  
# Source networking configuration.
. /etc/sysconfig/network
  
# Check that networking is up.
[ "$NETWORKING"= "no"] && exit0
  
nginx="/usr/sbin/nginx"
prog=$(basename$nginx)
  
NGINX_CONF_FILE="/etc/nginx/nginx.conf"
  
[ -f /etc/sysconfig/nginx] && . /etc/sysconfig/nginx
  
lockfile=/var/lock/subsys/nginx
  
make_dirs() {
   # make required directories
   user=`$nginx -V 2>&1 | grep"configure arguments:" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -`
   if[ -z "`grep $user /etc/passwd`"]; then
       useradd-M -s /bin/nologin$user
   fi
   options=`$nginx -V 2>&1 | grep'configure arguments:'`
   foropt in$options; do
       if[ `echo$opt | grep'.*-temp-path'` ]; then
           value=`echo$opt | cut-d "="-f 2`
           if[ ! -d "$value"]; then
               # echo "creating" $value
               mkdir-p $value && chown-R $user $value
           fi
       fi
   done
}
  
start() {
    [ -x $nginx ] || exit5
    [ -f $NGINX_CONF_FILE ] || exit6
    make_dirs
    echo-n $"Starting $prog: "
    daemon $nginx -c $NGINX_CONF_FILE
    retval=$?
    echo
    [ $retval -eq0 ] && touch$lockfile
    return$retval
}
  
stop() {
    echo-n $"Stopping $prog: "
    killproc $prog -QUIT
    retval=$?
    echo
    [ $retval -eq0 ] && rm-f $lockfile
    return$retval
}
  
restart() {
    configtest || return$?
    stop
    sleep1
    start
}
  
reload() {
    configtest || return$?
    echo-n $"Reloading $prog: "
    killproc $nginx -HUP
    RETVAL=$?
    echo
}
  
force_reload() {
    restart
}
  
configtest() {
  $nginx -t -c $NGINX_CONF_FILE
}
  
rh_status() {
    status $prog
}
  
rh_status_q() {
    rh_status >/dev/null2>&1
}
  
case"$1" in
    start)
        rh_status_q && exit0
        $1
        ;;
    stop)
        rh_status_q || exit0
        $1
        ;;
    restart|configtest)
        $1
        ;;
    reload)
        rh_status_q || exit7
        $1
        ;;
    force-reload)
        force_reload
        ;;
    status)
        rh_status
        ;;
    condrestart|try-restart)
        rh_status_q || exit0
            ;;
    *)
        echo$"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
        exit2
esac

위 스 크 립 트 를 / etc / init. d / nginx 파일 에 저장 하고 두 곳 을 수정 합 니 다.
nginx = "/ usr / sbin / nginx" 를 nginx 실행 프로그램의 경로 로 변경 합 니 다
NGINX_CONF_FILE = "/ etc / nginx / nginx. conf" 를 설정 파일 의 경로 로 변경 합 니 다
저장 하면 이 스 크 립 트 를 통 해 nginx 서 비 스 를 관리 할 수 있 습 니 다.
$ /etc/init.d/nginx start
$ /etc/init.d/nginx stop
$ /etc/init.d/nginx reload
...

chkconfig 로 관리 하기
위의 방법 은 스 크 립 트 로 nginx 서 비 스 를 관리 하 는 기능 을 완 성 했 지만 불편 합 니 다. 예 를 들 어 nginx 시동 을 설정 하 는 등 입 니 다.이 때 chkconfig 를 사용 하여 설정 할 수 있 습 니 다.
먼저 nginx 서 비 스 를 chkconfig 관리 목록 에 추가 합 니 다:
chkconfig --add /etc/init.d/nginx

이것 을 추가 하면 서비스 로 nginx 를 시작 하고 다시 시작 할 수 있 습 니 다.
$ service nginx start
$ service nginx stop
$ service nginx reload
...

터미널 모드 설정 켜 기 시작:
$ chkconfig --level 3 nginx on 

From: http://www.01happy.com/centos-nginx-shell-chkconfig/

좋은 웹페이지 즐겨찾기