MariaDB ist ein Fork der MySQL-Datenbank und wird als Open-Source-Lösung hauptsächlich unter der GPL-Lizenz entwickelt. Es ist ein binärer Drop-in-Ersatz von MySQL, da es dieselbe Codebasis wie MySQL 5.5 und spätere Versionen verwendet.
Die MariaDB-Datenbank ist eine kostenlose Alternative zu MySQL, und die meisten Verbesserungen zielen speziell auf Hochverfügbarkeit, Skalierbarkeit und Leistung in datenintensiven, geschäftskritischen Anwendungen ab. Es kann auf GNU/Linux, FreeBSD, Solaris, Mac OS X, Windows und vielen anderen Betriebssystemen ausgeführt werden.
In diesem Beitrag werden wir sehen, wie MariaDB unter Debian 10 installiert wird.
Installieren Sie MariaDB 10.x auf Debian 11
Sie können MariaDB-Pakete für Debian 11 auf zwei Arten erhalten.
- MariaDB-Spiegel (MariaDB v10.6)
- Debian-Repository (MariaDB v10.5)
Installieren Sie MariaDB vom offiziellen MariaDB-Mirror
Aktualisieren Sie den Repository-Index und installieren Sie die erforderlichen Pakete.
sudo apt update sudo apt install -y software-properties-common dirmngr apt-transport-https wget curl
Signaturschlüssel zu Ihrem System hinzufügen.
curl -fsSL https://mariadb.org/mariadb_release_signing_key.asc | sudo gpg --dearmor -o /usr/share/keyrings/mariadb-keyring.gpg
MariaDB Foundation bietet ein Repository für Debian, um MariaDB einfach zu installieren. Sie können einen beliebigen Download-Mirror von der MariaDB-Download-Seite auswählen, um das Repository auf Ihrem System einzurichten.
Fügen Sie das MariaDB-Repository mit dem folgenden Befehl hinzu.
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/mariadb-keyring.gpg] http://nyc2.mirrors.digitalocean.com/mariadb/repo/10.6/debian bullseye main' | sudo tee /etc/apt/sources.list.d/mariadb.list
Installieren Sie den MariaDB-Server und -Client mit dem folgenden Befehl.
sudo apt update sudo apt install -y mariadb-server mariadb-client
Installieren Sie MariaDB aus dem Debian-Repository
Die Installation von MariaDB aus dem Debian-Repository ist unkompliziert. Aber es kann eine etwas alte Version von MariaDB haben.
sudo apt update sudo apt install -y mariadb-server mariadb-client
Sichere MariaDB-Installation
Die mysql_secure_installation
Der Befehl sichert die Installation von MariaDB mit Hilfe der bereitgestellten Fragen, wie z. B. DB-Root-Passwort, Root-Remote-Anmeldung verwalten, anonyme Benutzer entfernen und Testdatenbank und Zugriff darauf entfernen.
Dieser Befehl wurde in Version 5.0.3-beta eingeführt und ist hilfreich, wenn Sie einen neuen Server konfigurieren oder Änderungen an einem vorhandenen MariaDB-Datenbankserver vornehmen.
sudo mysql_secure_installation
Ausgabe:
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MariaDB to secure it, we'll need the current password for the root user. If you've just installed MariaDB, and haven't set the root password yet, you should just press enter here. Enter current password for root (enter for none): << No Password - Press Enter OK, successfully used password, moving on... Setting the root password or using the unix_socket ensures that nobody can log into the MariaDB root user without the proper authorisation. You already have your root account protected, so you can safely answer 'n'. Switch to unix_socket authentication [Y/n] N << Disabling Unix Socket login and enabling password Login ... skipping. You already have your root account protected, so you can safely answer 'n'. Change the root password? [Y/n] Y << Change MariaDB root password New password: << Enter Password Re-enter new password: << Re-Enter Password Password updated successfully! Reloading privilege tables.. ... Success! By default, a MariaDB installation has an anonymous user, allowing anyone to log into MariaDB without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? [Y/n] Y << Remove Anonymous users ... Success! Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] Y << Disallow root login remotely ... Success! By default, MariaDB comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? [Y/n] Y << Remove test database - Dropping test database... ... Success! - Removing privileges on test database... ... Success! Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? [Y/n] Y << Reload privilege ... Success! Cleaning up... All done! If you've completed all of the above steps, your MariaDB installation should now be secure. Thanks for using MariaDB!
Zugriff auf MariaDB
Melden Sie sich beim MariaDB-Server an.
mysql -u root -pPasswort erforderlich
Ausgabe:
Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 53 Server version: 10.6.4-MariaDB-1:10.6.4+maria~bullseye mariadb.org binary distribution Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]>
Schlussfolgerung
Das ist alles. Ich hoffe, Sie haben gelernt, wie man MariaDB unter Debian 11 installiert. Außerdem können Sie phpMyAdmin installieren, um MariaDB über die Weboberfläche zu verwalten.