zoukankan      html  css  js  c++  java
  • centos6.4安装 zabbix agent

      

    1.防火墙设置 
    允许zabbix-agent的10050端口通过

     iptables -A INPUT -p tcp --dport 10050 -j ACCEPT 


    2.安装zabbix agent 软件源
    rpm -ivh http://repo.zabbix.com/zabbix/2.4/rhel/6/x86_64/zabbix-release-2.4-1.el6.noarch.rpm

    3.安装zabbix agent
    yum install zabbix-sender zabbix-agent zabbix -y

    4.
    配置zabbix-agent
    • 如果zabbix-agent在zabbix-server上,zabbix_agentd.conf 默认即可
    • 若zabbix-agent不在zabbix-server上,则修改zabbix_agentd.conf 
    • 修改server的指向和hostname

    sed -i "s/Server=127.0.0.1/Server=10.0.0.101/" /etc/zabbix/zabbix_agentd.conf

    sed -i "s/ServerActive=127.0.0.1/ServerActive=10.0.0.101/" /etc/zabbix/zabbix_agentd.conf (主动模式)

    sed -i "s/Hostname=Zabbix server/Hostname=10.0.0.105/" /etc/zabbix/zabbix_agentd.conf

    • 启动并设置开机自启
    service zabbix-agent restart
    chkconfig zabbix-agent on
  • 相关阅读:
    vim代码对齐
    在liunx中,快速查找到以前使用过的命令行
    linux文件权限与目录设置
    ASP常用代码
    存储过程
    WebService
    SNS
    浪曦博客系统
    SQL事件探查器与索引优化向导
    光盘AJAX
  • 原文地址:https://www.cnblogs.com/hixiaowei/p/8250033.html
Copyright © 2011-2022 走看看