Add Zabbix Agent

  1. 添加第三方源进行安装
    CentOS/RHEL 7:
    # rpm -Uvh http://repo.zabbix.com/zabbix/2.2/rhel/7/x86_64/zabbix-release-2.2-1.el7.noarch.rpm
    CentOS/RHEL 6:
    # rpm -Uvh http://repo.zabbix.com/zabbix/2.2/rhel/6/x86_64/zabbix-release-2.2-1.el6.noarch.rpm
    CentOS/RHEL 5:
    # rpm -Uvh http://repo.zabbix.com/zabbix/2.2/rhel/5/x86_64/zabbix-release-2.2-1.el5.noarch.rpm
  2. 安装Zabbix Agent
    yum -y install zabbix zabbix-agent
  3. 修改zabbix Agent配置
    vi /etc/zabbix/zabbix_agentd.conf
    Server=127.0.0.1
    ServerActive=127.0.0.1
    Hostname= server 1
    Server 和 ServerActive 都指定 zabbixserver 的 IP 地址
    客户机需开启10050端口
  4. 重启zabbix agent 服务
    service zabbix-agent restart
时间: 2024-08-07 10:00:04

Add Zabbix Agent的相关文章

zabbix agent安装与配置篇

 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_age

zabbix agent installation for windows

Table of Contents 1, Download zabbix_agents_3.0.0.win.zip. 0 2, Uncompress ZABBIX zip file. 0 3, Enter in zabbix folder and Create a new file named zabbix_agentd.log. 0 4, Enter in conf folder and edit zabbix_agentd.win.conf0 5, copy the zabbix folde

自动安装Zabbix Agent的linux 脚本

安装Zabbix代理的脚本: #!/bin/bash #the zabbix path you want to install PREFIX="/usr/local/zabbix"  ConfigFile="/etc/zabbix/zabbix_agentd.conf" # List of comma delimited IP addresses (or hostnames) of Zabbix servers. Server="serverName&qu

zabbix Agent安装(二)

一.在Linux上安装zabbix Agent 1.创建组和用户 groupadd zabbix useradd -g zabbix zabbix 2.安装 yum install gcc gcc-c++ tar zabbix-2.4.7.tar.gz cd zabbix-2.4.7 ./configure --enable-agent make install 3.修改配置文件 #将其中的Server=127.0.0.1中的IP改写为Zabbix Server的IP cd /usr/local

Windows系统一键安装zabbix agent

下载附件里的zabbix_agents_auto_installer.win.rar,解压后修改AutoInstall.bat里的zabbix_server的IP,以管理员身份运行AutoInstall.bat,zabbix agent会注册为服务并启动.32位系统会安装在c:\zabbix_x86,64位会安装在c:\zabbix_x64. 下面献上AutoInstall.bat代码,供参考: :: 一键安装zabbix agent 2.2.9,理论支持所有windows系统 :: 有BUG请

zabbix agent在windows环境安装

首先在下载windows版zabbix-agent: http://www.zabbix.com/downloads/2.0.18/zabbix_agents_2.0.18.win.zip 下载后解压zabbix_agents压缩包,里面有两个文件夹,分别是bin文件夹和conf文件夹.bin文件夹里一个是win32 zabbix_agentd,一个是win64zabbix_agentd,生产环境都是64位,这里选择win64 在C盘创建一个文件夹,然后把win64拷贝过去,再将zabbix-a

部署zabbix监控mysql (二) 安装zabbix agent

ZabbixAgent 安装配置 (1)下载安装zabbixagent 软件 # wget http://iweb.dl.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/2.4.8/zabbix-2.4.8.tar.gz [[email protected]~]# tar xf zabbix-2.4.8.tar.gz [[email protected]~]# cd zabbix-2.4.8 [[email protected]]#

How to Install Zabbix Agent on Windows System

Zabbix Agent is installed on remote systems needs to monitor through Zabbix server. The Zabbix agent collects resource utilization and applications data on client system and provide such information to zabbix server on their requests. This article wi

Zabbix Agent 自动、主动注册

简述: 今天来研究一下 Zabbix 的主动注册功能. 当你有十台机器需要监控时,你手动去添加是没有问题的.但是当你有五十台.上百台或更多服务器要监控时,你会怎么做 ? Active Agent Auto-Registration 主要用于 Agent 主动且自动向 Server 注册.很好的解决了 Agent IP.系统.配置不统一等问题. 非常适合现在的云环境中. 一.安装 Agent shell > cd /scripts ; vim auto_install_zabbix_agent.s