linux 설정 nginx 자동 시작

1702 단어
스 크 립 트 파일
#! /bin/sh
# Startup script for the nginx Web Server
# chkconfig: - 85 15
# description: nginx is a World Wide Web server. It is used to serve
# HTML files and CGI.
# processname: nginx
# pidfile: /usr/local/nginx/logs/nginx.pid
# config: /usr/local/nginx/conf/nginx.conf
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

DESC="nginx daemon"
NAME=nginx
DAEMON=/usr/local/nginx/sbin/$NAME
CONFIGFILE=/usr/local/nginx/conf/$NAME.conf
PIDFILE=/usr/local/nginx/logs/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME

set -e
[ -x "$DAEMON" ] || exit 0

do_start() {
$DAEMON -c $CONFIGFILE || echo -n "nginx already running"
}

do_stop() {
kill -INT `cat $PIDFILE` || echo -n "nginx not running"
}

do_reload() {
kill -HUP `cat $PIDFILE` || echo -n "nginx can't reload"
}

case "$1" in
start)
echo -n "Starting $DESC: $NAME"
do_start
echo "."
;;
stop)
echo -n "Stopping $DESC: $NAME"
do_stop
echo "."
;;
reload|graceful)
echo -n "Reloading $DESC configuration..."
do_reload
echo "."
;;
restart)
echo -n "Restarting $DESC: $NAME"
do_stop
do_start
echo "."
;;
*)
echo "Usage: $SCRIPTNAME {start|stop|reload|restart}" >&2
exit 3
;;
esac

exit 0

스 크 립 트 의 몇 개의 대문자 변 수 는 nginx 설치 경로 와 관련 이 있 습 니 다.스 크 립 트 파일 을 / etc / init. d / nginx 에 저장 합 니 다.
실행 권한 확보 chmod 755 / etc / init. d / nginx
서비스 추가
>chkconfig --add /etc/init.d/nginx
서비스 명령 을 직접 실행 할 수 있 습 니 다.
>service nginx start 시작
>service nginx stop 정지
>service nginx 재 시작 재 부팅
자동 시작 설정
->chkconfig --level 3 nginx on

좋은 웹페이지 즐겨찾기