Linux啓動,重啓,停止java服務shell腳本

代碼

腳本server.sh

#!/bin/bash
app='xxxxxx.jar'
args='-Xms2g -Xmx2g -Dspring.profiles.active=dev'
cmd=$1
pid=`ps -ef|grep java|grep $app|awk '{print $2}'`

startup(){
  nohup java -jar $args $app &
  tail -f nohup.out
}

if [ ! $cmd ]; then
  echo "Please specify args 'start|restart|stop'"
  exit
fi

if [ $cmd == 'start' ]; then
  if [ ! $pid ]; then
    startup
  else
    echo "$app is running! pid=$pid"
  fi
fi

if [ $cmd == 'restart' ]; then
  if [ $pid ]
    then
      echo "$pid will be killed after 3 seconds!"
      sleep 3
      kill -9 $pid
  fi
  startup
fi

if [ $cmd == 'stop' ]; then
  if [ $pid ]; then
    echo "$pid will be killed after 3 seconds!"
    sleep 3
    kill -9 $pid
  fi
  echo "$app is stopped"
fi

使用方式

  1. appargs改成對應項目的配置
  2. 然後執行chmod +x server.sh添加運行權限
  3. 執行./server.sh start或者./server.sh restart即可啓動項目
  4. 執行./server.sh stop停止項目運行
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章