前言

Glances 是基于 Python 的开源跨平台的命令行监控工具,可提供有关系统性能的大量信息。可以监控内存和 CPU 利用率、网络带宽、磁盘 I/O、文件系统和正在运行的进程等等。

安装python3和pip3

1
2
3
#此面板需要python3和python3-pip
yum install python3 python3-pip -y #CentOS
apt install python3 python3-pip -y #Ubuntu

pip3安装bottle和glances

1
2
3
pip3 install bottle

pip3 install glances

使用

1
2
3
glances #直接显示系统信息
glances -w #在网页上显示默认端口为:61208
ctrl + c #退出程序

配置系统服务

1
2
3
4
5
6
7
8
9
10
11
12
13
vim /etc/systemd/system/glances.service 

#在glances.service中写入,wq保存退出

[Unit]
Description = Glances in Web Server Mode
After = network.target

[Service]
ExecStart = /usr/local/bin/glances -w -t 5

[Install]
WantedBy = multi-user.target

系统服务命令

1
2
3
4
5
6
7
8
systemctl enable glances.service  # 开机自动启动glances

systemctl start glances.service # 启动glances

systemctl status glances.service # 查看glances状态

systemctl restart glances.service # 重启glances