简介
最近接触到了这款探针,搭建起来也很方便,之前用的 ServerStatus-Hotaru ,添加机器调整顺序不是很方便, 故此换了哪吒探针,发现哪吒添加机器添加机器很方便。现在在这里分享一下教程。
github项目地址:https://github.com/naiba/nezha
准备
- GitHub账户
- 宝塔面板
- 一个域名
开始之前,请先确定你搭建探针的域名
比如说tz.llxx.cc
作为面板的域名,还有一个tzz.llxx.cc
是用来记录面板服务器的IP
安装监控
新建OAuth App
首先打开:https://github.com/settings/developers,然后点击New OAuth App按钮。
记录下OAuth Apps的Client ID和Client secrets
执行脚本
打开github项目地址,现在有一键代码,我还是比较推荐使用国外的机器搭建哪吒探针的。https://github.com/naiba/nezha
curl -L https://raw.githubusercontent.com/naiba/nezha/master/script/install.sh -o nezha.sh && chmod +x nezha.sh
sudo ./nezha.sh #国外机
curl -L https://cdn.jsdelivr.net/gh/naiba/nezha@master/script/install.sh -o nezha.sh && chmod +x nezha.sh
CN=true sudo ./nezha.sh #国内机
放行端口,解析域名
在你的服务器上开放8088和5555端口。并且解析两个域名到服务器!
新建网站
设置ssl
设置反向代理
location /
{
proxy_pass http://127.0.0.1:8008;
proxy_set_header Host $host;
}
location /ws
{
proxy_pass http://127.0.0.1:8008;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
登入后台
这时候就可以输入tz.llxx.cc访问后台了,登入后台,设置未接入CDN的面板服务器域名/IP
添加服务器
复制一键命令
复制一键命令到其他要被监控的机器,一键添加,非常方便
文章评论