Comments - Problem installing Mariadb on a Debian

8 months, 4 weeks ago Daniel Bartholomew

The script is not compatible with dash, the shell /usr/bin/sh is linked to by default on Debian 11. So change your execute line to:

sudo bash Maria_install.sh -s -- --os-type=debian --os-version=11 --mariadb-server-version="mariadb-10.5"

Alternatively, after downloading the script, make executable and then run it directly:

wget https://r.mariadb.com/downloads/mariadb_repo_setup
chmod +x mariab_repo_setup
sudo ./mariadb_repo_setup --os-type=debian --os-version=11 --mariadb-server-version="mariadb-10.5"
 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.