代码拉取完成,页面将自动刷新
同步操作将从 WindChat/wind-im 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/bin/bash
PORT=$1
PORT2=$2
IS_RESTART=$3
##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] WindChat is starting [tcp-port:"$PORT" http-port:"$PORT2"]"
JAVA_JAR="windchat-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] WindChat is running [PID:"$PID"]"
echo "[ERROR] WindChat start failure"
echo ""
exit
fi
java -Dsite.port=$PORT -Dhttp.port=$PORT2 -jar $JAVA_JAR.jar >>stdout.log 2>&1 &
PID=$(ps -ef|grep $JAVA_JAR|grep $PORT |head -1| awk '{printf $2}')
if [ $? -eq 0 ]; then
echo "[OK] WindChat tcp-port:"$PORT",http-port:$PORT2,PID:$PID"
echo "[OK] WindChat is started successfully [PID:"$PID"]"
else
echo "[ERROR] WindChat is started failed"
echo "exit..."
echo ""
exit
fi
echo ""
echo ""
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。