在CentOS/RHEL中安装基于Web的监控系统 linux-dash

网络知识 2023-02-09 13:14www.1681989.comseo网站推广

Lux-dash是一款为Lux设计的基于web的轻量级监控面板。这个程序会实时显示各种不同的系统属性,比如CPU负载、RAM使用率、磁盘使用率、网速、网络连接、RX/TX带宽、登录用户、运行的进程等等。它不会存储长期的统计。因为它没有后端数据库。

本篇文章将会向你展示如何安装和设置Lux dash,这里所使用的web服务器是Ngx.

安装

我们要启用EPEL 仓库。

接下来,我们需要用下面的命令安装ngx。

sudo yum stall ngx

安装 php-fpm 组件

sudo yum stall git php-mon php-fpm

现在我们要在ngx中配置Lux-dash。我们如下创建 /etc/ngx/conf.d/luxdash.conf。

sudo vim /etc/ngx/conf.d/luxdash.conf

server {
 server_name $doma_name;
 listen 8080;
 root /var/;
 dex dex.html dex.php;
 aess_log /var/log/ngx/aess.log;
 error_log /var/log/ngx/error.log;
 
 location ~ \.(?:xml|ogg|mp3|mp4|ogv|svg|svgz|eot|otf|woff|ttf|css|js|jpg|jpeg|gif|png|ico)$ {
 try_files $uri =404;
 expires max;
 aess_log off;
 add_header Pragma public;
 add_header Cache-Control "public, must-revalidate, proxy-revalidate";
 }
 
 location /lux-dash {
 dex dex.html dex.php;
 }
 
 # PHP-FPM via sockets
 location ~ \.php(/|$) {
 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
 fastcgi_split_path_fo ^(.+?\.php)(/.)$;
 fastcgi_pass unix:/var/run/php-fpm.sock;
 if (!-f $document_root$fastcgi_script_name) {
 return 404;
 }
 try_files $uri $uri/ /dex.php?$args;
 clude fastcgi_params;
 }
}

下一步是配置php-fpm。用编辑器打开/etc/php-fpm.d/.conf。

sudo vim /etc/php-fpm.d/.conf

确保设置了如下的“listen”,“user”和“group”字段。你可以保留其它的配置不变。

. . .
listen = /var/run/php-fpm.sock
user = ngx
group = ngx
. . .

现在,我们要在/var/中下载并安装lux-dash。

git clone https://github./afaqurk/lux-dash.git
sudo cp -r lux-dash/ /var//
sudo chown -R ngx:ngx /var/

接下来,重启 Ngx和php-fpm。

sudo service ngx restart
sudo service php-fpm restart

设置ngx和php-fpm开机自动启动。

sudo chkconfig ngx on
sudo chkconfig php-fpm on

在本例中,我们使用TCP端口8080配置lux-dash。需确保防火墙没有阻止8080 TCP端口。

用lux-dash监控Lux服务器

你现在可以在浏览器中输入http://<IP地址>:8080/lux-dash/来访问Lux-dash。

web面板包含了不同的组件,每个都显示独特的系统属性。你可以自定义web面板的外观也可以关闭一些组件。

美好的一天!

下篇文章中再见。

Copyright © 2016-2025 www.1681989.com 推火网 版权所有 Power by