bootstrap-rocky-9/install-latest-mariadb.sh
2025-01-26 01:32:30 +02:00

14 lines
259 B
Bash
Executable File

#!/usr/bin/env bash
set -e
set -x
wget "https://r.mariadb.com/downloads/mariadb_repo_setup" -O "mariadb_repo_setup"
bash mariadb_repo_setup
dnf remove mariadb-gssapi-server mariadb-connector-c -y
dnf install MariaDB-server MariaDB-backup -y
set +e
set +x