forked from langhsu/mblog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.sh
71 lines (63 loc) · 920 Bytes
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/bin/bash
APP_NAME=mblog-latest.jar
BASE_PATH=$(cd `dirname $0`; pwd)
echo 'cd $BASE_PATH'
usage() {
echo "case: sh run.sh [start|stop|restart|status]"
exit 1
}
is_exist(){
pid=`ps -ef|grep $APP_NAME|grep -v grep|awk '{print $2}' `
if [ -z "${pid}" ]; then
return 1
else
return 0
fi
}
start(){
is_exist
if [ $? -eq "0" ]; then
echo "${APP_NAME} running. pid=${pid}"
else
nohup java -jar ./target/$APP_NAME > log.file 2>log.error &
echo "${APP_NAME} started"
fi
}
stop(){
is_exist
if [ $? -eq "0" ]; then
kill -9 $pid
echo "${pid} stopped"
else
echo "${APP_NAME} not running"
fi
}
status(){
is_exist
if [ $? -eq "0" ]; then
echo "${APP_NAME} running. Pid is ${pid}"
else
echo "${APP_NAME} not running"
fi
}
restart(){
stop
start
}
case "$1" in
"start")
start
;;
"stop")
stop
;;
"status")
status
;;
"restart")
restart
;;
*)
usage
;;
esac