Nginx 켜 기 자동 시작 설정 (centos 6.8 에서 직접 측정 가능)

3215 단어 Linux
vim /etc/init.d/nginx
붙이다
#!/bin/bash # nginx Startup script for the Nginx HTTP Server # it is v.0.0.2 version. # chkconfig: - 85 15 # description: Nginx is a high-performance web and proxy server. #              It has a lot of features, but it's not for everyone. # processname: nginx # pidfile: /var/run/nginx.pid # config: /usr/local/nginx/conf/nginx.conf
nginxd=/usr/local/nginx/sbin/nginx nginx_config=/usr/local/nginx/conf/nginx.conf nginx_pid=/var/run/nginx.pid RETVAL=0 prog="nginx" # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ ${NETWORKING} = "no" ] && exit 0 [ -x $nginxd ] || exit 0 # Start nginx daemons functions.
start() {
if [ -e $nginx_pid ];then
   echo "nginx already running...."
   exit 1
fi
   echo -n $"Starting $prog: "
   daemon $nginxd -c ${nginx_config}
   RETVAL=$?
   echo
   [ $RETVAL = 0 ] && touch /var/lock/subsys/nginx
   return $RETVAL
}
# Stop nginx daemons functions.
stop() {
        echo -n $"Stopping $prog: "
        killproc $nginxd
        RETVAL=$?
        echo
        [ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /var/run/nginx.pid
}
# reload nginx service functions.
reload() {
    echo -n $"Reloading $prog: "
    #kill -HUP `cat ${nginx_pid}`
    killproc $nginxd -HUP
    RETVAL=$?
    echo
}
# See how we were called.
case "$1" in
start)
        start
        ;;
stop)
        stop
        ;;
reload)
        reload
        ;;
restart)
        stop
        start
        ;;
status)
        status $prog
        RETVAL=$?
        ;;
*)
        echo $"Usage: $prog {start|stop|restart|reload|status|help}"
        exit 1
esac
exit $RETVAL
 
--------------------------------------------------------------------------------------------------------------------------------------------------
설명: nginxd = / usr / local / nginx / sbin / nginx (자신의 nginx 설치 디 렉 터 리 로 변경) nginxconfig = / usr / local / nginx / conf / nginx. conf (자신의 nginx 프로필 디 렉 터 리 로 변경)
저장 후 실행: chmod a + x / etc / init. d / nginx   (a + x 매개 변수 표시 = = > all user can execute 모든 사용자 실행 가능)
마지막 으로 ngix 를 rc. local 파일 에 추가 합 니 다. 이렇게 켜 면 ngix 가 기본적으로 시 작 됩 니 다.
vim /etc/rc.local
  
/etc/init.d/nginx start 

저장 하고 종료 하면 다음 재 부팅 이 적 용 됩 니 다. nginx 의 자동 시작 을 실현 합 니 다.
다시 시작 한 후에 효력 이 발생 하지 않 았 습 니 다. rc. local 파일 이 실행 되 지 않 았 기 때 문 입 니 다. rc. local 권한 을 수정 하 겠 습 니 다.
chmod +x /etc/rc.d/rc.local
이렇게 하면 돼 요.
________________________
[거짓 을 버 리 고 진실 을 간직 하 라] 이 방법 을 추천 해 주 셨 어 요.https://blog.csdn.net/buyueliuying/article/details/75353863 그리고https://www.cnblogs.com/whatmiss/p/7091220.html 그 중의 첫 번 째 방법 은 저 는 centos 6.8 테스트 를 통 해 시스템 을 무 너 뜨 릴 것 입 니 다. 설정 이 끝 난 후에 시스템 을 다시 시작 하면 시작 페이지 에 계속 걸 려 죽 을 것 입 니 다. 지금도 풀 리 지 않 고 두 대의 가상 컴퓨터 를 망 가 뜨 렸 습 니 다.

좋은 웹페이지 즐겨찾기