在CentOS 8上安装Monitorix
步骤1.首先,让我们首先确保您的系统是最新的。
sudo clean all sudo dnf update
步骤2.在CentOS 8上安装Monitorix。
现在,我们可以使用以下命令安装Monitorix软件包:
sudo dnf install monitorix perl-CGI perl-HTTP-Server-Simple perl-rrdtool perl-Config-General perl-LWP-Protocol-https perl-LWP-Protocol-http10
您可以通过运行以下命令来验证Monitorix的安装版本:
$ monitorix -v Monitorix version 3.12.0 (29-Nov-2020)
成功安装后,现在将Monitorix服务添加到系统启动中,并使用以下命令启动该服务:
sudo systemctl start monitorx.service sudo systemctl enable monitorx.service
步骤3.配置Monitorix。
Monitorix配置有一个纯文本配置文件/etc/monitorix/monitorix.conf
。在使用Monitorix之前,我们将需要对配置文件进行一些更改。在更改配置文件之前,建议您对文件进行备份。运行以下命令以备份文件:
cp /etc/monitorix/monitorix.conf /etc/monitorix/monitorix.conf.backup
现在打开Monitorix配置文件进行编辑:
nano /etc/monitorix/monitorix.conf
在配置文件中,根据您的环境替换设置:
# line 6: change to any title you like title = Monitorix# line 7: change to your hostname hostname = mon.yundongfang.com# line 8: background color of admin site theme_color = white# line 12: change network units to bps (default is Bytes per/sec)# デフォルトは Bytes per/sec netstats_in_bps = y# 28-43: change if you need <httpd_builtin> enabled = y host = port = 8080 user = nobody group = nobody log_file = /var/log/monitorix-httpd # if enable permission for admin site, add settings hosts_deny = all hosts_allow = 10.0.0.0/24 autocheck_responsiveness = y <auth> # if enable Basic auth, turn to [y] enabled = n msg = Monitorix: Restricted access htpasswd = /var/lib/monitorix/htpasswd </auth> </httpd_builtin># line 76: set kind of graphs you'd like to monitor # Graphs (de)activation # ----------------------------------------------------------------------------- <graph_enable> system = y kern = y proc = y hptemp = n lmsens = n gensens = n ipmi = n ambsens = n nvidia = n disk = n ..... .....
对配置满意后,请重新启动Monitorix服务:
sudo systemctl restart monitorix
步骤4.配置防火墙。
如果您使用的是防火墙,请使用以下命令打开端口8080以启用访问权限:
sudo firewall-cmd --add-port=8080/tcp --permanent sudo firewall-cmd --reload
步骤5.在CentOS 8上访问Monitorix。
默认情况下,Monitorix将在HTTP端口8080上可用。打开您喜欢的浏览器,然后导航到http://mon.yundongfang.com:8080/monitorix
或http://server-ip-address:8080/monitorix
选择图形,然后单击确定以查看图形。
恭喜你!您已成功安装Monitorix。使用本教程在CentOS 8系统上安装Monitorix网络监视工具。有关其他帮助或有用信息,建议您检查Monitorix官方网站。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun39581.html