Zabbix监控系统:zabbix服务部署+基于Proxy分布式部署+zabbix主动与被动监控模式
Zabbix 监控系统的部署和分布式部署可以通过以下步骤实现:
- 安装 Zabbix Server:
# 安装 Zabbix 仓库
rpm -Uvh https://repo.zabbix.com/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm
yum clean all
# 安装 Zabbix server
yum install zabbix-server-mysql
# 配置 Zabbix server
vim /etc/zabbix/zabbix_server.conf
...
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=your_password
...
# 启动并设置开机启动 Zabbix server
systemctl start zabbix-server
systemctl enable zabbix-server
- 安装 Zabbix Proxy:
# 安装 Zabbix 仓库
rpm -Uvh https://repo.zabbix.com/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm
yum clean all
# 安装 Zabbix proxy
yum install zabbix-proxy-mysql
# 配置 Zabbix proxy
vim /etc/zabbix/zabbix_proxy.conf
...
ProxyLocalBuffer=0
ProxyOfflineBuffer=1
Hostname=Zabbix-Proxy
DBHost=localhost
DBName=zabbix_proxy
DBUser=zabbix_proxy
DBPassword=your_password
...
# 启动并设置开机启动 Zabbix proxy
systemctl start zabbix-proxy
systemctl enable zabbix-proxy
- 配置 Agent 使其与 Proxy 通信:
# 编辑 Zabbix agent 配置文件
vim /etc/zabbix/zabbix_agentd.conf
...
Server=Zabbix-Proxy-IP
ServerActive=Zabbix-Proxy-IP
Hostname=Your-Hostname
...
# 启动并设置开机启动 Zabbix agent
systemctl start zabbix-agent
systemctl enable zabbix-agent
主动监控配置示例:
# 在 Zabbix server 或 proxy 的配置文件中添加主动监控的间隔时间
vim /etc/zabbix/zabbix_server.conf 或 /etc/zabbix/zabbix_proxy.conf
...
StartPollersUnreachable=30
StartPingers=10
...
# 在 Agent 配置文件中设置 Server 和 Hostname
vim /etc/zabbix/zabbix_agentd.conf
...
Server=Zabbix-Server-IP 或 Zabbix-Proxy-IP
ServerActive=Zabbix-Server-IP 或 Zabbix-Proxy-IP
Hostname=Your-Hostname
...
被动监控配置示例:
# 在 Zabbix server 或 proxy 的配置文件中设置被动监控的参数
vim /etc/zabbix/zabbix_server.conf 或 /etc/zabbix/zabbix_proxy.conf
...
StartPollers=30
...
# 在 Agent 配置文件中设置 Server 和 Hostname
vim /etc/zabbix/zabbix_agentd.conf
...
Server=Zabbix-Server-IP 或 Zabbix-Proxy-IP
ServerActive=Zabbix-Server-IP 或 Zabbix-Proxy-IP
Hostname=Your-Hostname
...
确保防火墙和网络设置允许 Zabbix 服务器、代理和代理之间的通信。
评论已关闭