forked from pytonic/openzaly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.sh
69 lines (54 loc) · 1.71 KB
/
start.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
#!/bin/bash
PORT=$1
PORT2=$2
IS_RESTART=$3
if [ -z $IS_RESTART ];then
#### echo akaxin logo and desc
echo "
/ \
/ . \
\ . \
/ \ \ / _ _ __ _ __ __ ___ _ _
/ . \ | / / \ / \ | |/ / / \ \ \/ / |_ _| | \ | |
/ . _ \ / / . \ / _ \ | ' / / _ \ \ / | | | \| |
\ / / \ - . / / ___ \ | . \ / ___ \ / \ | | | |\ |
\ / / | \ / /_/ \_\ |_|\_\ /_/ \_\ /_/\_\ |___| |_| \_|
/ . \ \ /
\ . \
\ /
\ /
Akaxin is an open source and free proprietary IM software,you can build private openzaly-server for everyone in any server.
"
fi
##set tcp port
if [ -n $PORT ]; then
PORT=2021
fi
##set http port
if [ -n $PORT2 ]; then
PORT2=8280
fi
#### echo server is starting
echo "[OK] openzaly-server is starting [tcp-port:"$PORT" http-port:"$PORT2"]"
JAVA_JAR="openzaly-server"
PID=$(ps -ef|grep $JAVA_JAR|grep $PORT |head -1| awk '{printf $2}')
###if server is running, exit and echo error
if [ $PID > 0 ]; then
echo "[ERROR] openzaly-server is running [PID:"$PID"]"
echo "[ERROR] openzaly-server start failure"
echo ""
exit
fi
java -Dsite.port=$PORT -Dhttp.port=$PORT2 -jar openzaly-server.jar >>stdout.log 2>&1 &
PID=$(ps -ef|grep $JAVA_JAR|grep $PORT |head -1| awk '{printf $2}')
if [ $? -eq 0 ]; then
echo "[OK] openzaly-server tcp-port:"$PORT",http-port:$PORT2,PID:$PID"
echo "[OK] openzaly-server is started successfully [PID:"$PID"]"
else
echo "[ERROR] openzaly-server is started failed"
echo "exit..."
echo ""
exit
fi
echo ""
echo ""