Created
October 11, 2013 04:33
-
-
Save naokij/6929645 to your computer and use it in GitHub Desktop.
nginx start script with chkconfig support
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# chkconfig: 2345 88 88 | |
# description: starts the nginx web server | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: starts the nginx web server | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment