zabbix 3.0.4 Nginx 性能监控
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了zabbix 3.0.4 Nginx 性能监控相关的知识,希望对你有一定的参考价值。
搭建nginx
安装pcre-devel 、zlib-devel支持包
[[email protected] /]# yum -y install pcre-devel zlib-devel
创建nginx用户
[[email protected] /]# useradd -M -s /sbin/nologin nginx
解压安装
[[email protected] /]# tar zxvf nginx-1.6.0.tar.gz [[email protected] /]# cd nginx-1.6.0 [[email protected] nginx-1.6.0]# ./configure --prefix=/usr/local/nginx --with-http_realip_module --with-http_sub_module --with-http_gzip_static_module --with-http_stub_status_module --with-pcre
[[email protected] nginx-1.6.0]# make && make install
优化执行路径
[[email protected] nginx-1.6.0]# ln -s /usr/local/nginx/sbin/* /usr/local/sbin/
在zabbix agentd客户端上,查看nginx是否加载了--with-http_stub_status_module。zabbix监控根据nginx的stub status 模块,抓取所提供的数据
检查with-http_stub_status_module有没有安装
[[email protected] nginx-1.6.0]# /usr/local/sbin/nginx -V nginx version: nginx/1.6.0 built by gcc 4.4.7 20120313 (Red Hat 4.4.7-17) (GCC) configure arguments: --prefix=/usr/local/nginx --with-http_realip_module --with-http_sub_module --with-http_gzip_static_module --with-http_stub_status_module --with-pcre
以上是关于zabbix 3.0.4 Nginx 性能监控的主要内容,如果未能解决你的问题,请参考以下文章