第一节:zabbix使用模板监控nginx
使用模板监控nginx 一、安装nginx并开启监控取值页面 1、安装nginx [root@web01 ~]# yum install -y nginx 2、配置nginx状态页 [root@web01 ~]# vim /etc/nginx/nginx.conf ..... include /etc/nginx/default.d/*.conf;…
第二节:zabbix模板监控php
使用模板监控php 一、安装php并开启监控页面 1、安装php [root@web01 ~]# yum install -y php-fpm 2、修改配置文件开启监控页面 [root@web01 ~]# vim /etc/php-fpm.d/www.conf ... ; Default Value: not set pm.status_path …
第三节:搭建discuz论坛使用redis服务
搭建discuz论坛使用redis加速 一、修改nginx配置文件 [root@web01 ~]# vim /etc/nginx/nginx.conf ... root /code; index index.php index.html index.htm; ... location ~ \.php$ { fastcgi_pass 127.0.0.…