Created
August 8, 2012 11:09
-
-
Save lboynton/3294316 to your computer and use it in GitHub Desktop.
Graylog2 init script
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/sh | |
# | |
# graylog2-server: graylog2 message collector | |
# | |
# chkconfig: - 98 02 | |
# description: This daemon listens for syslog and GELF messages and stores them in mongodb | |
# | |
CMD=$1 | |
NOHUP=`which nohup` | |
JAVA_CMD=/usr/bin/java | |
GRAYLOG2_SERVER_HOME=/usr/local/graylog2-server | |
start() { | |
echo "Starting graylog2-server ..." | |
$NOHUP $JAVA_CMD -jar $GRAYLOG2_SERVER_HOME/graylog2-server.jar > /var/log/graylog2.log 2>&1 & | |
echo $1 > /tmp/graylog2.pid | |
} | |
stop() { | |
PID=`cat /tmp/graylog2.pid` | |
echo "Stopping graylog2-server ($PID) ..." | |
kill $PID | |
} | |
restart() { | |
echo "Restarting graylog2-server ..." | |
stop | |
start | |
} | |
case "$CMD" in | |
start) | |
start | |
;; | |
stop) | |
stop | |
;; | |
restart) | |
restart | |
;; | |
*) | |
echo "Usage $0 {start|stop|restart}" | |
RETVAL=1 | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment