Zabbix 7.2 installation on Rocky Linux 9.5

nano /etc/yum.repos.d/epel.repo
[epel]

excludepkgs=zabbix*

rpm -Uvh https://repo.zabbix.com/zabbix/7.2/release/rocky/9/noarch/zabbix-release-latest-7.2.el9.noarch.rpm
dnf clean all
dnf install zabbix-server-mysql zabbix-web-mysql zabbix-apache-conf zabbix-sql-scripts zabbix-selinux-policy zabbix-agent

hostnamectl set-hostname SRV-Zabbix

systemctl status chronyd.service
sudo firewall-cmd –add-service=ntp –permanent
sudo firewall-cmd –reload
nano /etc/chrony.conf
systemctl is-active chronyd.service
systemctl restart chronyd.service
timedatectl list-timezones | grep Europe/
timedatectl set-timezone Europe/Warsaw
chronyc sources
timedatectl

systemctl enable –now cockpit.socket

dnf module reset -y php

#Checking which repository contain PHP v8.2
dnf module list php
#if AppStream:
dnf module enable php:8.2 -y
#else if Remi
dnf module enable php:remi-8.2 -y

dnf install php php-cli php-common php-fpm vim mc wget

dnf install httpd httpd-tools httpd-manual
systemctl start httpd
systemctl enable –now httpd

dnf install mariadb-server -y
systemctl enable –now mariadb
mysql_secure_installation
mysql -u root -p

zabbix01
mysql> create database zabbix character set utf8mb4 collate utf8mb4_bin;
mysql> create user zabbix@localhost identified by ‚zabbix01’;
mysql> grant all privileges on zabbix.* to zabbix@localhost;
mysql> set global log_bin_trust_function_creators = 1;
mysql> quit;

#ewentualna zmiana hasła dla użytkownika zabbix
ALTER USER zabbix@localhost IDENTIFIED BY ‚zabbix01’;

zcat /usr/share/zabbix/sql-scripts/mysql/server.sql.gz | mysql –default-character-set=utf8mb4 -uzabbix -p zabbix

mysql -u root -p
zabbix01
mysql> set global log_bin_trust_function_creators = 0;
mysql> quit;

nano /etc/zabbix/zabbix_server.conf
DBPassword=zabbix01

systemctl restart zabbix-server zabbix-agent httpd php-fpm
systemctl enable zabbix-server zabbix-agent httpd php-fpm

default credentials to Zabbix interface:
Admin
zabbix