1.机器环境准备、2台zabbix客户端
2.注意时间正确
yum install ntpdate -y
ntpdate -u ntp.aliyun.com
3.时区的统一配置
mv /etc/localtime{,.bak}
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
4.提前配置好zabbix的yum源,
rpm -Uvh https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm
sed -i ‘s#http://repo.zabbix.com#https://mirrors.aliyun.com/zabbix#' /etc/yum.repos.d/zabbix.repo
yum install -y zabbix-agent2
5.查看配置文件
vi /etc/zabbix/zabbix_agent2.conf
6.启动命令
ll /usr/sbin/zabbix_agent2
7.启动客户端
systemctl enable --now zabbix-agent2
netstat -tnlp | grep zabbix
8.修改agent2配置文件
vi /etc/zabbix/zabbix_agent2.conf
Server=服务器端ip
ServerActive=服务器端ip
Hostname=Hostname
9.重启zabbix-agent2
10.在服务器端上通过命令,主动获取数据
yum install -y zabbix-get
11.命令检查服务器是否连接上客户端
zabbix_get -s 'ip' -p 端口 -k 'system.hostname'