美文网首页
源码编译安装zabbix-agent(centos6)

源码编译安装zabbix-agent(centos6)

作者: 橡皮24 | 来源:发表于2018-04-26 22:31 被阅读108次

    环境介绍:

      由于有些监控端是不可以连接网络的,但是我们还要监控它,这时候就不试用yum安装了。所以我们用源码编译安装,使用参数--enable-agent 的方式安装 Agent。
    系统环境:centos6.5
    Zabbix-agnet版本:zabbix-agent3.2.11
    官方下载地址: https://www.zabbix.com/download_sources
    百度云下载地址:链接:https://pan.baidu.com/s/1yNBJUXWddD5XcG7rKRfT6w 密码:88tl

    一、下载源码包(我用的是3.2版本)

    下载源码包

    二、安装

    1. 创建用户(用户不能登录)
    [root@localhost ~]# groupadd -g 201 zabbix 
    [root@localhost ~]# useradd -g zabbix -u 201 -s /sbin/nologin zabbix
    
    2. 解压安装包
    [root@localhost ~]# tar zxf zabbix-3.2.11.tar.gz
    
    [root@localhost ~]# cd zabbix-3.2.11/
    
    3. 编译安装
    [root@localhost zabbix-3.2.11]# ./configure --prefix=/usr/local/zabbix_agent --enable-agent ; make;make install
    

    三、 配置 agent

    1. 复制启动脚本
    [root@localhost ~]#cp /root/zabbix-3.2.11/misc/init.d/fedora/core/zabbix_agentd /etc/init.d/
    
    2. 创建软连接或者修改脚本(一种皆可)
    ① 创建软连接
    [root@localhost zabbix-3.2.11]# ln -sv /usr/local/zabbix_agent/sbin/* /usr/local/sbin/
    
    [root@localhost zabbix-3.2.11]# ln -sv /usr/local/zabbix_agent/bin/* /usr/local/bin/
    
    ② 修改脚本
    [root@localhost ~]# vim /etc/init.d/zabbix_agentd
    
    BASEDIR=/usr/local/zabbix_agent #根据自己的路径写
    
    3. 修改 agent 配置文件
    [root@localhost ~]# grep -vP '^#|^$' /usr/local/zabbix_agent/etc/zabbix_agentd.conf # 调整配置文件
    
    LogFile=/tmp/zabbix_agentd.log
    
    Server=172.19.20.146        # Zabbix Server IP ( 被动模式,客户端被动 )
    
    ServerActive=172.19.20.146 #主动模式,如果使用也填 Zabbix Server IP ,不使用可以注释掉
    
    Hostname=172.19.20.126 # 本身 IP ,Zabbix Server 添加主机时需要使用,不一定是 IP
    
    Include=/usr/local/etc/zabbix_agentd.conf.d/*.conf #加载自定义的监控配置文件(如果没有得创建此目录)
    
    UnsafeUserParameters=1 # 允许自定义 Key
    
    4. 启动、设置自启动
    [root@localhost ~]# vi /etc/rc.d/init.d/zabbix_agentd
    
    #chkconfig: 2345 10 90 ##修改此处
    
    [root@localhost ~]#  chkconfig --add zabbix_agentd
    
    [root@localhost ~]# chkconfig --list zabbix_agentd
    
     zabbix_agentd 0:off1:off2:on3:on4:on5:on6:off
    
    [root@localhost ~]# chkconfig zabbix_agentd on
    
    [root@localhost ~]# service zabbix_agentd start
    

    四、 配置防火墙

    [root@localhost ~]# iptables -A INPUT -s 'Zabbix Server IP' -p tcp --dport 10050 -j ACCEPT  ##由于是被动模式,所以要开启端口
    
    [root@localhost ~]#service iptables save
    
    #保存防火墙规则
    

    相关文章

      网友评论

          本文标题:源码编译安装zabbix-agent(centos6)

          本文链接:https://www.haomeiwen.com/subject/gkkvlftx.html