码迷,mamicode.com
首页 > 其他好文 > 详细

zabbix agent安装与配置篇

时间:2016-11-05 23:24:49      阅读:412      评论:0      收藏:0      [点我收藏+]

标签:32位   for   name   detection   部署   pause   zabbix   style   delay   

 Zabbix监控windows部署安装

 

Zabbix agent 在windows上安装部署

(1)手工安装zabbix agent客户端

1、  下载与解压

地址: http://www.zabbix.com/downloads

解压zabbix_agents_X.X.X.win.zip

conf目录存放是agent配置文件 bin文件存放windows下32位和64位安装程序

2、  配置与安装

2.1 配置zabbix agent相关配置。

   找到conf下的配置文件 zabbix_agentd.win.conf ,修改LogFile、Server、Hostname这三个参数(其他参数可根据个人需求添加),具体配置如下:

LogFile=c:\zabbix_agentd.log  #根据个人习惯配置log存放的路径

Server=192.98.8.224  #zabbix服务器的IP地址

Hostname=f523540。#hostname的标识需要和服务器配置的一致,否则后期会出现not found hostname等错误

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

参数含义:

-c    制定配置文件所在位置

-I     是安装客户端

-s     启动客户端

-x    停止客户端

-d    卸载客户端

2.4 在"运行"输入 "services.msc",在里面找到"ZABBIXAGENT",并启动服务。

批处理具体内容如下:

:: 一键安装zabbix agent ,理论支持所有windows系统
:: 1、修改本脚本里的zabbix_server变量
:: 2、执行本脚本,自动安装zabbix agent到C盘


@Echo off
setlocal enabledelayedexpansion

:: 需要修改IP
set zabbix_server=192.168.20.211

:: 替换配置文件中的server ip
set conf_file=%~dp0\zabbix_agents.win\conf\zabbix_agentd.win.conf
for /f "delims=" %%a in (‘type "%conf_file%"‘) do (
set str=%%a
set "str=!str:127.0.0.1=%zabbix_server%!"
echo !str!>>"%conf_file%"_tmp.txt
)
move "%conf_file%" "%conf_file%"_bak.txt
move "%conf_file%"_tmp.txt "%conf_file%"

:: 32 bit or 64 bit process detection
IF "%PROCESSOR_ARCHITECTURE%%PROCESSOR_ARCHITEW6432%"=="x86" (
set _processor_architecture=32bit
goto x86
) ELSE (
set _processor_architecture=64bit
goto x64
)

:x86
xcopy "%~dp0\zabbix_agents.win\bin\win32" c:\zabbix_x86 /e /i /y
copy "%conf_file%" c:\zabbix_x86\zabbix_agentd.conf /y
sc stop "Zabbix Agent" >nul 2>nul
sc delete "Zabbix Agent" >nul 2>nul
c:\zabbix_x86\zabbix_agentd.exe -c c:\zabbix_x86\zabbix_agentd.conf -i
c:\zabbix_x86\zabbix_agentd.exe -c c:\zabbix_x86\zabbix_agentd.conf -s
goto firewall

:x64
xcopy "%~dp0\zabbix_agents_2.2.9.win\bin\win64" c:\zabbix_x64 /e /i /y
copy "%conf_file%" c:\zabbix_x64\zabbix_agentd.conf /y
sc stop "Zabbix Agent" >nul 2>nul
sc delete "Zabbix Agent" >nul 2>nul
c:\zabbix_x64\zabbix_agentd.exe -c c:\zabbix_x64\zabbix_agentd.conf -i
c:\zabbix_x64\zabbix_agentd.exe -c c:\zabbix_x64\zabbix_agentd.conf -s
goto firewall

:firewall
:: Get windows Version numbers
For /f "tokens=2 delims=[]" %%G in (‘ver‘) Do (set _version=%%G)
For /f "tokens=2,3,4 delims=. " %%G in (‘echo %_version%‘) Do (set _major=%%G& set _minor=%%H& set _build=%%I)
Echo Major version: %_major% Minor Version: %_minor%.%_build%

:: OS detection
IF "%_major%"=="5" (
IF "%_minor%"=="0" Echo OS details: Windows 2000 [%_processor_architecture%]
IF "%_minor%"=="1" Echo OS details: Windows XP [%_processor_architecture%]
IF "%_minor%"=="2" IF "%_processor_architecture%"=="32bit" Echo OS details: Windows 2003 [%_processor_architecture%]
IF "%_minor%"=="2" IF "%_processor_architecture%"=="64bit" Echo OS details: Windows 2003 or XP 64 bit [%_processor_architecture%]
:: 开启防火墙10050端口
netsh firewall delete portopening protocol=tcp port=10050
netsh firewall add portopening protocol=tcp port=10050 name=zabbix_10050 mode=enable scope=custom addresses=%zabbix_server%
) ELSE IF "%_major%"=="6" (
IF "%_minor%"=="0" Echo OS details: Windows Vista or Windows 2008 [%_processor_architecture%]
IF "%_minor%"=="1" Echo OS details: Windows 7 or Windows 2008 R2 [%_processor_architecture%]
IF "%_minor%"=="2" Echo OS details: Windows 8 or Windows Server 2012 [%_processor_architecture%]
IF "%_minor%"=="3" Echo OS details: Windows 8.1 or Windows Server 2012 R2 [%_processor_architecture%]
IF "%_minor%"=="4" Echo OS details: Windows 10 Technical Preview [%_processor_architecture%]
:: 开启防火墙10050端口
netsh advfirewall firewall delete rule name="zabbix_10050"
netsh advfirewall firewall add rule name="zabbix_10050" protocol=TCP dir=in localport=10050 action=allow remoteip=%zabbix_server%
)

pause
rd /s /q "%~dp0\zabbix_agents_2.2.9.win"
del %0

zabbix agent安装与配置篇

标签:32位   for   name   detection   部署   pause   zabbix   style   delay   

原文地址:http://www.cnblogs.com/openfly/p/zabbix.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!