Linux 启动进程结束进程通用代码

 

linux启动springboot项目 

 

start.sh

#!/bin/sh

rm -f tpid

nohup java -jar restDate-0.0.1-SNAPSHOT.jar --spring.profiles.active=dev > /dev/null 2>&1 &

echo $! > tpid

echo Start Success!

 

stop.sh

#!/bin/sh
APP_NAME=restDate-0.0.1-SNAPSHOT

tpid=`ps -ef|grep $APP_NAME|grep -v grep|grep -v kill|awk '{print $2}'`
if [ ${tpid} ]; then
    echo 'Stop Process...'
    kill -15 $tpid
fi
sleep 5
tpid=`ps -ef|grep $APP_NAME|grep -v grep|grep -v kill|awk '{print $2}'`
if [ ${tpid} ]; then
    echo 'Kill Process!'
    kill -9 $tpid
else
    echo 'Stop Success!'
fi

 

 

kill.sh

#!/bin/sh
APP_NAME=restDate-0.0.1-SNAPSHOT

tpid=`ps -ef|grep $APP_NAME|grep -v grep|grep -v kill|awk '{print $2}'`
if [ ${tpid} ]; then
    echo 'Kill Process!'
    kill -9 $tpid
fi

 

注意修改

APP_NAME

 

posted @ 2019-01-15 15:06  leechg  阅读(528)  评论(0编辑  收藏  举报