zabbix windows agent

zabbix windows agent 安装和配置

  1. 安装

    1
    在官网下载windows zabbix agent客户端,解压到C盘(C:\zabbix),并在此目录下创建两个目录log(C:\zabbix\log)和conf.d(C:\zabbix\conf.d)
  2. 修改配置文件

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    C:\zabbix\conf\zabbix_agentd.win.conf

    LogFile=C:\zabbix\log\zabbix_agentd.log
    LogFileSize=20
    DebugLevel=3
    SourceIP={server_agent_ip}
    EnableRemoteCommands=1
    LogRemoteCommands=1
    Server={server_ip}
    ListenPort=10050
    StartAgents=3
    ServerActive={server_ip}:10051
    Hostname={server_agent_ip}
    HostMetadata=windows IIS SQLServer
    HostMetadataItem=system.uname
    RefreshActiveChecks=120
    BufferSend=5
    BufferSize=200
    MaxLinesPerSecond=100
    Timeout=10
    Include=C:\zabbix\conf.d/*.conf
    UnsafeUserParameters=1
  3. 启动agent

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    Ctrl+C 输入 cmd,进入dos终端:

    //进入zabbix 执行目录
    cd C:\zabbix\bin\win64\

    //将服务安装到windows服务里面
    zabbix_agentd.exe -c C:\zabbix\conf\zabbix_agentd.win.conf -i
    通过services.msc命令,找到zabbix,进行启动

    //启动服务
    zabbix_agentd.exe -c C:\zabbix\conf\zabbix_agentd.win.conf -s

    //停止服务
    zabbix_agentd.exe -c C:\zabbix\conf\zabbix_agentd.win.conf -x

    //卸载客户端
    zabbix_agentd.exe -c C:\zabbix\conf\zabbix_agentd.win.conf -d