遠程服務器狀態監控

目的:實現對遠端服務器的狀態進行監控

首先貼貼出github地址:https://github.com/BotoX/ServerStatus/python

經過主服務器監控遠端的服務器的狀態.git

安裝和使用:

主服務器

注意事項:github

切換到非特權用戶或建立一個。端口35601須要空閒並轉發/打開才能運行服務器。web

git clone https://github.com/BotoX/ServerStatus.git
cd ServerStatus/server
make
./sergate

若是安裝完成,修改配置文件,只須要編輯config.json就能夠了.json

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

若是你暫時不須要啓動服務,在配置文件中添加便可.bash

"disabled": true

相關的命令參數的查看,只須要在運行二進制文件時天劍-h參數.服務器

    -h, --help            Show this help message and exit
    -v, --verbose         Verbose output
    -c, --config=<str>    Config file to use
    -d, --web-dir=<str>   Location of the web directory
    -b, --bind=<str>      Bind to address
    -p, --port=<int>      Listen on port

而後:不要忘記複製或者移動web目錄(ServerStatus/status)到你的webserver能找到的地方.編輯器

運行:this

能夠經過啓動腳原本運行主服務器.google

Debian和其餘基於init.d的系統.

複製the init.d script to /etc/init.d

cp ServerStatus/other/sergate.initd /etc/init.d/sergate

使用編輯器添加下列行

# Change this according to your setup!
DAEMON_PATH="/usr/local/share/ServerStatus/server"
WEB_PATH="/var/www/botox.bz/status"
DAEMON="sergate"
OPTS="-d $WEB_PATH"
RUNAS="www-data"

以root方式運行

service sergate start

設置自啓動

update-rc.d sergate defaults

Arch Linux and other systemd based systems

複製systemd service to /etc/systemd/system

cp ServerStatus/other/sergate.service /etc/systemd/system/sergate.service

使用編輯器添加下列行

WorkingDirectory=/usr/local/share/ServerStatus/server
User=botox.bz
Group=http
ExecStart=/usr/local/share/ServerStatus/server/sergate -d /home/botox.bz/status

啓動:

systemctl start sergate

設置自啓動

systemctl enable sergate

注意:確保運行主服務器的用戶能夠訪問Web路徑並能夠寫入$web_path/json。

客戶端

三種實現方式

  • Python2 [preferred]
  • Python2-psutil
  • Bash

三種方式都很是容易實現.

Python2和Bash客戶端只支持GNU/Linux.Python2-psutil支持不少的操做系統,好比BSD or Window.

自動安裝

自動安裝,你須要得到證書,能夠這樣運行

wget https://raw.github.com/BotoX/ServerStatus/master/other/client-setup.sh
bash client-setup.sh

常規的安裝

再啓動文件中添加下列行

Python Client

SERVER = "status.botox.bz"
PORT = 35601
USER = "s01"
PASSWORD = "some-hard-to-guess-copy-paste-password"
INTERVAL = 1 # Update interval

Python2-psutil Client

SERVER = "status.botox.bz"
PORT = 35601
USER = "s01"
PASSWORD = "some-hard-to-guess-copy-paste-password"
INTERVAL = 1 # Update interval

客戶端的操做系統必須支持psutil project.

Windows系統

要麼使用預編譯的自包含版本,要麼安裝python2和psutil。預編譯版本已使用py2exe生成。若是您想本身構建安裝腳本,則會包含它。安裝完全部依賴項後,

運行「python setup.py py2exe」

Windows配置的工做方式不一樣,使預編譯版本和自包含版本均可以。根據您的設置編輯client.cfg文件

[client]
SERVER = status.botox.bz
PORT = 35601
USER = s01
PASSWORD = some-hard-to-guess-copy-paste-password
INTERVAL = 1

Bash客戶端

SERVER="status.botox.bz"
PORT=35601
USER="s01"
PASSWORD="some-hard-to-guess-copy-paste-password"
INTERVAL=1 # Update interval

運行

確保你的客戶端已經配置正確,運行.能夠經過啓動腳本或cronjob使其自動啓動,也能夠手動啓動.

nohup ./client.py &> /dev/null &

Debian 和其餘基於init.d的系統

添加下列文件到/etc/rc.local

su -l $USERNAME -c "/path/to/client.py &> /dev/null &"

Arch Linux 和其餘基於systems的系統

建立文件/etc/systemd/system/serverstatus.service來建立新的systemd服務:

[Unit]
Description=ServerStatus Client
After=network.target

[Service]
Type=simple
IgnoreSIGPIPE=no
User=$USERNAME
ExecStart=/path/to/client.py

[Install]
WantedBy=multi-user.target

注意:

ignoresigpipe=no對於bash客戶機很重要,當缺乏此行時,它將不會從新鏈接,並且會損壞管道錯誤淹沒日誌.

若是主服務器出現故障,也不用擔憂客戶機,他們將繼續嘗試從新鏈接,直到他們可以再次訪問主服務器。

相關文章
相關標籤/搜索