云探针ServerStatus中文版 作者: Hogwarts 发布于: 2021-12-23 更新于: 2024-04-01 分类: 默认分类 ServerStatus中文版是一个酷炫高逼格的云探针、云监控、服务器云监控、多服务器探针~。 **本文抄自Github** 为啥要抄呢,介不是自己看着方便么。抄取地址如下: https://github.com/cppla/ServerStatus **演示地址** https://tz.cloudcpp.com/ **目录介绍** clients 客户端文件 server 服务端文件 web 网站文件 server/config.json 探针配置文件 web/json 探针月流量 #一、自动部署 ##1.1 Docker安装 curl -sSL https://get.docker.com/ | sh && apt -y install docker-compose ##1.2【服务端】 `OneTouch` wget --no-check-certificate -qO ~/serverstatus-config.json https://raw.githubusercontent.com/cppla/ServerStatus/master/server/config.json && mkdir ~/serverstatus-monthtraffic docker run -d --restart=always --name=serverstatus -v ~/serverstatus-config.json:/ServerStatus/server/config.json -v ~/serverstatus-monthtraffic:/usr/share/nginx/html/json -p 80:80 -p 35601:35601 cppla/serverstatus:latest `ServerStatus`: docker-compose up -d `ServerStatus with tgbot`: docker-compose -f docker-compose-telegram.yml up -d ##1.3【客户端】 wget --no-check-certificate -qO client-linux.py 'https://raw.githubusercontent.com/cppla/ServerStatus/master/clients/client-linux.py' && nohup python3 client-linux.py SERVER={$SERVER} USER={$USER} PASSWORD={$PASSWORD} >/dev/null 2>&1 & eg: wget --no-check-certificate -qO client-linux.py 'https://raw.githubusercontent.com/cppla/ServerStatus/master/clients/client-linux.py' && nohup python3 client-linux.py SERVER=45.79.67.132 USER=s04 >/dev/null 2>&1 & #二、手动安装教程 ##2.1【克隆代码】 `Debian/Ubuntu`: apt-get -y install gcc g++ make libcurl4-openssl-dev `Centos/Redhat`: yum -y install gcc gcc-c++ make libcurl-devel git clone https://github.com/cppla/ServerStatus.git ##2.2【服务端配置】 ###2.2.1 生成服务端程序 cd ServerStatus/server make ./sergate 如果没错误提示,OK,ctrl+c关闭;如果有错误提示,检查35601端口是否被占用 ###2.2.2 修改配置文件 修改config.json文件,注意username, password的值需要和客户端对应一致 {"servers": [ { "username": "s01", "name": "vps-1", "type": "kvm", "host": "chengdu", "location": "CN", #Emoji字符,数据库报错,所以打上了CN "password": "USER_DEFAULT_PASSWORD", "monthstart": 1 }, #注意此处 ] } ###2.2.3 拷贝ServerStatus/status到你的网站目录 sudo cp -r ServerStatus/web/* /home/wwwroot/default #需修改为网站目录 ###2.2.4 运行服务端 web-dir参数为上一步设置的网站根目录,务必修改成自己网站的路径 ./sergate --config=config.json --web-dir=/home/wwwroot/default ##2.3【客户端配置】 客户端有两个版本,client-linux为普通linux,client-psutil为跨平台版,普通版不成功,换成跨平台版即可。 ###2.3.1 client-linux版配置: 1. vim client-linux.py, 修改SERVER地址,username帐号, password密码 1. python3 client-linux.py 运行即可。 ###2.3.2 client-psutil版配置: 1. 安装psutil跨平台依赖库 1. vim client-psutil.py, 修改SERVER地址,username帐号, password密码 1. python3 client-psutil.py 运行即可。 1. Python3和psutil的安装 for Centos sudo yum -y install epel-release sudo yum -y install python3-pip sudo yum clean all sudo yum -y install gcc sudo yum -y install python3-devel sudo pip3 install psutil for Ubuntu/Debian sudo apt -y install python3-pip sudo pip3 install psutil for Windows: 地址:https://pypi.org/project/psutil/ 下载psutil for windows, 安装即可 #三、打开云探针页面,就可以正常的监控。 #四、加入开机启动 接下来把服务器和客户端脚本自行加入开机启动,或者进程守护,或以后台方式运行即可! 例如: `nohup python3 client-linux.py &` 后台方式运行可参考上一篇:[云探针ServerStatus-Hotaru的搭建](https://winamp.top/139.html "云探针ServerStatus-Hotaru的搭建") 1.1.2版本可能还需要权限 chown -R user.root /data/www/serverstatus/json/ #五、致谢 [cppla](https://cpp.la "cppla") [cppla/ServerStatus](https://github.com/cppla/ServerStatus "cppla/ServerStatus") 标签: 云探针, 探针, ServerStatus