博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
zabbix agentd configure
阅读量:6367 次
发布时间:2019-06-23

本文共 1652 字,大约阅读时间需要 5 分钟。

在被监控的主机, 需要有一个zabbix的agent来负责将监控数据发送给proxy或直接发送给server.
同时agentd也支持监听, proxy和server可以主动要求agent调用监控命令. 但是在安全性要求较高的环境, 一般不开启agent的被动模式, 只使用主动模式, 即agent主动往外发监控数据, 但是不接受任何远程调用. 
两种模式的运行机制 : 
In a passive check the agent responds to a data request. Zabbix server (or proxy) asks for data, for example, CPU load, and Zabbix agent sends back the result.

Active checks require more complex processing. The agent must first retrieve a list of items from Zabbix server for independent processing. Then it will periodically send new values to the server.
详见

server和proxy的配置参考 : 
1. 
2. 
3. 
本文假设我们要将监控数据发送给proxy. 
配置agentd.conf如下, 连接到proxy.
# vi /opt/zabbix/etc/zabbix_agentd.confPidFile=/tmp/zabbix_agentd.pidLogFile=/tmp/zabbix_agentd.logLogFileSize=10EnableRemoteCommands=0StartAgents=0ServerActive=172.16.3.150:10052Hostname=agent150RefreshActiveChecks=120
启动agentd
# useradd zabbix_agent[root@150 etc]# su - zabbix_agent -c "zabbix_agentd -c /opt/zabbix/etc/zabbix_agentd.conf"
在zabbix WEB 添加主机, 注意主机名和agentd.conf Hostname配置一致.
zabbix agentd configure - 德哥@Digoal - PostgreSQL research

添加监控模板.
zabbix agentd configure - 德哥@Digoal - PostgreSQL research

重启proxy, 因为proxy是从server获取配置的, 所以必须重启获取刚才添加的主机. 否则agent会报找不到主机的错误.
如下 : 
 33315:20140901:155115.763 no active checks on server [172.16.3.150:10052]: host [agent221] not found
 33315:20140901:155315.787 no active checks on server [172.16.3.150:10052]: host [agent221] not found

[被动相关配置]
zabbix_agentd.conf
需开启监听, 允许远程调用, Server配置一个列表, 表示允许被哪些远程的服务端IP连接本agent.
PidFile=/tmp/zabbix_agentd.pidLogFile=/tmp/zabbix_agentd.logLogFileSize=10EnableRemoteCommands=1LogRemoteCommands=1Server=172.16.3.150ListenPort=10050ListenIP=0.0.0.0StartAgents=8ServerActive=172.16.3.150:10052Hostname=agent150RefreshActiveChecks=120
[参考]
1. 
2. 
3. 
4. 
5. 
6. 

转载地址:http://ijgma.baihongyu.com/

你可能感兴趣的文章
android-market-api
查看>>
解決 yum update錯誤:[Errno -1] Metadata file does not match checksum
查看>>
ASP.NET(C#)Excel导入Dataset的出现数据值丢失问题
查看>>
我的友情链接
查看>>
『Data Science』R语言学习笔记,获取数据
查看>>
rails中n秒页面自动跳转
查看>>
我的友情链接
查看>>
忘记root用户密码怎么办?
查看>>
esxi定时任务
查看>>
Scaffold-DbContext
查看>>
关于VMware Workstation主机列表问题求教
查看>>
配置管理小报101021:给ubuntu加监控
查看>>
qml文字滚动效果的封装,实现方式运用的qml中提供的动画效果,另一种实现方式也可以使用定时器修改控件的坐标来实现...
查看>>
标准C++实现任务队列
查看>>
jdbc url
查看>>
刷leetcode第704题-二分查找
查看>>
debug_backtrace() 函数生成一个 backtrace(追踪)
查看>>
第七天,还是盒子
查看>>
XAMPP软件包下载
查看>>
XXL-JOB初体验-ORACLE版
查看>>