forked from pytonic/openzaly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrestart.sh
More file actions
43 lines (36 loc) · 1.4 KB
/
restart.sh
File metadata and controls
43 lines (36 loc) · 1.4 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
#!/bin/bash
PORT=$1
PORT2=$2
#### 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
java-version : JDK 1.8+
maven-version : 3.0+
"
##set tcp port
if [ -n $PORT ]; then
PORT=2021
fi
##set http port
if [ -n $PORT2 ]; then
PORT2=8080
fi
sh stop.sh $PORT 1
sh start.sh $PORT $PORT2 1