windows搭建zabbix agent

1、下载和解压zabbix agent

地址: http://www.zabbix.com/downloads/2.4.4/zabbix_agents_2.4.4.win.zip
解压:
conf目录存放是agent配置文件
bin文件存放windows下32位和64位安装程序。

2、配置zabbix agent.win.conf

C:\Users\PC\Downloads\zabbix_agents_2.4.4.win\conf\zabbix_agentd.win.conf
LogFile=c:\zabbix\zabbix_agentd.log
Server=192.168.88.129
ServerActive=192.168.88.129
Hostname=Windows_host

Server: zabbix server的ip地址
ServerActive:zabbix 主动监控server的ip地址,
其中Server和ServerActive都指定zabbix Server的IP地址,不同的是,前者是被动后者是主动。也就是说Server这个配置是用来允许192.168.88.129这个ip来我这取数据。而ServerActive的192.168.88.129的意思是,客户端主动提交数据给他。
Hostname 主机名,必须唯一,区分大小写。Hostname必须和zabbix web上配置的一直,否则zabbix主动监控无法正常工作。因为agent拿着这个主机名去问server,我有配置主动监控项吗?server拿着这个主机名去配置里面查询,然后返回信息。
zabbix agent检测分为主动(agent active)和被动(agent)两种形式,主动与被动的说法均是相对于agent来讨论的。
主动:agent请求server获取主动的监控项列表,并主动将监控项内需要检测的数据提交给server/proxy
被动:server向agent请求获取监控项的数据,agent返回数据。

3、安装agent

修改好文件后,用CMD(需有管理员权限)将Zabbix Agent安装为Windows系统的服务,在windows控制台下执行以下命令:

E:\zabbix\bin\win64\zabbix_agentd.exe -i -c E:\zabbix\conf\zabbix_agentd.win.conf

控制台信息如下:

zabbix_agentd.exe [10540]: service [Zabbix Agent] installed successfully
zabbix_agentd.exe [10540]: event source [Zabbix Agent] installed successfully C:\Users\PC>C:\Users\PC\Downloads\zabbix_agents_2.4.4.win\bin\win64\zabbix_agentd.exe -i -c C:\Users\PC\Downloads\zabbix_agents_2.4.4.win\conf\zabbix_agentd.win.conf
zabbix_agentd.exe [7152]: ERROR: service [Zabbix Agent] already exists

4、启动agent客户端

C:\Users\PC>C:\Users\PC\Downloads\zabbix_agents_2.4.4.win\bin\win64\zabbix_agentd.exe -c C:\Users\PC\Downloads\zabbix_agents_2.4.4.win\conf\zabbix_agentd.win.conf -s

控制台信息

zabbix_agentd.exe [21800]: service [Zabbix Agent] started successfully

查看Windows端口使用

C:\Users\PC>netstat -ano|findstr '10050'

C:\Users\PC>netstat -ano|findstr "10050"
TCP 0.0.0.0:10050 0.0.0.0:0 LISTENING 26888
TCP [::]:10050 [::]:0 LISTENING 26888 C:\Users\PC>tasklist|findstr "26888"
zabbix_agentd.exe 26888 Services 0 9,732 K

  

5\查看启动的日志zabbix_agentd.log:
C:\zabbix_agentd.log

6、windows系统防火墙中开放端口10050
(1)控制面板--选择windows 防火墙--高级设置--设置入站规则--新建规则
(2)协议和端口:TCP 特定本地端口:10050-10051

连接mysql服务器:
mysql> grant all privileges on *.* to zabbix@192.168.51.99 identified by'zabbix';
Query OK, 0 rows affected (0.02 sec)

mysql> grant all privileges on *.* to zabbix@192.168.88.129 identified by'zabbix';
Query OK, 0 rows affected (0.00 sec)

上一篇:根据li标签 查找class="alcw4 alcw41"对应的值


下一篇:opencv 图片缩放