linux-dash web监控系统的安装
Linux-dash是一款为Linux设计的基于Web的轻量级监控面板。这个程序会实时显示各种不同的系统属性,比如CPU负载、RAM使用率、磁盘使用率、网速、网络连接、RX/TX带宽、登录用户、运行的进程等等。它不会存储长期的统计。因为它没有后端数据库。其支持PHP, Node.js, Go 做为web展示。这里以php平台进行展示为例,简单了解下其安装和使用。
一、安装nginx和php
1、yum源安装相关软件
1yum install nginx git php-common php-fpm
nginx在默认redhat/centos源中不存在,需使用第三方源epel
2、clone linux-dash包
1git clone https://github.com/afaqurk/linux-dash.git
2sudo cp -r linux-dash/ /var/www/
3sudo chown -R www:www /var/www
二、配置
1、nginx配置
现在我们要在nginx中配置Linux-dash。我们如下创建 /etc/nginx/conf.d/linuxdash.conf,如下:
1# vim /etc/nginx/conf.d/linuxdash.conf
2server {
3 listen 80;
4 server_name www.361way.com;
5 root /var/www;
6 index index.php index.html index.htm;
7 location / {
8 try_files $uri $uri/ /index.php?$args;
9 }
10 location ~* ^.+\.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|rss|atom|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ {
11 access_log off;
12 log_not_found off;
13 expires max;
14 }
15 location ~ \.php$ {
16 fastcgi_index index.php;
17 fastcgi_keep_conn on;
18 include fastcgi_params;
19 fastcgi_pass 127.0.0.1:9000;
20 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
21 }
22}
2、php-fpm配置
确保设置了如下的“listen”,“user”和“group”字段。你可以保留其它的配置不变。
1# vim /etc/php-fpm.d/www.conf
2……
3listen =127.0.0.1:9000
4user = www
5group= www
6……
3、配置services
重启 Nginx和php-fpm服务,并配置为开机自启动。
1service nginx restart
2service php-fpm restart
3chkconfig nginx on
4chkconfig php-fpm on
三、使用
你现在可以在浏览器中输入http://
更多的可以查看demo页面。
四、其他
1、其他web展示平台
除了基于php web 的展示,其还支持node.js、go方式的展示,具体参见linux-dash的git页面 ,使用方法如下:
1#node.js平台下
2npm install
3node server
4#go平台下
5go run index.go
6使用go的二进制方式
7go build && ./server -h
注:从其源码包上来看,其已经在考虑基于python的web展示,具体可以查看python-server.py 文件,不过在使用python python-server.py文件运行查看http://localhost:8081时,发现无法正常防问(基于redhat6 python2.6)。
2、概述
linux-dash由于是基于一种无数据库的方式展示,本身前台展示时依赖于主机的性能,通过server/moudle下的脚本文件取得相应的数据后再在前台展示,所以速度不快。而且也无法查看历史数据 ,相对较鸡肋。从一方面来说,程序相对简洁,一些东西还是值得我们借鉴。
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/linux-dash/4529.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.