Cómo instalar MariaDB en NetBSD

NetBSD es un sistema operativo de tipo UNIX con un enfoque en la seguridad, simplicidad, elegancia y limpieza en su código fuente, es altamente portable y robusto.

MariaDB es un gestor de base datos creado, a partir del código fuente de MySQL 5.1, por los desarrolladores originales de MySQL diseñado como un reemplazo directo y mejorado de MySQL. MariaDB es rápido, escalable y robusto, con un rico ecosistema de motores de almacenamientos, complementos y otras herramientas que lo hacen versátil y flexible en diferentes escenarios.

MariaDB está disponible en los repositorios oficiales de NetBSD por lo que podemos instalar el servidor y herramientas a través del administrador de paquetes pkgin

Le puede interesar:

Instalar

# pkgin install mariadb-server 
calculating dependencies...done.

3 packages to install:
  mariadb-server-5.5.67nb4 perl-5.32.1 mariadb-client-5.5.67nb1

0 to refresh, 0 to upgrade, 3 to install
125M to download, 832M to install

proceed ? [Y/n]

Administrar el proceso del servidor

En esta parte aprenderemos cómo iniciar, detener o reiniciar el servicio de mariadb, para esto usaremos el «Administrador de sistema» de BSD que está compuesto por los servicios: init, rc y service

Agregar script de inicialización de MariaDB

El paquete mariadb-server nos proporciona el script de ejemplo /usr/pkg/share/examples/rc.d/mysqld que bastaría con copiarlo para /etc/rc.d/mysqld

# cp -v /usr/pkg/share/examples/rc.d/mysqld /etc/rc.d/mysqld
/usr/pkg/share/examples/rc.d/mysqld -> /etc/rc.d/mysqld

Inicio automático

Añadimos la siguiente línea al fichero /etc/rc.conf la cuál indica que el servidor MariaDB se inicia automáticamente después de un reinicio del sistema operativo.

mysqld=YES

Comprobar estado

# service mysqld status 
mysqld is not running.

Iniciar

# service mysqld start  
Initializing MySQL database system tables.
Installing MariaDB/MySQL system tables in '/var/mariadb' ...
210501 18:11:26 [Note] /usr/pkg/sbin/mysqld (mysqld 5.5.67-MariaDB) starting as process 8874 ...
OK
Filling help tables...
210501 18:11:27 [Note] /usr/pkg/sbin/mysqld (mysqld 5.5.67-MariaDB) starting as process 8845 ...
OK

To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
To do so, start the server, then issue the following commands:

'/usr/pkg/sbin/mysqladmin' -u root password 'new-password'
'/usr/pkg/sbin/mysqladmin' -u root -h myserver.name 'new-password'

Alternatively you can run:
'/usr/pkg/sbin/mysql_secure_installation'
...

ahora podemos comprobar el estado nuevamente:

# service mysqld status
mysqld is running as pid 9258.

Reiniciar

Si modifica el fichero de configuración de su servidor de BD entonces debe reiniciarlo:

# service mysqld restart                  
Stopping mysqld.
Starting mysqld.

Detener

Si necesita detener su servidor de BD ejecute:

# service mysqld stop
Stopping mysqld.

Mejorar la seguridad de nuestro servidor de BD

mariadb_secure_installation es un shell script disponible en sistemas Unix, mariadb_secure_installation permite:

  • Establecer una contraseña para el usuario de root o cambiar el método de autenticación.
  • Deshabilitar acceso remoto usando el usuario root.
  • Eliminar cuentas de usuarios anónimos.
  • Eliminar la base de datos de prueba, a la que pueden acceder de forma predeterminada usuarios anónimos.
# mysql_secure_installation  
/usr/pkg/bin/mysql_secure_installation: find_mysql_client: not found

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
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none): 
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.

Set root password? [Y/n] Y
New password: 
Re-enter new 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
 ... 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
 ... 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
 - 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
 ... 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!

Conectarnos

Ahora podemos conectarnos usando el usuario root y clave especificada en el paso anterior

# mysql -u root -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 1
Server version: 5.5.67-MariaDB Source 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)]> 
YouTube video

Administrar MySQL desde la línea de comandos, 4 (18)

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

Este sitio usa Akismet para reducir el spam. Aprende cómo se procesan los datos de tus comentarios.