Install MariaDB on RHEL 9
Step 1 – Install and secure
dnf install -y mariadb-server
systemctl enable --now mariadb
mysql_secure_installation
Step 2 – Create database and user
CREATE DATABASE appdb CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
CREATE USER 'appuser'@'localhost' IDENTIFIED...