Install and configure Zabbix Debian 12 and apache2
1. Install Zabbix repository # cd tmp # wget https://repo.zabbix.com/zabbix/7.2/release/debian/pool/main/z/zabbix-release/zabbix-release_latest_7.2+debian12_all.deb # sudo dpkg -i zabbix-release_latest_7.2+debian12_all.deb # sudo apt update 2. Install Zabbix server, frontend, agent # sudo apt install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-sql-scripts zabbix-agent 3. Create initial database # mysql -uroot -p ให้ใส่ พาสเวิร์ด root ของ mysql mysql> create database zabbix character set utf8mb4 collate utf8mb4_bin; mysql> create user zabbix@localhost identified by 'password'; mysql> grant all privileges on zabbix.* to zabbix@localhost; mysql> set global log_bin_trust_functi...