Zabbix agent 在windows上安裝部署html
一、 下載與解壓windows
地址: http://www.zabbix.com/downloads/2.4.0/zabbix_agents_2.4.0.win.zip日誌
解壓zabbix_agents_2.4.0.win.zipserver
conf目錄存放是agent配置文件 bin文件存放windows下32位和64位安裝程序htm
二、 配置與安裝blog
2.1 配置zabbix agent相關配置。ip
找到conf下的配置文件 zabbix_agentd.win.conf ,修改LogFile、Server、Hostname這三個參數。具體配置以下:文檔
LogFile=c:\zabbix_agentd.log部署
Server=192.98.8.224get
Hostname=f523540。
ServerActive=192.98.8.224 #zabbix server地址
其中logfile是zabbix日誌存放地址。Server 是zabbix服務端ip地址。Hostname是本機機器名。
2.2 安裝agent
在windows控制檯下執行如下命令:
E:\zabbix\bin\win32\zabbix_agentd.exe -c E:\zabbix\conf\zabbix_agentd.win.conf –i
2.3 啓動agent客戶端
啓動命令以下:
E:\zabbix\bin\win32\zabbix_agentd.exe -c E:\zabbix\conf\zabbix_agentd.win.conf –s
啓動的程序將以控制檯的形式開啓。查看啓動的日誌:
8732:20140912:162313.203 Starting Zabbix Agent [f523540]. Zabbix 2.4.0 (revision 48940).
8732:20140912:162313.203 using configuration file: E:\zabbix\conf\zabbix_agentd.win.conf
8732:20140912:162315.500 agent #0 started [main process]
8820:20140912:162315.500 agent #1 started [collector]
8392:20140912:162315.500 agent #2 started [listener #1]
5552:20140912:162315.500 agent #3 started [listener #2]
9712:20140912:162315.500 agent #4 started [listener #3]
1096:20140912:162315.500 agent #5 started [active checks #1]
1096:20140912:162316.500 active check configuration update from [127.0.0.1:10051] started to fail (cannot connect to [[127.0.0.1]:10051]: [0x0000274D] 因爲目標機器積極拒絕,沒法鏈接。)
9368:20140912:163029.578 Starting Zabbix Agent [f523540]. Zabbix 2.4.0 (revision 48940).
9368:20140912:163029.578 using configuration file: E:\zabbix\conf\zabbix_agentd.win.conf
根據日誌 發現有個127.0.0.1:10051沒法鏈接,根據猜測,定是agent鏈接zabbix server,因此配置少了一個經查是ServerActive沒有配置。
部署安裝過程參考文檔:http://files.cnblogs.com/likehua/Zabbix_agent%E5%9C%A8windows%E4%B8%8A%E5%AE%89%E8%A3%85%E9%83%A8%E7%BD%B2.rar
文章轉載請註明出處:http://www.cnblogs.com/likehua/p/3968689.html