- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
我们需要启动mod_status来监控apache,执行如下命令:
a2enmod status
然后找到status.conf来配置mod_status,如果使用的是Debian发行版本,status.conf文件应该在/etc/apache2/mods-enabled/status.conf,配置如下:
<IfModule mod_status.c> # # Allow server status reports generated by mod_status, # with the URL of http://www.landui.com/server-status # Uncomment and change the ".example.com" to allow # access from other hosts. # ExtendedStatus On <Location /server-status> SetHandler server-status Order deny,allow Deny from all Allow from 127.0.0.1 </Location> Listen 61709 NameVirtualHost 127.0.0.1:61709 <VirtualHost 127.0.0.1:61709> </VirtualHost> </IfModule>
然后重启apache
/etc/init.d/apache2 restart
并添加如下行到zabbix的/etc/zabbix/zabbix_agentd.conf:
# Apache Keys UserParameter=apache.status[*],wget -q -O /dev/null "http://www.landui.com:61709/server-status?auto" && wget -q -O - "http://www.landui.com:61709/server-status?auto" | awk '/$1: / {print $NF}'
现在重启zabbix agent。
/etc/init.d/zabbix-agent restart
之后就可以在zabbix看到apache的监控数据了。
售前咨询
售后咨询
备案咨询
二维码
TOP