zoukankan      html  css  js  c++  java
  • zabbix3.0、4.0 agent安装配置

    uname -a

    rpm -qa |grep zabbix

    ps -ef |grep zabbix

    yum -y install vim
    setenforce 0

    firewall-cmd --zone=public --add-port=10151/tcp --permanent
    firewall-cmd --zone=public --add-port=10150/tcp --permanent

    #rpm -e --nodeps zabbix-release-3.0-1.el7.noarch

    rpm -Uvh https://repo.zabbix.com/zabbix/4.0/rhel/6/x86_64/zabbix-release-4.0-1.el6.noarch.rpm

    #centos7# rpm -Uvh https://repo.zabbix.com/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-1.el7.noarch.rpm

    yum install zabbix-agent -y

    sed -i 's/Server=127.0.0.1/Server=10.0.0.211/' /etc/zabbix/zabbix_agentd.conf

    sed -i 's/ServerActive=127.0.0.1/ServerActive=10.0.0.211/' /etc/zabbix/zabbix_agentd.conf

    sed -i 's/# ListenPort=10050/ListenPort=10150/' /etc/zabbix/zabbix_agentd.conf

    grep -E "(Port)" /etc/zabbix/zabbix_agentd.conf

    grep -E "(Server)" /etc/zabbix/zabbix_agentd.conf

    service zabbix-agent start

    chkconfig --level 2345 zabbix-agent on

    #systemctl enable zabbix-agent
    #systemctl start zabbix-agent


    zabbix3.0 agent安装配置
    wget http://repo.zabbix.com/zabbix/3.0/rhel/6/x86_64/zabbix-agent-3.0.0-2.el6.x86_64.rpm

    yum -y install zabbix-agent-3.0.0-2.el6.x86_64.rpm

    sed -i 's/Server=127.0.0.1/Server=10.0.1.182/' /etc/zabbix/zabbix_agentd.conf
    sed -i 's/ServerActive=127.0.0.1/ServerActive=10.0.1.250:10051/' /etc/zabbix/zabbix_agentd.conf

    grep "10.0.1.250" /etc/zabbix/zabbix_agentd.conf
    grep "10.0.1.250:10051" /etc/zabbix/zabbix_agentd.conf

    service zabbix-agent restart

    chkconfig --level 2345 zabbix-agent on

    netstat -anpt |grep 10050

    service iptables status

    ######################下面是10050端口占用了操作
    sed -i 's/# ListenPort=10050/ListenPort=10052/' /etc/zabbix/zabbix_agentd.conf
    grep "10052" /etc/zabbix/zabbix_agentd.conf
    service zabbix-agent restart
    netstat -anpt |grep 10052

    魅力男神
  • 相关阅读:
    基于redis的分布式锁实现方案
    nginx 配置文件详解
    Linux 下安装Nginx
    Nginx简介
    Spring Boot 整合 Spring Security 示例实现前后分离权限注解 + JWT 登录认证
    idea2020.1版本下载安装与激活
    Cloud Alibaba --Nacos
    spring Cloud Alibaba 简介
    Eclipse中SVN更改连接用户
    Win7(64bit)搭建SVN
  • 原文地址:https://www.cnblogs.com/capable/p/10776301.html
Copyright © 2011-2022 走看看