forked from pytonic/openzaly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstop.sh
More file actions
63 lines (49 loc) · 1.84 KB
/
stop.sh
File metadata and controls
63 lines (49 loc) · 1.84 KB
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
#!/bin/bash
PORT=$1
IS_RESTART=$2
JAVA_JAR="openzaly-server"
## IS_RESTART not exist ,echo info
if [ -z $IS_RESTART ]; then
#### echo akaxin logo and desc
echo "
/ \
/ \
/ * \
\ * \
/ \ \ * /
/ \ \ / / \ ___ __ ___ ___ ___ ___ __ .__ __.
/ * \ | / / \ / \ | |/ / / \ \ \ / / | | | \ | |
/ * _ \ / / * \ / ^ \ | ' / / ^ \ \ V / | | | \| |
\ * / / \ - * / / /_\ \ | < / /_\ \ > < | | | . |
\ / / | \ * / / _____ \ | . \ / _____ \ / . \ | | | |\ |
\ / / \ \ / /__/ \__\ |__|\__\ /__/ \__\ /__/ \__\ |__| |__| \__|
/ * \ \ /
\ * \
\ * /
\ /
\ /
Akaxin is an open source and free proprietary IM software,you can build private openzaly-server for everyone in any server.
openzaly-version : 0.5.4
"
fi
##set tcp port
if [ -n $PORT ]; then
PORT=2021
fi
echo "[OK] openzaly-server is closing [PORT:"$PORT"]"
PID=$(ps -ef|grep $JAVA_JAR|grep $PORT |head -1| awk '{printf $2}')
#if [ $? -eq 0 ]; then
if [ $PID ]; then
echo "[OK] openzaly-server is running on [PID:"$PID"]"
else
echo "[ERROR] openzaly-server stop failure, as it's not running."
echo ""
exit
fi
kill -9 ${PID}
if [ $? -eq 0 ];then
echo "[OK] openzaly-server is stoped [PORT:"$PORT" PID:"$PID"]"
else
echo "[ERROR] openzaly-server stop failure."
fi
echo ""