我一直在走,至少还有条路,也好于无路可走…
分类: LINUX
2013-04-26 18:27:47
cacti监控nginx
一、在安装nginx的时候,./configure时候加参数:http_stub_status_module,不然会监控不到nginx状态
二、编辑配置文件nginx.conf添加如下行:
location /NginxStatus/ {
stub_status on;
access_log off;
allow 192.168.10.0/24 #允许哪个网段的主机可以访问
deny all;
}
二,重启nginx
server nginx restart
三下载cact监控nginx的模块
wget
四.把模板中以.pl的两文件拷贝到你的cacti目录下的scripts/目录下,然后把以.xml的文件导入到cacti中,导入方法,
登陆cacti,在Console——>Import/Export———>Import Templates中导入;
chmod 755 cacti/scripts/get_nginx*
执行一下看看是否能返回数据: