701 Star 3.3K Fork 1.6K

mtons / mblog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
run.sh 920 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
APP_NAME=mblog-latest.jar
BASE_PATH=$(cd `dirname $0`; pwd)
echo 'cd $BASE_PATH'
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/mtons/mblog.git
git@gitee.com:mtons/mblog.git
mtons
mblog
mblog
master

搜索帮助