sword

ServerStatus中文版—云探针、多服务器探针、云监控、多服务器云监控
简介ServerStatus中文版是一个酷炫高逼格的云探针、云监控、服务器云监控、多服务器探针~。项目地址:htt...
扫描右侧二维码阅读全文
02
2018/12

ServerStatus中文版—云探针、多服务器探针、云监控、多服务器云监控

简介

ServerStatus中文版是一个酷炫高逼格的云探针、云监控、服务器云监控、多服务器探针~。
项目地址:https://github.com/cppla/ServerStatus
ServerStatus在github有很多版本,经过多个对比,发现这个是最好用的,更新也比较频繁。

在线演示:https://tz.cloudcpp.com

请输入图片描述

安装使用

一、目录介绍:
服务端和网站文件放在监控主机上,客户端放在被监控的机子上
autodeploy 自动部署
clients 客户端文件
server 服务端文件
web 网站文件

二、自动部署
自动部署时,服务端是基于docker的,首先自行安装docker
【服务端】:

wget https://raw.githubusercontent.com/cppla/ServerStatus/master/autodeploy/config.json
docker run -d --restart=always --name=serverstatus -v {$path}/config.json:/ServerStatus/server/config.json -p {$port}:80 -p {$port}:35601 cppla/serverstatus

例如:
docker run -d --restart=always --name=serverstatus -v ~/config.json:/ServerStatus/server/config.json -p 80:80 -p 35601:35601 cppla/serverstatus

【客户端】:

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={$SERVER} USER={$USER} PASSWORD={$PASSWORD} >/dev/null 2>&1 &

例如:
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 &

三、手动安装教程:
博主还是比较喜欢手动安装的方式

【克隆代码】:

git clone https://github.com/cppla/ServerStatus.git

【服务端配置】

(服务端程序在ServerStatus/web下):

1、编译生成服务端程序

cd ServerStatus/server
make
./sergate

如果没错误提示,OK,ctrl+c关闭;如果有错误提示,检查35601端口是否被占用

2、修改配置文件
修改server文件夹下的config.json文件,注意username, password的值需要和客户端对应一致

{"servers":
    [
        {
            "username": "s01",
            "name": "Mainserver 1",
            "type": "Dedicated Server",
            "host": "GenericServerHost123",
            "location": "Austria",
            "password": "some-hard-to-guess-copy-paste-password"
        },
    ]
}       

3、拷贝ServerStatus/status到你的网站目录
例如:

sudo  cp -r /root/ServerStatus/web/* /www/wwwroot/status_6v_nu

4、运行服务端:
web-dir参数为上一步设置的网站根目录,务必修改成自己网站的路径

./sergate --config=config.json --web-dir=/www/wwwroot/status_6v_nu

现在打开网址status_6v_nu即可访问

【客户端配置】
(客户端程序在ServerStatus/clients下):
客户端有两个版本,client-linux为普通linux,client-psutil为跨平台版,普通版不成功,换成跨平台版即可。

1、client-linux版配置:
1.1、vim client-linux.py, 修改SERVER地址,username帐号, password密码
1.2、python client-linux.py 运行即可。

2、client-psutil版配置:
2.1、安装psutil跨平台依赖库

### for Centos:
sudo yum -y install epel-release
sudo yum -y install python-pip
sudo yum clean all
sudo yum -y install gcc
sudo yum -y install python-devel
sudo pip install psutil
### for Ubuntu/Debian:
sudo root
apt-get -y install python-setuptools python-dev build-essential
apt-get -y install python-pip
pip install psutil
### for Windows:
打开网址:https://pypi.python.org/pypi?:action=display&name=psutil#downloads
下载psutil for windows程序包
安装即可

2.2、vim client-psutil.py, 修改SERVER地址,username帐号, password密码
2.3、python client-psutil.py 运行即可。

打开云探针页面,就可以正常的监控。接下来把服务器和客户端脚本自行加入开机启动,或者进程守护,或以后台方式运行即可!例如: nohup python client-linux.py &

Last modification:February 13th, 2019 at 07:39 pm
If you think my article is useful to you, please feel free to appreciate

Leave a Comment