您的位置:首页 > 运维架构 > Linux

centos7 安装zabbix-agent

2015-09-03 19:27 513 查看

1、操作系统版本

安装详情

说明详情
操作系统版本Centos 7.0
zabbix-agent版本2.4.6
安装方式rpm
端口tcp/10050
服务名称zabbix-agent
配置文件/etc/zabbix/zabbix_agentd.conf
log日志/var/log/zabbix/zabbix_agentd.log
关闭selinux

sed -i "s/SELINUX=enforcing/SELINUX=disabled/" /etc/selinux/config
setenforce 0


防火墙设置

允许zabbix-agent的10050端口通过

firewall-cmd --permanent --add-port=10050/tcp
firewall-cmd --reload


2、安装zabbix 软件源

rpm -ivh http://repo.zabbix.com/zabbix/2.4/rhel/7/x86_64/zabbix-release-2.4-1.el7.noarch.rpm[/code] 

3、安装zabbix-agent

yum install zabbix-sender zabbix-agent zabbix


查看已安装的zabbix-agent版本



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


启动并设置开机自启

systemctl restart zabbix-agent.service
systemctl enable zabbix-agent.service


5、zabbix界面添加agent主机

Host——create Host





链接模板,开始监控

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: