1 Star 0 Fork 1.6K

jiaguo cheng / mblog

forked from mtons / mblog 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
run.sh 864 Bytes
一键复制 编辑 原始数据 按行查看 历史
mtons 提交于 2019-01-22 22:20 . 3.0版本开发
#!/bin/bash
APP_NAME=mblog-latest.jar
usage() {
echo "case: sh run.sh [start|stop|restart|status]"
exit 1
}
is_exist(){
pid=`ps -ef|grep $APP_NAME|grep -v grep|awk '{print $2}' `
if [ -z "${pid}" ]; then
return 1
else
return 0
fi
}
start(){
is_exist
if [ $? -eq "0" ]; then
echo "${APP_NAME} running. pid=${pid}"
else
nohup java -jar ./target/$APP_NAME > log.file 2>log.error &
echo "${APP_NAME} started"
fi
}
stop(){
is_exist
if [ $? -eq "0" ]; then
kill -9 $pid
echo "${pid} stopped"
else
echo "${APP_NAME} not running"
fi
}
status(){
is_exist
if [ $? -eq "0" ]; then
echo "${APP_NAME} running. Pid is ${pid}"
else
echo "${APP_NAME} not running"
fi
}
restart(){
stop
start
}
case "$1" in
"start")
start
;;
"stop")
stop
;;
"status")
status
;;
"restart")
restart
;;
*)
usage
;;
esac
Java
1
https://gitee.com/geekcheng_admin/mblog.git
git@gitee.com:geekcheng_admin/mblog.git
geekcheng_admin
mblog
mblog
master

搜索帮助