Nota: questo è un obiettivo d’esame RHCE 7.
Presentazione di MariaDB
MariaDB è un sostituto di MySql, il famoso sistema di database.
Prerequisiti
Poiché l’installazione MariaDB predefinita utilizza la directory /var/lib/mysql per archiviare i database, tenere presente che la partizione o il volume logico associato a /var richiede uno spazio adeguato.
Procedura d’installazione
Per installarlo, applica i seguenti passaggi:
Installa i pacchetti MariaDB:
yum install -y mariadb mariadb-server
Avvia e attiva all’avvio il servizio MariaDB:
systemctl start mariadb && systemctl enable mariadb
Esegui la configurazione di base:
# mysql_secure_installation /usr/bin/mysql_secure_installation: line 379: find_mysql_client: command 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):type enterOK, 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:your-passwordRe-enter new password:your-passwordPassword 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!
Se è necessario accedere al database da un server diverso, aggiungere il servizio MySql alla configurazione del firewall e ricaricarlo:
# firewall-cmd --permanent --add-service=mysql success # firewall-cmd --reload success
Il sito Web di Centminmod avverte dei problemi di riavvio di MariaDB dopo l’aggiornamento di RHEL 7.4 / CentOS 7.4.
Configurazione iniziale
Per aiutarti a definire la configurazione iniziale in base alle specifiche del tuo sistema (dimensioni della memoria, numero di CPU, tipo di attività, ecc.), Puoi trovare utili esempi di file my.cnf nel pacchetto mariadb-server:
# rpm -ql mariadb-server | grep my- /usr/share/mysql/my-huge.cnf /usr/share/mysql/my-innodb-heavy-4G.cnf /usr/share/mysql/my-large.cnf /usr/share/mysql/my-medium.cnf /usr/share/mysql/my-small.cnf
Inizia leggendo il file /usr/share/mysql/my-innodb-heavy-4G.cnf perché è pieno di commenti utili.
Quindi, scarica mysqltuner.pl di Major Hayden. Dopo aver eseguito questo script, otterrai una valutazione approssimativa della configurazione e dei suggerimenti di base per migliorarlo.
Il pacchetto innotop contiene un comando con lo stesso nome che si comporta come il comando superiore sui server MariaDB, fornendo molti dettagli sull’attività corrente (cache, blocchi, stato di replica, ecc.). Questo pacchetto è disponibile nel repository EPEL.
Suggerimento di configurazione
Per ottenere una spiegazione di tutte le opzioni del server, tutti i parametri di configurazione e i loro valori correnti, digitare:
# /usr/libexec/mysqld –verbose –help /usr/libexec/mysqld Ver 5.5.52-MariaDB for Linux on x86_64 (MariaDB Server) Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others. Starts the MariaDB database server. Usage: /usr/libexec/mysqld [OPTIONS] Default options are read from the following files in the given order: /etc/mysql/my.cnf /etc/my.cnf ~/.my.cnf The following groups are read: mysqld server mysqld-5.5 mariadb mariadb-5.5 client-server The following options may be given as the first argument: --print-defaults Print the program argument list and exit. --no-defaults Don't read default options from any option file. --defaults-file=# Only read default options from the given file #. --defaults-extra-file=# Read this file after the global files are read. --allow-suspicious-udfs Allows use of UDFs consisting of only one symbol xxx() without corresponding xxx_init() or xxx_deinit(). That also means that one can load any function from any library, for example exit() from libc.so -a, --ansi Use ANSI SQL syntax instead of MySQL syntax. This mode will also set transaction isolation level 'serializable'. --archive[=name] Enable or disable ARCHIVE plugin. Possible values are ON, OFF, FORCE (don't start if the plugin fails to load). ... --xtradb-admin-command[=name] Enable or disable XTRADB_ADMIN_COMMAND plugin. Possible values are ON, OFF, FORCE (don't start if the plugin fails to load). Variables (--variable-name=value) and boolean options {FALSE|TRUE} Value (after reading options) ------------------------------------------------- ------------------------ allow-suspicious-udfs FALSE archive ON aria ON aria-block-size 8192 aria-checkpoint-interval 30 aria-checkpoint-log-activity 1048576 aria-force-start-after-recovery-failures 0 aria-group-commit none ... verbose TRUE wait-timeout 28800 xtradb-admin-command ON To see what values a running MySQL server is using, type 'mysqladmin variables' instead of 'mysqld --verbose --help'.