在 glances 的 WebServer 模式下,客戶端只經過瀏覽器訪問就能夠獲取遠程服務器的運行狀態。
安裝成功後,使用 glances -w
命令便可開啓 WebServer 模式。
客戶端使用瀏覽器訪問 http://SERVER_IP:61208/
進入監控界面。web
建立glances-install.sh ,內容以下。(記得賦予執行權限:chmod +x glances-install.sh)瀏覽器
#!/bin/bash echo "Installing glances..." yum install -y glances echo "Installing pip bottle..." pip install bottle ( cat <<EOF [Unit] Description = Glances in Web Server Mode After = network.target [Service] ExecStart = /usr/bin/glances -w -t 5 [Install] WantedBy = multi-user.target EOF ) > /etc/systemd/system/glancesweb.service systemctl enable glancesweb echo "Starting glancesweb..." systemctl start glancesweb echo "=================Glancesweb started================"