自学内容网 自学内容网

Zabbix 部署----安装Zabbix(业务主机)

目录

1、另外准备一台虚拟机(192.xx.xx.20)

设置主机名

关闭防火墙、selinux

准备zabbix-repo

安装zabbix-agent

配置主服务器地址

启动zabbix-agent:10050


1、另外准备一台虚拟机(192.xx.xx.20)

设置主机名

hostname  web1

关闭防火墙、selinux

systemctl stop firewalld.service
systemctl disable firewalld.service

setenforce 0

准备zabbix-repo

编辑文件

vim /etc/yum.repos.d/zabbix.repo

粘贴以下内容

[zabbix]
name=alibaba zabbix
baseurl=https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/
gpgcheck=0
enabled=1

[zabbix2]
name=alibaba zabbix frontend
baseurl=https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/frontend/
gpgcheck=0
enabled=1

安装zabbix-agent

yum -y install zabbix-agent

配置主服务器地址

vim /etc/zabbix/zabbix_agentd.conf

谁从我这里采集数据。可以被多台主机监控。

启动zabbix-agent:10050

systemctl start zabbix-agent

查看你系统上使用了 10050 端口的网络连接的状态

ss -anlp |grep :10050


原文地址:https://blog.csdn.net/qq_73990369/article/details/142367534

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!