安装zabbix3.0客户端安装配置zabbix客户端centos6.9#安装rpm -ivh https://mirrors.aliyun.com/zabbix/zabbix/3.0/rhel/6/x86_64/zabbix-agent-3.0.19-1.el6.x86_64.rpm#配置sed -i.ori s#Server=127.0.0.1#Server=z...
安装zabbix3.0客户端
安装配置zabbix客户端centos6.9
#安装
rpm -ivh https://mirrors.aliyun.com/zabbix/zabbix/3.0/rhel/6/x86_64/zabbix-agent-3.0.19-1.el6.x86_64.rpm
#配置
sed -i.ori 's#Server=127.0.0.1#Server=zabbix服务的端的地址#' /etc/zabbix/zabbix_agentd.conf
# sed -i.ori 's#Server=127.0.0.1#Server=172.16.1.200#' /etc/zabbix/zabbix_agentd.conf
#启动
/etc/init.d/zabbix-agent start
安装并配置zabbix客户端centos7
#安装zabbix源、aliyu nYUM源
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
rpm -ivh http://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm
#安装zabbix客户端
yum install zabbix-agent -y
#配置
sed -i.ori 's#Server=127.0.0.1#Server=zabbix服务的端的地址#' /etc/zabbix/zabbix_agentd.conf
# sed -i.ori 's#Server=127.0.0.1#Server=172.16.1.200#' /etc/zabbix/zabbix_agentd.conf
#启动
systemctl start zabbix-agent.service
本文标题为:centos(6和7)安装zabbix客户端
基础教程推荐
- linux之conda环境安装全过程 2023-07-11
- apache和nginx结合使用 2023-09-10
- 服务器添加git钩子的步骤 2022-12-12
- Apache Hudi数据布局黑科技降低一半查询时间 2022-10-06
- nginx.conf(centos7 1.14)主配置文件修改 2023-09-23
- IIS 6 的 PHP 最佳配置方法 2022-09-01
- centos 7 安装及配置zabbix agent 2023-09-24
- 实战Nginx_取代Apache的高性能Web服务器 2023-09-29
- Apache服务器配置攻略3 2022-09-01
- linux下安装apache与php;Apache+PHP+MySQL配置攻略 2023-08-07