Apache的安装请参考https://www.cnblogs.com/huangyanqi/p/9168637.html
1、修改配置
[[email protected] ~]# httpd -v Server version: Apache/2.4.6 (CentOS) Server built: Apr 20 2018 18:10:38 [[email protected] ~]# cat /etc/httpd24/httpd.conf |grep status LoadModule status_module modules/mod_status.so [[email protected] ~]# cat /etc/httpd24/httpd.conf |grep httpd-info.conf #Include /etc/httpd24/extra/httpd-info.conf 注释:去掉这个注释 [[email protected] ~]# vim /etc/httpd24/extra/httpd-info.conf <Location /server-status> SetHandler server-status Order allow,deny Allow from localhost Allow from 122.114.200.186/32 </Location> ExtendedStatus On 注释:去掉前面的#注释
2、浏览器查看
http://IP/server-status
或
3、下载zabbix模板
[[email protected] /]# wget https://github.com/lorf/zapache/archive/master.zip [[email protected] /]# unzip master.zip [[email protected] /]# cd zapache-master/ [[email protected] zapache-master]# ls httpd-server-status.conf.sample zapache README.md zapache-template-active.xml userparameter_zapache.conf.sample zapache-template.xml 注释: httpd-server-status.conf.sample 是用于配置server-status的上个步骤已经配置过了 userparameter_zapache.conf.sample 、zapache 关键的文件 zapache-template-active.xml zapache-template.xml模板
4、把文件放置到相应位置
cp userparameter_zapache.conf.sample /etc/zabbix/zabbix_agentd.d/ cd /etc/zabbix/zabbix_agentd.d/ mv userparameter_zapache.conf.sample userparameter_zapache.conf [[email protected] zabbix_agentd.conf.d]# cat userparameter_zapache.conf UserParameter=zapache[*],/var/lib/zabbixsrv/externalscripts/zapache \$1 修改下路径 UserParameter=zapache[*],/etc/zabbix/scripts/zapache \$1 #设置权限 [[email protected] ~]#chown root.zabbix /etc/zabbix/scripts/zapache [[email protected] ~]#chmod 550 /etc/zabbix/scripts/zapache [[email protected] ~]#ll /etc/zabbix/scripts/ total 20 -r-xr-x--- 1 root zabbix 514 May 29 16:50 check_port1.sh -r-xr-x--- 1 root zabbix 437 May 29 18:00 disk_scan.sh -r-xr-x--- 1 root zabbix 1044 Jun 11 14:25 nginx_zbx.sh -r-xr-x--- 1 root zabbix 6110 Jun 12 15:26 zapache #重启服务 [[email protected] ~]#systemctl restart zabbix-agent.service
5、zabbix-server导入模板
6、导入模板
7、结果如下
原文地址:https://www.cnblogs.com/huangyanqi/p/9174561.html
时间: 2024-10-12 16:17:44