记:如何安装 哪吒监控V0 客户端Agent V0.20.5?
服务端Dashboard就不讲了,还在用哪吒V0的应该都还留着服务端,这里仅记录下购买新机器后如何手动(不想用一键)添加到服务端的简单过程。
一、拉取文件
这里以Linux系统为例,其他系统可以到 这里 找到对应链接
wget -c https://github.com/nezhahq/agent/releases/download/v0.20.5/nezha-agent_linux_amd64.zip
二、解压文件
unzip nezha-agent_linux_amd64.zip
三、赋予权限
chmod +x ./nezha-agent
四、启动命令(后台运行)
nohup运行
nohup /root/nezha-agent --disable-auto-update --disable-command-execute -s 未接入CDN的面板服务器域名/IP:端口 -p 服务端的密钥 > /dev/null 2>&1 &
备注:nohup命令是后台运行,但服务器重启后无法自启,需要手动再次运行。
systemd运行
新建一个系统启动服务nezha-agent.service
vim /etc/systemd/system/nezha-agent.service
编写nezha-agent.service的内容
[Unit]
Description=哪吒探针监控端
[Service]
StartLimitInterval=5
StartLimitBurst=10
ExecStart=/root/nezha-agent --disable-auto-update --disable-command-execute -s 未接入CDN的面板服务器域名/IP:端口 -p 服务端的密钥
WorkingDirectory=/root
Restart=always
RestartSec=120
EnvironmentFile=-/etc/sysconfig/nezha-agent
[Install]
WantedBy=multi-user.target
执行系统启动命令
systemctl daemon-reload && systemctl enable nezha-agent && systemctl start nezha-agent
注释:
disable-auto-update 禁止自动更新
disable-command-execute 禁止页面的ssh
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭