Created
January 6, 2016 11:16
-
-
Save michiel/ae627c4e93865eb1af94 to your computer and use it in GitHub Desktop.
Java service script
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 | |
SERVICE_NAME=ServiceName | |
PATH_TO_JAR=/srv/app/location/service-jar.jar | |
PID_PATH_NAME=/tmp/$SERVICE_NAME-pid | |
case $1 in | |
start) | |
echo "Starting $SERVICE_NAME ..." | |
if [ ! -f $PID_PATH_NAME ]; then | |
nohup java -jar $PATH_TO_JAR /tmp 2>> /dev/null >> /dev/null & | |
echo $! > $PID_PATH_NAME | |
echo "$SERVICE_NAME started ..." | |
else | |
echo "$SERVICE_NAME is already running ..." | |
fi | |
;; | |
stop) | |
if [ -f $PID_PATH_NAME ]; then | |
PID=$(cat $PID_PATH_NAME); | |
echo "$SERVICE_NAME stoping ..." | |
kill $PID; | |
echo "$SERVICE_NAME stopped ..." | |
rm $PID_PATH_NAME | |
else | |
echo "$SERVICE_NAME is not running ..." | |
fi | |
;; | |
restart) | |
if [ -f $PID_PATH_NAME ]; then | |
PID=$(cat $PID_PATH_NAME); | |
echo "$SERVICE_NAME stopping ..."; | |
kill $PID; | |
echo "$SERVICE_NAME stopped ..."; | |
rm $PID_PATH_NAME | |
echo "$SERVICE_NAME starting ..." | |
nohup java -jar $PATH_TO_JAR /tmp 2>> /dev/null >> /dev/null & | |
echo $! > $PID_PATH_NAME | |
echo "$SERVICE_NAME started ..." | |
else | |
echo "$SERVICE_NAME is not running ..." | |
fi | |
;; | |
esac | |
# sudo update-rc.d mytestserv defaults | |
# sudo update-rc.d mytestserv disable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment