ubuntu自定义脚本重启java的jar进程

Posted 好大的月亮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu自定义脚本重启java的jar进程相关的知识,希望对你有一定的参考价值。

重启jar包的脚本demo如下,可以自定义替换javaappName的位置

#!/bin/bash
# /usr/lib/jvm/adoptopenjdk-8-openj9-amd64/bin
#export JAVA_HOME=/home/ubuntu/jdk/bin
export JAVA_PROCESS_HOME=/usr/lib/jvm/adoptopenjdk-8-openj9-amd64/bin

APP_NAME=ms-search-service-1.0-SNAPSHOT
#使用说明,用来提示输入参数
usage() {
    echo "Usage: sh robotcenter.sh [start|stop|restart|status]"
    exit 1
}

#检查程序是否在运行
is_exist(){
  pid=`ps -ef|grep $APP_NAME|grep -v grep|awk '{print $2}'`
  #如果不存在返回1,存在返回0  
  # [ -z STRING ]  “STRING” 的长度为零则为真。     
  if [ -z "${pid}" ]; then
   return 1
  else
    return 0
  fi
}

#启动方法
start(){
  is_exist
  #shell脚本中$?是指上一次命令执行的成功或者失败的状态。如果成功就是0,失败为1.这里的is_exist方法直接返回了int型的0/1
  if [ $? -eq 0 ]; then
    echo "${APP_NAME} is already running. pid=${pid}"
  else
    nohup $JAVA_PROCESS_HOME/java -jar ${APP_NAME}.jar  >${APP_NAME}.out 2>&1 &
  fi
}

#停止方法
stop(){
  is_exist
  #shell脚本中$?是指上一次命令执行的成功或者失败的状态。如果成功就是0,失败为1.这里的is_exist方法直接返回了int型的0/1
  if [ $? -eq "0" ]; then
    kill -9 $pid
  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
  sleep 5
  start
}

#根据输入参数,选择执行对应方法,不输入则执行使用说明
case "$1" in
  "start")
    start
    ;;
  "stop")
    stop
    ;;
  "status")
    status
    ;;
  "restart")
    restart
    ;;
  *)
    usage
    ;;
esac

if [ -z "${pid}" ](if的相关用法)

  # [ -z STRING ]  “STRING” 的长度为零则为真。     
  if [ -z "${pid}" ]; then
   return 1
  1. [ -a FILE ] 如果 FILE 存在则为真。
  2. [ -b FILE ] 如果 FILE 存在且是一个块特殊文件则为真。
  3. [ -c FILE ] 如果 FILE 存在且是一个字特殊文件则为真。
  4. [ -d FILE ] 如果 FILE 存在且是一个目录则为真。
  5. [ -e FILE ] 如果 FILE 存在则为真。
  6. [ -f FILE ] 如果 FILE 存在且是一个普通文件则为真。
  7. [ -g FILE ] 如果 FILE 存在且已经设置了SGID则为真。 [ -h FILE ] 如果 FILE
    存在且是一个符号连接则为真。
  8. [ -k FILE ] 如果 FILE 存在且已经设置了粘制位则为真。
  9. [ -p FILE ] 如果 FILE 存在且是一个名字管道(F如果O)则为真。
  10. [ -r FILE ] 如果 FILE 存在且是可读的则为真。
  11. [ -s FILE ] 如果 FILE 存在且大小不为0则为真。
  12. [ -t FD ] 如果文件描述符 FD 打开且指向一个终端则为真。
  13. [ -u FILE ] 如果 FILE 存在且设置了SUID (set user ID)则为真。
  14. [ -w FILE ] 如果 FILE 如果 FILE 存在且是可写的则为真。
  15. [ -x FILE ] 如果 FILE 存在且是可执行的则为真。
  16. [ -O FILE ] 如果 FILE 存在且属有效用户ID则为真。
  17. [ -G FILE ] 如果 FILE 存在且属有效用户组则为真。
  18. [ -L FILE ] 如果 FILE 存在且是一个符号连接则为真。
  19. [ -N FILE ] 如果 FILE 存在 and has been mod如果ied since it was last
    read则为真。
  20. [ -S FILE ] 如果 FILE 存在且是一个套接字则为真。
  21. [ FILE1 -nt FILE2 ] 如果 FILE1 has been changed more recently than
    FILE2, or 如果 FILE1 exists and FILE2 does not则为真。
  22. [ FILE1 -ot FILE2 ] 如果 FILE1 比 FILE2 要老, 或者 FILE2 存在且 FILE1
    不存在则为真。
  23. [ FILE1 -ef FILE2 ] 如果 FILE1 和 FILE2 指向相同的设备和节点号则为真。
  24. [ -o OPTIONNAME ] 如果 shell选项 “OPTIONNAME” 开启则为真。
  25. [ -z STRING ] “STRING” 的长度为零则为真。
  26. [ -n STRING ] or [ STRING ] “STRING” 的长度为非零 non-zero则为真。
  27. [ STRING1 == STRING2 ] 如果2个字符串相同。 “=” may be used instead of “==”
    for strict POSIX compliance则为真。
  28. [ STRING1 != STRING2 ] 如果字符串不相等则为真。
  29. [ STRING1 < STRING2 ] 如果 “STRING1” sorts before “STRING2”
    lexicographically in the current locale则为真。
  30. [ STRING1 > STRING2 ] 如果 “STRING1” sorts after “STRING2”
    lexicographically in the current locale则为真。
  31. [ ARG1 OP ARG2 ] “OP” is one of -eq, -ne, -lt, -le, -gt or -ge.
    These arithmetic binary operators return true if “ARG1” is equal
    to, not equal to, less than, less than or equal to, greater than,
    or greater than or equal to “ARG2”, respectively. “ARG1” and “ARG2”
    are integers.

1、字符串判断

  • str1 = str2      当两个串有相同内容、长度时为真
  • str1 != str2      当串str1和str2不等时为真
  • -n str1        当串的长度大于0时为真(串非空)
  • -z str1        当串的长度为0时为真(空串)
  • str1         当串str1为非空时为真

2、数字的判断

  • int1 -eq int2    两数相等为真
  • int1 -ne int2    两数不等为真
  • int1 -gt int2    int1大于int2为真
  • int1 -ge int2    int1大于等于int2为真
  • int1 -lt int2    int1小于int2为真
  • int1 -le int2    int1小于等于int2为真

3、文件的判断

  • -r file     用户可读为真
  • -w file     用户可写为真
  • -x file     用户可执行为真
  • -f file     文件为正规文件为真
  • -d file     文件为目录为真
  • -c file     文件为字符特殊文件为真
  • -b file     文件为块特殊文件为真
  • -s file     文件大小非0时为真
  • -t file     当文件描述符(默认为1)指定的设备为终端时为真

4、复杂逻辑判断

  • -a         与
  • -o        或
  • !        非

参考了大佬们的博文

  1. 脚本介绍

https://www.west.cn/docs/51562.html

  1. 变量介绍

在这里插入图片描述

https://blog.csdn.net/openbox2008/article/details/80570429

  1. case方法介绍
    https://www.cnblogs.com/ghostwu/p/9114024.html

以上是关于ubuntu自定义脚本重启java的jar进程的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 项目脚本(启动停止重启状态)

SpringBoot应用优雅重启 - Actuator

SpringBoot 优雅重启

swoole自定义进程如何热重启

CentOS 通用脚本处理jar包程序

Java使用FileLock实现Java进程互斥锁