java程序啓動、中止、重啓腳本

 

1、啓動腳本start.shhtml

 

#!/bin/shisExist=`ps -ef | grep MonitorAndImprove | grep -v grep | awk '{print $2}'`if [ ! -z "$isExist" ]; then
    echo "process already running!!! pid is "$isExist
    exit -1fiPRGDIR=`dirname "$0"`
BASEDIR=`cd "$PRGDIR" ; pwd`
CLASSPATH=$BASEDIR/config:$BASEDIR/lib/*nohup java -Xmx2g -Xms2g -classpath "$CLASSPATH" \
     com.tencent.apd.MonitorAndImprove \
> log/out.log 2>& 1 &
echo $! > progressId.pid

 

2、中止腳本stop.shjava

#!/bin/shif [ -f "progressId.pid" ] ; then
    kill -9 `cat progressId.pid`    rm progressId.pidfiisExist=`ps -ef | grep MonitorAndImprove | grep -v grep | awk '{print $2}'`if [ ! -z "$isExist" ]; then
    kill -9 $isExistfi

 


3、重啓腳本restart.shide

#!/bin/shsh stop.shsh start.sh

 


 
————————————————
版權聲明:本文爲CSDN博主「cxy1991xm」的原創文章,遵循CC 4.0 BY-SA版權協議,轉載請附上原文出處連接及本聲明。
原文連接:https://blog.csdn.net/cxy1991xm/article/details/90447631spa

相關文章
相關標籤/搜索