Linux-dash是一款为Linux设计的基于web的轻量级监控面板。这个程序会实时显示各种不同的系统属性,比如CPU负载、RAM使用率、磁盘使用率、网速、网络连接、RX/TX带宽、登录用户、运行的进程等等。它不会存储长期的统计。因为它没有后端数据库。
本篇文章将会向你展示如何安装和设置Linuxdash,这里所使用的web服务器是Nginx.
安装首先我们要启用EPEL仓库。
接下来,我们需要用下面的命令安装nginx。
sudoyuminstallnginx安装php-fpm组件
sudoyuminstallgitphp-commonphp-fpm现在我们要在nginx中配置Linux-dash。我们如下创建/etc/nginx/conf.d/linuxdash.conf。
sudovim/etc/nginx/conf.d/linuxdash.conf
server{server_name$domain_name;listen8080;root/var/www;indexindex.htmlindex.php;access_log/var/log/nginx/access.log;error_log/var/log/nginx/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;expiresmax;access_logoff;add_headerPragmapublic;add_headerCache-Control"public,must-revalidate,proxy-revalidate";}location/linux-dash{indexindex.htmlindex.php;}#PHP-FPMviasocketslocation~\.php(/|$){fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;fastcgi_split_path_info^(.+?\.php)(/.*)$;fastcgi_passunix:/var/run/php-fpm.sock;if(!-f$document_root$fastcgi_script_name){return404;}try_files$uri$uri//index.php?$args;includefastcgi_params;}}下一步是配置php-fpm。用编辑器打开/etc/php-fpm.d/www.conf。
sudovim/etc/php-fpm.d/www.conf确保设置了如下的listen,user和group字段。你可以保留其它的配置不变。
...listen=/var/run/php-fpm.sockuser=nginxgroup=nginx...现在,我们要在/var/www中下载并安装linux-dash。
gitclonehttps://github.com/afaqurk/linux-dash.gitsudocp-rlinux-dash//var/www/sudochown-Rnginx:nginx/var/www接下来,重启Nginx和php-fpm。
sudoservicenginxrestartsudoservicephp-fpmrestart设置nginx和php-fpm开机自动启动。
sudochkconfignginxonsudochkconfigphp-fpmon在本例中,我们使用TCP端口8080配置linux-dash。因此需确保防火墙没有阻止8080TCP端口。
用linux-dash监控Linux服务器你现在可以在浏览器中输入http://<IP地址>:8080/linux-dash/来访问Linux-dash。
web面板包含了不同的组件,每个都显示独特的系统属性。你可以自定义web面板的外观也可以关闭一些组件。
美好的一天!
下篇文章中再见。