Created
October 19, 2019 17:48
-
-
Save bvpatel/c7be720fbf7ca42d8ce4ffba1ae933b6 to your computer and use it in GitHub Desktop.
Java daemon service for init.d
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=MyService | |
PATH_TO_JAR=/usr/local/MyProject/MyJar.jar | |
PID_PATH_NAME=/tmp/MyService-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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment