nginx 무 작위 시작 스 크 립 트 설정 설명

1512 단어
첫 번 째 실행:
vi /etc/init.d/nginx
두 번 째 단 계 는 다음 과 같은 내용 을 추가 합 니 다.
#!/bin/bash
#
# chkconfig: 2345 21 79
# description: nginx is a World Wide Web server. It is used to serve
# /etc/init.d/nginxd
# chmod 755 nginxd
# cp nginxd /etc/init.d/
# ln -s /etc/init.d/nginxd /etc/rc.d/init.d/nginxd
# chkconfig --add nginxd
# chkconfig --level 2345 nginxd on 
# Nginx is a World Wide Web server.
 source /etc/profile
nginx=/usr/local/nginx/sbin/nginx
conf=/usr/local/nginx/conf/nginx.conf
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)
    echo -n "Restart Nginx"
    $0 stop
    sleep 1
    $0 start
    echo " done"
;;
show)
    ps -aux|grep nginx
;;
*)
echo -n "Usage: $0 {start|restart|reload|stop|test|show}"
;;
esac

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

nginx 설치 경로 및 파일 경 로 를 설정 하기 위해 자신의 상황 에 따라 설정 합 니 다.
세 번 째 단계 실행:
chmod 755 / etc / rc. d / init. d / nginx \ # 실행 가능 한 권한 설정
chkconfig nginx on    #부팅 설정
시스템 을 다시 시작 하고 검증 하면 OK 입 니 다.
따로 사용 할 수 있 습 니 다.
service nginx start
service nginx stop
명령 이 야.

좋은 웹페이지 즐겨찾기