1 Star 0 Fork 4

121666751/luckpay-096

forked from xh/luckpay-096 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
run.sh 759 Bytes
一键复制 编辑 原始数据 按行查看 历史
xh 提交于 2016-08-20 03:45 . add files
#!/bin/sh
#
# Copyright (c) 2016 Lucky Byte, Inc.
#
runjar='luckpay_091-1.0.1-shaded.jar'
pid=`ps xa | grep $runjar | grep java | awk -F ' ' '{print $1}'`
if test "x$1" = "xstatus" -o "x$1" = "x--status" ; then
if test "x$pid" != "x" ; then
echo "POS 009.1 服务进程 $pid 正在运行 ..."
else
echo "POS 009.1 服务进程已停止."
fi
exit 0
fi
if test "x$pid" != "x" ; then
echo "POS 009.1 服务进程 $pid 正在运行,发送中断信号并等待 3 秒 ..."
kill $pid
sleep 3
fi
if test "x$1" = "xstop" -o "x$1" = "x--stop" ; then
exit 0
fi
RUNT_BASE=$PWD
nohup java -DRUNT.BASE=$RUNT_BASE -DRUNT.SECL=1 \
-Dlog4j.configurationFile=$RUNT_BASE/log4j2.xml \
-jar $RUNT_BASE/bin/$runjar &
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/x121666751/luckpay-096.git
git@gitee.com:x121666751/luckpay-096.git
x121666751
luckpay-096
luckpay-096
master

搜索帮助