本篇内容主要讲解“如何在CentOS/RHEL中安装基于Web的监控系统linux-dash”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“如何在CentOS/RHEL中安装基于Web的监控系统linux-dash”吧!
成都创新互联公司专注于温泉企业网站建设,响应式网站,成都商城网站开发。温泉网站建设公司,为温泉等地区提供建站服务。全流程按需求定制制作,专业设计,全程项目跟踪,成都创新互联公司专业和态度为您提供的服务
首先我们要启用EPEL 仓库。
接下来,我们需要用下面的命令安装nginx。
sudo yum install nginx
安装 php-fpm 组件
sudo yum install git php-common php-fpm
现在我们要在nginx中配置Linux-dash。我们如下创建 /etc/nginx/conf.d/linuxdash.conf。
sudo vim /etc/nginx/conf.d/linuxdash.conf
server { server_name $domain_name; listen 8080; root /var/www; index index.html index.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; expires max; access_log off; add_header Pragma public; add_header Cache-Control "public, must-revalidate, proxy-revalidate"; } location /linux-dash { index index.html index.php; } # PHP-FPM via sockets location ~ \.php(/|$) { fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_split_path_info ^(.+?\.php)(/.*)$; fastcgi_pass unix:/var/run/php-fpm.sock; if (!-f $document_root$fastcgi_script_name) { return 404; } try_files $uri $uri/ /index.php?$args; include fastcgi_params; } }
下一步是配置php-fpm。用编辑器打开/etc/php-fpm.d/www.conf。
sudo vim /etc/php-fpm.d/www.conf
确保设置了如下的“listen”,“user”和“group”字段。你可以保留其它的配置不变。
. . . listen = /var/run/php-fpm.sock user = nginx group = nginx . . .
现在,我们要在/var/www中下载并安装linux-dash。
git clone https://github.com/afaqurk/linux-dash.git sudo cp -r linux-dash/ /var/www/ sudo chown -R nginx:nginx /var/www
接下来,重启 Nginx和php-fpm。
sudo service nginx restart sudo service php-fpm restart
设置nginx和php-fpm开机自动启动。
sudo chkconfig nginx on sudo chkconfig php-fpm on
在本例中,我们使用TCP端口8080配置linux-dash。因此需确保防火墙没有阻止8080 TCP端口。
你现在可以在浏览器中输入http://
web面板包含了不同的组件,每个都显示独特的系统属性。你可以自定义web面板的外观也可以关闭一些组件。
到此,相信大家对“如何在CentOS/RHEL中安装基于Web的监控系统linux-dash”有了更深的了解,不妨来实际操作一番吧!这里是创新互联网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!