Linux部署的WGCLOUD的探針agent如何設定開機自啟動

年少縱馬且歌發表於2023-03-03

Linux部署的WGCLOUD監控系統的server和agent都可以設定開機自啟動


就像普通的應用一樣,用通用的Linux設定開機啟動就可以


服務端server和被控端agent的設定方式一樣,以下是設定agent的開機啟動方式


server開機啟動方式可以看這裡,


1、以Ubuntu 20為例,新建/etc/systemd/system/wgcloudAgent.service檔案,

[root@localhost~]# vim /etc/systemd/system/wgcloudAgent.service

內容如下,將下列內容複製進/etc/systemd/system/wgcloudAgent.service檔案

[Unit]
Description=auto Start Wgcloud Agent
After=network.target syslog.target
[Service]
Type=forking
ExecStart=/etc/wgcloudAgent.local 
    
[Install]
WantedBy=multi-user.target

2、建立檔案/etc/wgcloudAgent.local

[root@localhost~]# vim /etc/wgcloudAgent.local

內容如下

#!/bin/sh -e
# 
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
/usr/local/wgcloud-v3.3.5/agent/start.sh
exit 0

注意:/usr/local/wgcloud-v3.3.5/agent/start.sh改為自己的agent實際部署路徑


3、給/etc/wgcloudAgent.local加可執行許可權

[root@localhost~]# chmod +x /etc/wgcloudAgent.local

4、最後兩步,重新載入systemd服務和設定開機自啟動,完成

[root@localhost~]# systemctl daemon-reload
[root@localhost~]# systemctl enable wgcloudAgent


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70024568/viewspace-2937981/,如需轉載,請註明出處,否則將追究法律責任。

相關文章