EP.118-Install Zabbix 6.2 on Centos 8 STREAM

preview_player
Показать описание
EP.118-Install Zabbix 6.2 on Centos 8 STREAM
Рекомендации по теме
Комментарии
Автор

Thanks. Installation with this video is easy and fast.

gabrielknight
Автор

Zabbix ติงตั้งบน windows server ได้ไหมครับ

bounseysinnavong
Автор

//close filewall
#hostnamectl set-hostname zabbix-server1
#sudo systemctl disable firewalld

#sudo systemctl status firewalld

//Checking the SELinux Mode
#sestatus
#nano /etc/selinux/config
เปลี่ยนค่าตามนี้
SELINUX=disabled



#sudo shutdown -r now

//verrify
#sestatus
//***config server ***

//Install Zabbix repository

#sudo dnf clean all


//install php 7.4
#sudo dnf module switch-to php:7.4



//nstall Zabbix server, frontend, agent
#dnf install zabbix-server-mysql zabbix-web-mysql zabbix-apache-conf zabbix-sql-scripts zabbix-selinux-policy zabbix-agent

//Create initial database

Must be at least 10.05.00.

#sudo bash mariadb_repo_setup

#
#sudo dnf install boost-program-options -y
#sudo dnf module reset mariadb -y
#sudo yum install MariaDB-server MariaDB-client MariaDB-backup
#sudo systemctl enable --now mariadb
#rpm -qi MariaDB-server
#sudo systemctl status mariadb


//Secure MariaDB Database Server
#sudo mariadb-secure-installation

#sudo mysql -uroot -p

#create database zabbix character set utf8mb4 collate utf8mb4_bin;
#FLUSH PRIVILEGES;
#set global = 1;
#quit;




//On Zabbix server host import initial schema and data. You will be prompted to enter your newly created password.

#sudo zcat | mysql -uzabbix -p zabbix

ใส่ password =password

#sudo mysql -uroot -p
#set global = 0;
#quit;

//edit the Zabbix server confiuration
#sudo nano


DBPassword=password line number=129




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


//test php
# echo "<?php phpinfo();?>" > /var/www/html/phpinfo.php

itkconfig