[RHEL8] Zabbix Server Install
1. yum update and SELINUX config dnf update -y sudo sed -i --follow-symlinks 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/sysconfig/selinux reboot 2. LAMP Stack Install (Linux Apache MySQL PHP) and Service Enable dnf install -y httpd mariadb-server php php-cli php-common php-mbstring php-mysqlnd php-xml php-bcmath php-devel php-pear php-gd systemctl enable httpd --now systemctl enable mariadb -..