Este artículo se actualizó por última vez el 2020-08-21, el contenido puede estar desactualizado.
PROMO DigitalOcean
Antes de comenzar, quería contarles que hay una promoción en DigitalOcean donde te dan un crédito de USD 100.00 durante 60 días para que puedas probar los servicios que este Proveedor Cloud ofrece. Lo único que tienes que hacer es suscribirte a DigitalOcean con el siguiente enlace: https://bit.ly/digitalocean-itsm
Introducción
¡Hola a todos!
MariaDB es uno de los servidores de base de datos de código abierto más popular. Es desarrollado por Michael (Monty) Widenius —fundador de MySQL—, la fundación MariaDB y la comunidad de desarrolladores de software libre. Es ofrecido por la mayor parte de los proveedores cloud y está por defecto en muchas distribuciones Linux.
Tiene una alta compatibilidad con MySQL ya que posee las mismas órdenes, interfaces, API y bibliotecas, siendo su objetivo poder cambiar un servidor por otro directamente. Introduce dos motores de almacenamiento nuevos, uno llamado Aria —que reemplaza a MyISAM— y otro llamado XtraDB —en sustitución de InnoDB—.
En esta guía vamos a instalar MariaDB en CentOS 8 / RHEL 8.
Instalando MariaDB Server
Hay dos maneras de instalar MariaDB: A través del AppStream de CentOS / RHEL o directamente desde los repositorios oficiales de MariaDB:
Instalar desde AppStream
Instalar MariaDB mediante AppStream es muy facil, debemos entrar a una terminal y ejecutar el siguiente comando con privilegios root:
1
[root@centos ~]# dnf install @mariadb
Instalar desde el repositorio de la Fundación MariaDB
La Fundación MariaDB ofrece paquetes precompilados que pueden ser instalados a través de su repositorio. Se mantiene siempre actualizado y con soporte de la comunidad.
Para instalarlos, debemos añadir los repositorios a nuestro sistema:
Necesitaremos deshabilitar MariaDB de los repositorios de rhel-8-for-x86_64-appstream-rpms y AppStream de manera temporal en RHEL 8 y en CentOS 8 respectivamente para permitir a dnf descargar e instalar los paquetes desde el repositorio oficial de MariaDB.
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): <-- PULSAR 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 <-- DESHABILITAMOS LA AUTENTICACION UNIX
... skipping.
You already have your root account protected, so you can safely answer 'n'.
Change the root password? [Y/n] Y <-- CAMBIAMOS LA CONTRASEÑA ROOT
New password: <-- NUEVA CONTRASEÑA
Re-enter new password: <-- REESCRIBIMOS LA NUEVA CONTRASEÑA
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 <-- REMOVEMOS EL ACCESO A USUARIOS ANONIMOS
... 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 <-- DESHABILITAMOS EL ACCESO A ROOT DE MANERA REMOTA
... 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 <-- ELIMINAMOS LA BASE DE DATOS TEST
- 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 <-- RECARGAMOS LOS PRIVILEGIOS
... 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!
Accesar a MariaDB
Lo que nos queda ahora, es accesar al servidor mediante el siguiente comando:
1
2
[root@centos ~]# mysql -u root -pEnter password:
Colocamos nuestra contraseña, y ya deberiamos poder entrar al servidor.
1
2
3
4
5
6
7
8
9
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 16Server version: 10.4.14-MariaDB MariaDB Server
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)]>
Espero les haya gustado este tutorial, ¡hasta la próxima!
Apoya este Proyecto!!!
Si te pareció útil este artículo y el proyecto en general, considera brindarme un café :)