1 Star 0 Fork 48

chen / openzaly

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
start.sh 2.23 KB
一键复制 编辑 原始数据 按行查看 历史
SAM2O2O 提交于 2018-05-10 19:24 . fix code loophole
#!/bin/bash
PORT=$1
PORT2=$2
IS_RESTART=$3
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
java-version : JDK 1.8+
maven-version : 3.0+
"
fi
##set tcp port
if [ -n $PORT ]; then
PORT=2021
fi
##set http port
if [ -n $PORT2 ]; then
PORT2=8080
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 ""
Java
1
https://gitee.com/ccle/openzaly.git
git@gitee.com:ccle/openzaly.git
ccle
openzaly
openzaly
master

搜索帮助