Created
June 20, 2016 00:47
-
-
Save yuchen/6584fa33001ce741ca0e82b5e25535f2 to your computer and use it in GitHub Desktop.
node.js init.d script for CentOS
This file contains hidden or 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/sh | |
| # | |
| # chkconfig: 35 99 99 | |
| # description: Node.js /home/nodejs/sample/app.js | |
| # | |
| . /etc/rc.d/init.d/functions | |
| USER="nodejs" | |
| DAEMON="/home/nodejs/.nvm/v0.4.10/bin/node" | |
| ROOT_DIR="/home/nodejs/sample" | |
| SERVER="$ROOT_DIR/app.js" | |
| LOG_FILE="$ROOT_DIR/app.js.log" | |
| LOCK_FILE="/var/lock/subsys/node-server" | |
| do_start() | |
| { | |
| if [ ! -f "$LOCK_FILE" ] ; then | |
| echo -n $"Starting $SERVER: " | |
| runuser -l "$USER" -c "$DAEMON $SERVER >> $LOG_FILE &" && echo_success || echo_failure | |
| RETVAL=$? | |
| echo | |
| [ $RETVAL -eq 0 ] && touch $LOCK_FILE | |
| else | |
| echo "$SERVER is locked." | |
| RETVAL=1 | |
| fi | |
| } | |
| do_stop() | |
| { | |
| echo -n $"Stopping $SERVER: " | |
| pid=`ps -aefw | grep "$DAEMON $SERVER" | grep -v " grep " | awk '{print $2}'` | |
| kill -9 $pid > /dev/null 2>&1 && echo_success || echo_failure | |
| RETVAL=$? | |
| echo | |
| [ $RETVAL -eq 0 ] && rm -f $LOCK_FILE | |
| } | |
| case "$1" in | |
| start) | |
| do_start | |
| ;; | |
| stop) | |
| do_stop | |
| ;; | |
| restart) | |
| do_stop | |
| do_start | |
| ;; | |
| *) | |
| echo "Usage: $0 {start|stop|restart}" | |
| RETVAL=1 | |
| esac | |
| exit $RETVAL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment