在Linux中把SpringBoot註冊成系統服務運行

  • 在/usr/lib/systmectld/system/目錄下新建test.service文件,編寫代碼如下

[Unit]
#服務描述
Description=test Service
After=network.target


[Service]
#定義Service的運行類型
Type=forking


#定義servicectl start|stop|reload *.service 的執行方法(具體命令需要些絕對路徑)
ExecStart=/etc/rc.d/init.d/test.sh start
ExecRelaod=/etc/rc.d/init.d/test.sh restart
ExecStop=/etc/rc.d/init.d/test.sh stop


#創建私有的內存空間
#PrivateTmp=True


[Install]
#多用戶
WantedBy=multi-user.target

 

編寫以上代碼之後依次輸入以下命令:

systemctl daemon-reload

systemctl enable test.service
 

  • 在/etc/rc.d/init.d/目錄下新建test.sh腳本文件,編寫代碼如下

#!/bin/bash
#這裏可替換爲你自己的執行程序,其他代碼無需更改
APP_NAME=/opt/test-0.0.1-SNAPSHOT.jar

#使用說明,用來提示輸入參數
usage() {
    echo "Usage: sh hkexpress.sh [start|stop|restart|status]"
    exit 1
}

#檢查程序是否在運行
is_exist() {
    pid=`ps -ef|grep $APP_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 runing"
    else
        nohup java -jar $APP_NAME > /dev/null 2>&1 &
    fi
}

#停止方法
stop() {
    is_exist
    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
    start
}

#根據輸入參數,選擇執行對應方法,不輸入則執行使用說明
case "$1" in
    "start")
        start
        ;;
    "stop")
        stop
        ;;
    "status")
        status
        ;;
    "restart")
        restart
        ;;
    *)
        usage
        ;;
esac

最後查看服務是啓動:systemctl status test.service

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章