GNU/Linux >> Tutoriales Linux >  >> Debian

Cómo instalar MariaDB 10.x en Debian 11

MariaDB es una bifurcación de la base de datos MySQL y se desarrolla como una solución de código abierto, principalmente bajo la licencia GPL. Es un reemplazo directo binario de MySQL porque comparte la misma base de código con MySQL 5.5 y versiones posteriores.

La base de datos MariaDB es una alternativa gratuita a MySQL, y la mayoría de las mejoras están dirigidas específicamente a una alta disponibilidad, escalabilidad y rendimiento en aplicaciones críticas para el negocio con uso intensivo de datos. Puede ejecutarse en GNU/Linux, FreeBSD, Solaris, Mac OS X, Windows y muchos otros sistemas operativos.

En esta publicación, veremos cómo instalar MariaDB en Debian 10.

Instalar MariaDB 10.x en Debian 11

Puede obtener paquetes de MariaDB para Debian 11 de dos formas.

  1. Mirror de MariaDB (MariaDB v10.6)
  2. Repositorio Debian (MariaDB v10.5)

Instalar MariaDB desde el espejo oficial de MariaDB

Actualice el índice del repositorio e instale los paquetes necesarios.

sudo apt update

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

Agregue la clave de firma a su sistema.

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

La fundación MariaDB ofrece un repositorio para que Debian instale MariaDB fácilmente. Puede elegir cualquiera de los espejos de descarga de la página de descarga de MariaDB para configurar el repositorio en su sistema.

Agregue el repositorio de MariaDB usando el siguiente comando.

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

Instale el servidor y el cliente de MariaDB con el siguiente comando.

sudo apt update

sudo apt install -y mariadb-server mariadb-client

Instalar MariaDB desde el repositorio de Debian

Instalar MariaDB desde el repositorio de Debian es sencillo. Pero, puede tener una versión un poco antigua de MariaDB.

sudo apt update

sudo apt install -y mariadb-server mariadb-client

Instalación segura de MariaDB

La mysql_secure_installation El comando asegurará la instalación de MariaDB con la ayuda de las preguntas proporcionadas, como la contraseña raíz de la base de datos, administrar el inicio de sesión remoto raíz, eliminar usuarios anónimos y eliminar la base de datos de prueba y acceder a ella.

Este comando se introdujo en la versión 5.0.3-beta y es útil al configurar un nuevo servidor o realizar cambios en un servidor de base de datos MariaDB existente.

sudo mysql_secure_installation

Salida:

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!

Acceder a MariaDB

Inicie sesión en el servidor MariaDB.

mysql -u root -p
Se requiere contraseña

Salida:

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

Conclusión

Eso es todo. Espero que haya aprendido a instalar MariaDB en Debian 11. Además, puede instalar phpMyAdmin para administrar MariaDB a través de la interfaz web.


Debian
  1. Cómo instalar MySQL en Debian 9

  2. Cómo instalar MariaDB en Debian 9

  3. Cómo instalar MariaDB en Debian 10

  4. Cómo instalar SysPass Password Manager en Debian 11

  5. Cómo instalar MariaDB en Debian 11

Cómo instalar MariaDB en Debian 11

Cómo instalar Nextcloud en Debian 11

Cómo instalar Drupal en Debian 11

Cómo instalar WordPress en Debian 11

Cómo instalar Gitea en Debian 11

Cómo instalar SysPass Password Manager en Debian 11