nginx 서비스 설정

5489 단어 nginx
1) / etc / init. d / 디 렉 터 리 에 nginx 파일 만 들 기
cd /etc/init.d/
vim nginx

2) nginx 스 크 립 트 를 작성 합 니 다. 내용 은 다음 과 같 습 니 다.
#!/bin/bash
#
# chkconfig: - 85 15
# description: nginx is a World Wide Web server. It is used to serve
# Source Function Library
. /etc/init.d/functions

# Nginx Settings
NGINX_SBIN="/opt/nginx/sbin/nginx"
NGINX_CONF="/opt/nginx/conf/nginx.conf"
NGINX_PID="/opt/nginx/run/nginx.pid"

RETVAL=0
prog="Nginx"

start() {
        echo -n $"Starting $prog: "
        mkdir -p /dev/shm/nginx_temp
        daemon $NGINX_SBIN -c $NGINX_CONF
        RETVAL=$?
        echo
        return $RETVAL
}

stop() {
        echo -n $"Stopping $prog: "
        killproc -p $NGINX_PID $NGINX_SBIN -TERM
        rm -rf /dev/shm/nginx_temp
        RETVAL=$?
        echo
        return $RETVAL
}

reload(){
        echo -n $"Reloading $prog: "
        killproc -p $NGINX_PID $NGINX_SBIN -HUP
        RETVAL=$?
        echo
        return $RETVAL
}

restart(){
        stop
        start
}

configtest(){
    $NGINX_SBIN -c $NGINX_CONF -t
    return 0
}

case "$1" in
  start)
        start
        ;;
  stop)
        stop
        ;;
  reload)
        reload
        ;;
  restart)
        restart
        ;;
  configtest)
        configtest
        ;;
  *)
        echo $"Usage: $0 {start|stop|reload|restart|configtest}"
        RETVAL=1
esac

exit $RETVAL



3) nginx 에 권한 추가
chmod a+x /etc/init.d/nginx

4) nginx 를 가입 하여 시작 항목 인 Centos 시스템 을 열 고 자동 시작 설정 을 시작 합 니 다.
chkconfig --add nginx
chkconfig nginx on

Ubuntu 시스템 에서 자동 켜 기 설정:
update-rc.d nginx defaults

좋은 웹페이지 즐겨찾기