1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
| #!/bin/bash
APP_NAME=gps-ruoyi-admin.jar
APP_PATH=/opt/hf-gps/jar
usage() { echo "Usage: sh server.sh [start|stop|restart|status]" exit 1 }
is_exist(){ pid=`ps -ef|grep $APP_NAME|grep -v grep|awk '{print $2}'` if [ -z "${pid}" ]; then return 1 else return 0 fi }
start_log(){ is_exist if [ $? -eq 0 ]; then echo "${APP_NAME} 启动成功! pid=${pid}" else echo "${APP_NAME} 启动失败!请检查后重试" fi }
start(){ is_exist if [ $? -eq 0 ]; then echo "${APP_NAME} is already running. pid=${pid}" else nohup java -jar ${APP_PATH}/${APP_NAME} > /dev/null 2>&1 & start_log fi }
stop(){ is_exist if [ $? -eq "0" ]; then kill -9 $pid echo "${APP_NAME} 已关闭! pid=${pid}" else echo "${APP_NAME} is not running" fi soffice_stop }
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 echo "${APP_NAME} 准备重启..." sleep 5 start }
soffice_stop(){ soffice_pid=`ps -e|grep soffice.bin |awk '{print $1}'` if [ -n "${soffice_pid}" ]; then kill -9 $soffice_pid echo "已关闭soffice.bin" fi }
case "$1" in "start") start ;; "stop") stop ;; "status") status ;; "restart") restart ;; *) usage ;; esac
|