linux服务器监控
- 0
AI 智能摘要
本文介绍了ServerStatus工具的安装与配置方法,包括服务端和客户端的安装步骤。服务端通过Docker容器运行,需下载配置文件并修改相关设置;客户端则通过脚本快速部署并连接到指定服务器。文章还提供了相关GitHub链接以供参考。(预计阅读时间:1分钟)
#讨论区
00条评论
实时对话
loading...
bash
bash
bash
wget https://raw.githubusercontent.com/cppla/ServerStatus/master/autodeploy/config.json
docker run -d --restart=always --name=serverstatus -v ~/config.json:/ServerStatus/server/config.json -p 80:80 -p 35601:35601 cppla/serverstatus:latest
wget --no-check-certificate -qO client-linux.py 'https://raw.githubusercontent.com/cppla/ServerStatus/master/clients/client-linux.py' && nohup python client-linux.py SERVER=45.79.67.132 USER=s04 >/dev/null 2>&1 &