https://www.zabbix.com/download
wget https://repo.zabbix.com/zabbix/7.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_latest_7.0+ubuntu24.04_all.deb
sudo gdebi zabbix-release_latest_7.0+ubuntu24.04_all.deb
sudo apt update; sudo apt upgrade -y
sudo apt install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-sql-scripts zabbix-agent
sudo systemctl start zabbix-server
sudo systemctl enable zabbix-server
sudo systemctl status zabbix-server
sudo systemctl start zabbix-agent
sudo systemctl enable zabbix-agent
sudo systemctl status zabbix-agent
sudo apt install mariadb-server
sudo systemctl start mariadb-server
sudo systemctl enable mariadb-server
sudo systemctl status mariadb-server
# mariadb -u blessed -p
password
MariaDB> create database zabbix character set utf8mb4 collate utf8mb4_bin;
MariaDB> create user zabbix@localhost identified by 'password';
MariaDB> grant all privileges on zabbix.* to zabbix@localhost;
MariaDB> set global log_bin_trust_function_creators = 1;
MariaDB> quit;
zcat /usr/share/zabbix-sql-scripts/mysql/server.sql.gz | mariadb --default-character-set=utf8mb4 -uzabbix -p zabbix
# mariadb -u blessed -p
password
MariaDB> set global log_bin_trust_function_creators = 0;
MariaDB> quit;
sudo nvim /etc/zabbix/zabbix_server.conf
DBPassword=password
sudo systemctl restart zabbix-server zabbix-agent apache2
http://host/zabbix
panel web credentials:
- Admin
- zabbix

Uh oh!
There was an error while loading. Please reload this page.