將 Scollector 作為服務執行
在 Windows 上,你可以使用 -winsvc =install
標誌將 Scollector 安裝為服務。在 Mac 和 Linux 上,你必須手動建立服務或 init 指令碼。例如,這是一個基本的 systemd 單元檔案:
#Scollector unit file saved to /etc/systemd/system/scollector.service
[Unit]
Description=Scollector Service
After=network.target
[Service]
Type=simple
User=root
ExecStart=/opt/scollector/scollector -h mybosunserver.example.com
Restart=on-abort
[Install]
WantedBy=multi-user.target