https://radnet-digital.id/
IP SERVER : 192.168.56.103/24
Langkah" Instalasi Zabbix di Debian 13 :
1. Update dan Upgrade dan ganti hostname
- apt update && apt -y upgrade- apt install -y apt-transport-https lsb-release ca-certificates
- vi /etc/hosts
10.66.10.12 zabbix
2. Install PHP Package dan Zabbix 7.0
- apt update && apt -y upgrade
- apt install -y apt-transport-https lsb-release ca-certificates
- sudo apt install php php-cli php-fpm php-mysql php-zip php-gd php-mbstring php-curl php-xml php-bcmath -y
- apt install -y php php-mysql php-common php-cli php-common php-json php-readline php-mbstring php-gd php-zip php-curl
- nano /var/www/html/info.php
Insert php info code into info.php file
<?php phpinfo(); ?>
- Akses di browser : http://192.168.56.103/info.php
3. Install Database Server (Masuk ke web zabbix)
ikuti langkah bawahnya :
- Install Zabbix Repository :#wget https://repo.zabbix.com/zabbix/7.4/release/debian/pool/main/z/zabbix-release/zabbix-release_latest_7.4+debian13_all.deb
# dpkg -i zabbix-release_latest_7.4+debian13_all.deb
# apt update
- Install Zabbix server, frontend, agent :
# apt install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-sql-scripts zabbix-agent- Create Initial Database :# mysql -uroot -p
password
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_function_creators = 1;
mysql> quit;# zcat /usr/share/zabbix/sql-scripts/mysql/server.sql.gz | mysql --default-character-set=utf8mb4 -uzabbix -p zabbix
- Disable log_bin_trust_function_creators# mysql -uroot -p
password
mysql> set global log_bin_trust_function_creators = 0;
mysql> quit;
- Edit file /etc/zabbix/zabbix_server.confDBPassword = kiranakd123
- Start Zabbix server and agent processes
# systemctl restart zabbix-server zabbix-agent apache2
# systemctl enable zabbix-server zabbix-agent apache2
# systemctl enable zabbix-server zabbix-agent apache2
- Access Web : 192.168.56.103/zabbix
KONFIGURASI ZABBIX 7.4
1. Klik next step sampai berada di step ini, isi seperti ini :
- port : 3306
- databasename : zebbix
- pw : kiranakd123
- username : kiranakd
-tidak usah di centang
- username : Admin
- Password : zabbix
Tutorial yang saya buat : https://docs.google.com/document/d/1WYQu-W_8NZ99DE-PCRPGf6AnDokZDsrrr3CPHEE-eIc/edit?usp=sharing

Tidak ada komentar:
Posting Komentar