Zabbix Proxy
In Zabbix, a proxy is an intermediary server that collects monitoring data from monitored devices (hosts) and sends it to the Zabbix server. The proxy helps distribute the load, especially in large environments, and can also be used to monitor devices in remote locations where a direct connection to the Zabbix server is not feasible.
Installating Zabbix Proxy
We can follow the documentation on the official zabbix page to install the lastest zabbix proxy packages and intrgrate it with zabbix sever.
Once zabbix proxy is installed we will make the following configuration changes :
sudo nano /etc/zabbix/zabbix_proxy.conf
Note : Proxy has its own database server which is configured while installation.
We will change the following parameters :
# Proxy Mode (0=Active 1=Passive)
ProxyMode = 0
# Connectivity
Server = <zabbix_server_ip>
Server Active = <zabbix_server_ip>
ListenPort = 10051 # CHANGE THIS IF MULTIPLE PROXY
# Hostname
Hostname = <hostname>
# DB Configuration
DBHost = <database_ip>
DBName = <database_name>
DBUser = <database_user>
DBPassword = <database_password>
Once done we will restart the zabbix proxies and add the zabbix proxies on the zabbix server dashboard.
sudo systemctl enable zabbix-proxy
sudo systemctl start zabbix-proxy
On the Zabbix dashboard we will add the proxies inside Administration > Proxies
on the zabbix dashboard.

After some time the proxies will enabled and start getting data throught the proxy.
Proxy Groups
Once proxies are deployed we can add them into groups which will act as the HA and load balancer for the zabbix hosts.
Last updated