Spring Boot project Jar package deployment shell script

 2 minutes to read
#!/bin/sh

WEB_APP_NAME=test
JAR_NAME=${WEB_APP_NAME}\.jar
PID=${WEB_APP_NAME}\.pid

#Usage instructions, used to prompt input parameters
usage() {
    echo "Usage: sh execute script.sh [start|stop|restart|status]"
    exit 1
}

#Check if the program is running
is_exist(){
  pid=`ps -ef|grep ${JAR_NAME}|grep -v grep|awk'{print $2}'`
  #If there is no return 1, if there is, return 0
  if [[ -z "${pid}" ]]; then
   return 1
  else
    return 0
  fi
}

#Startup method
start(){
  is_exist
  if [[ $? -eq "0" ]]; then
    echo ">>> ${JAR_NAME} is already running PID=${pid} <<<"
  else
    nohup java -jar ${JAR_NAME} >/dev/null 2>&1 &
    echo $!> ${PID}
    echo ">>> start ${JAR_NAME} successed PID=$! <<<"
   fi
  }

#Stop method
stop(){
  pid_file=$(cat ${PID})

  if [[ -z ${pid_file} ]]; then
    echo ">>> ${JAR_NAME} pid file is not exist <<<"
  else
      echo ">>> ${JAR_NAME} PID = ${pid_file} begin kill ${pid_file} <<<"
      kill ${pid_file}
      rm -rf ${PID}
      sleep 2
  fi
  is_exist
  if [[ $? -eq "0" ]]; then
    echo ">>> ${JAR_NAME} exist PID = ${pid} begin kill -9 ${pid} <<<"
    kill -9 ${pid}
    sleep 2
    echo ">>> ${JAR_NAME} process stopped <<<"
  else
    echo ">>> ${JAR_NAME} is not running <<<"
  fi
}

#Output running status
status(){
  is_exist
  if [[ $? -eq "0" ]]; then
    echo ">>> ${JAR_NAME} is running PID is ${pid} <<<"
  else
    echo ">>> ${JAR_NAME} is not running <<<"
  fi
}

#Restart
restart(){
  stop
  start
}

#According to the input parameters, choose to execute the corresponding method, if not input, execute the instructions
case "$1" in
  "start")
    start
    ;;
  "stop")
    stop
    ;;
  "status")
    status
    ;;
  "restart")
    restart
    ;;
  *)
    usage
    ;;
esac
exit 0

The results of executing sh tomcat.sh are as follows:

$ sh tomcat.sh
Usage: sh execute script.sh [start|stop|restart|status]