[root@zabbix ~]# vim /etc/yum.repos.d/nginx.repo [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/7/$basearch/ gpgcheck=0 enabled=1 [root@zabbix ~]# yum install nginx -y [root@zabbix ~]# systemctl start nginx [root@zabbix ~]# systemctl enable nginx Created symlink...
在/usr/local/zabbix/etc/zabbix_agentd.d/中创建关联nginx status和php-fpm status的子配置文件,创建一个,或者在已有的某配置文件中增加也可以,我这里分别为它们创建配置文件,文件名可自定义,只要确保此文件夹全部内容在zabbix_agentd.conf中包含(include)了。 5.1 userparameter_nginx.conf 5.2 userparameter_php...
#vim /usr/lib/systemd/system/nginx.service [Unit] Description=nginx After=network.target [Service] Type=forking ExecStart=/opt/nginx/sbin/nginx [Install] WantedBy=multi-user.target 开启Nginx #systemctl start nginx #systemctl status nginx #systemctl enable nginx 安装PHP 1.下载,安装php需要的组件...
在zabbix-agent端配置nginx键值配置文件 vim /etc/zabbix/zabbix_agentd.d/nginx.conf UserParameter=nginx.active,/usr/bin/curl -s"http://192.168.50.173:80/nginx-status"| grep"Active"| awk'{print $NF}'#监控活动连接数 UserParameter=nginx.status[*],/server/nginx_status.sh $1#监控状态 vim /et...
zabbix监控php-fpm主要是通过nginx配置php-fpm的状态输出页面,在正则取值.要nginx能输出php-fpm的状态首先要先修改php-fpm的配置,没有开启nginx是没有法输出php-fpm status。 1、修改文件php-fpm vim /application/php-5.5.32/etc/php-fpm.conf文件
1)nginx开启状态监控模块 [root@web01~23:58:28]# cat/etc/nginx/conf.d/nginx-status.oldben.conf server{listen8899;location/nginx_status{stub_status;}} 测试是否能取到值 [root@web01~01:54:05]# curl http://127.0.0.1:8899/nginx_status ...
zabbix安装在/usr/local/zabbix路径下,其相关配置文件及二进制执行程序都放置其中。 nginx安装在/usr/local/nginx下,其相关配置文件及二进制执行程序都放置其中。 php安装在/usr/local/php下,其相关配置文件及二进制执行程序都放置其中。 继续后面的操作前,请确认nginx和php-fpm的服务端口都处于监听状态。
systemctl reload php-fpm 2,编辑 Nginx 配置文件末尾添加如下配置 代码语言:javascript 复制 location~^/(status|ping)${access_log off;allow192.168.99.185;deny all;fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;fastcgi_index index.php;include fastcgi_params;fastcgi_pass unix:/run/php/ph...
LNMP 环境配置 1、Nginx 安装 1)安装必要软件 yum install pcre pcre-decel openssl openssl-devel gcc make cmake gcc-c++ 2) 编译安装 nginx 下载nginx-1.10.1.tar.gz tar zxvf nginx-1.10.1.tar.gz && cd nginx-1.10.1 ./configure --prefix=/usr/local/nginx-1.10.1 --with-http_ssl_module --...