1 Star 0 Fork 111

homeleaf / wind-im

forked from WindChat / wind-im 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
stop.sh 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
SAM2O2O 提交于 2019-07-29 23:42 . add project
#!/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 "
/ \
/ . \
\ . \
/ \ \ / _ _ __ _ __ __ ___ _ _
/ . \ | / / \ / \ | |/ / / \ \ \/ / |_ _| | \ | |
/ . _ \ / / . \ / _ \ | ' / / _ \ \ / | | | \| |
\ / / \ - . / / ___ \ | . \ / ___ \ / \ | | | |\ |
\ / / | \ / /_/ \_\ |_|\_\ /_/ \_\ /_/\_\ |___| |_| \_|
/ . \ \ /
\ . \
\ /
\ /
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
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 ""
Java
1
https://gitee.com/homeleaf/wind-im.git
git@gitee.com:homeleaf/wind-im.git
homeleaf
wind-im
wind-im
master

搜索帮助