Centos使用sh脚本启动jar

521 阅读1分钟

脚本

编辑好init.sh脚本内容


#!/bin/sh
 
# 应用名字(demo-service)自定义修改
APP_NAME=data-batch
# jar包路径 根据实际位置修改
JAR_PATH='/data/data_batch'
# jar名称 根据实际名称修改
JAR_NAME=big_data_batch-1.0-SNAPSHOT.jar
# 日志路径 根据实际位置修改
LOG_PATH='/opt/project/log'
# PID  代表是PID文件
PID=$JAR_NAME\.pid
 
 
# 使用说明,用来提示输入参数
usage() {
    echo "Usage: sh 执行脚本.sh [start|stop|restart|status]"
    exit 1
}
 
# 检查程序是否在运行
is_exist(){
  pid=`ps -ef|grep $JAR_NAME|grep -v grep|awk '{print $2}' `
  # 如果不存在返回1,存在返回0    
  if [ -z "${pid}" ]; then
   return 1
  else
    return 0
  fi
}
 
# 启动方法
start(){
  is_exist
  if [ $? -eq "0" ]; then
    echo ">>> $APP_NAME is already running PID=${pid} <<<"
  else
    nohup java  -jar $JAR_PATH/$JAR_NAME > /dev/null 2>&1 &
    echo $! > $PID
    echo ">>> start $APP_NAME successed PID=$! <<<"
   fi
  }
 
# 停止方法
stop(){
  #is_exist
  pidf=$(cat $PID)
  #echo "$pidf" 
  echo ">>> PID = $pidf begin kill $pidf <<<"
  kill $pidf
  rm -rf $PID
  sleep 2
  is_exist
  if [ $? -eq "0" ]; then
    echo ">>> PID = $pid begin kill -9 $pid  <<<"
    kill -9  $pid
    sleep 2
    echo ">>> $APP_NAME process stopped <<<" 
  else
    echo ">>> $APP_NAME is not running <<<"
  fi 
}
 
# 输出运行状态
status(){
  is_exist
  if [ $? -eq "0" ]; then
    echo ">>> $APP_NAME is running PID is ${pid} <<<"
  else
    echo ">>> $APP_NAME is not running <<<"
  fi
}
 
# 重启
restart(){
  stop
  start
}
 
#根据输入参数,选择执行对应方法,不输入则执行使用说明
case "$1" in
  "start")
    start
    ;;
  "stop")
    stop
    ;;
  "status")
    status
    ;;
  "restart")
    restart
    ;;
  *)
    usage
    ;;
esac
exit 0

赋予文件可执行权限


chmod +x init.sh

命令启动


# 启动
sh init.sh start

# 停止
sh init.sh stop

# 运行状态
sh init.sh status

# 重启
sh init.sh restart


注意

如果出现以下错误信息


init.sh: line 1: $'\r': command not found
init.sh: line 3: $'\r': command not found
init.sh: line 14: $'\r': command not found
init.sh: line 15: $'\r': command not found

使用 sed -i 's/\r//' init.sh 命令去除无用空格和换行符