Code in this video_How to Install and Configure Zabbix Proxy Server on Ubuntu / Debian
📌 Replace the highlighted orange section with your information
Link 👉 https://www.zabbix.com/download
sudo apt install zabbix-proxy-mysql zabbix-sql-scripts -y
CREATE DATABASE Your-Database-Name character set utf8mb4 collate utf8mb4_bin;
CREATE USER Your-Database-User@localhost identified by 'Your-Database-Password';
GRANT ALL PRIVILEGES on Your-Database-Name.* to Your-Database-User@localhost;
SET GLOBAL log_bin_trust_function_creators = 1;
cat /usr/share/zabbix-sql-scripts/mysql/proxy.sql | mysql --default-character-set=utf8mb4 -uYour-Database-User -p Your-Database-Name
SET GLOBAL log_bin_trust_function_creators = 0;