GNU/Linux >> Linux Esercitazione >  >> Debian

Come installare MariaDB 10.x su Debian 11

MariaDB è un fork del database MySQL ed è sviluppato come soluzione open source, principalmente con licenza GPL. È una sostituzione binaria drop-in di MySQL perché condivide la stessa base di codice con MySQL 5.5 e versioni successive.

Il database MariaDB è un'alternativa gratuita a MySQL e la maggior parte dei miglioramenti sono specificamente mirati all'elevata disponibilità, scalabilità e prestazioni in applicazioni ad alta intensità di dati e business-critical. Può funzionare su GNU/Linux, FreeBSD, Solaris, Mac OS X, Windows e molti altri sistemi operativi.

In questo post vedremo come installare MariaDB su Debian 10.

Installa MariaDB 10.x su Debian 11

È possibile ottenere i pacchetti MariaDB per Debian 11 in due modi.

  1. Mirror MariaDB (MariaDB v10.6)
  2. Repository Debian (MariaDB v10.5)

Installa MariaDB dal mirror ufficiale di MariaDB

Aggiorna l'indice del repository e installa i pacchetti richiesti.

sudo apt update

sudo apt install -y software-properties-common dirmngr apt-transport-https wget curl

Aggiungi la chiave di firma al tuo sistema.

curl -fsSL https://mariadb.org/mariadb_release_signing_key.asc | sudo gpg --dearmor -o /usr/share/keyrings/mariadb-keyring.gpg

La fondazione MariaDB offre un repository per Debian per installare facilmente MariaDB. Puoi scegliere uno qualsiasi dei mirror di download dalla pagina di download di MariaDB per configurare il repository sul tuo sistema.

Aggiungi il repository MariaDB usando il comando seguente.

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

Installa il server e il client MariaDB usando il seguente comando.

sudo apt update

sudo apt install -y mariadb-server mariadb-client

Installa MariaDB dal repository Debian

L'installazione di MariaDB dal repository Debian è semplice. Ma potrebbe avere una versione un po' vecchia di MariaDB.

sudo apt update

sudo apt install -y mariadb-server mariadb-client

Installazione sicura di MariaDB

La mysql_secure_installation Il comando garantirà l'installazione di MariaDB con l'aiuto delle domande fornite, come la password root del DB, la gestione dell'accesso remoto root, la rimozione degli utenti anonimi e la rimozione del database di test e l'accesso ad esso.

Questo comando è stato introdotto nella versione 5.0.3-beta ed è utile quando si configura un nuovo server o si apportano modifiche a un server di database MariaDB esistente.

sudo mysql_secure_installation

Risultato:

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!

Accedi a MariaDB

Accedi al server MariaDB.

mysql -u root -p
Password richiesta

Risultato:

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)]>

Conclusione

È tutto. Spero che tu abbia imparato come installare MariaDB su Debian 11. Inoltre, puoi installare phpMyAdmin per gestire MariaDB tramite l'interfaccia web.


Debian
  1. Come installare MySQL su Debian 9

  2. Come installare MariaDB su Debian 9

  3. Come installare MariaDB su Debian 10

  4. Come installare sysPass Password Manager su Debian 11

  5. Come installare MariaDB su Debian 11

Come installare MariaDB su Debian 11

Come installare Nextcloud su Debian 11

Come installare Drupal su Debian 11

Come installare WordPress su Debian 11

Come installare Gitea su Debian 11

Come installare sysPass Password Manager su Debian 11