RHEL7: How to install a MariaDB/MySql service.

Share this link

Note: This is an RHCE 7 exam objective.

Presentation of MariaDB

MariaDB is a binary replacement for MySql, the famous database system.

Prerequisites

As the default MariaDB installation uses the /var/lib/mysql directory to store your databases, keep in mind that the partition or logical volume associated with /var needs adequate space.

Installation Procedure

To install it, apply the following steps:

Install the MariaDB packages:

# yum install -y mariadb mariadb-server

Start and activate at boot the MariaDB service:

# systemctl start mariadb && systemctl enable mariadb

Execute the basic setup:

# 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 enter
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: your-password
Re-enter new password: your-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!

If you need to access the database from a different server, add the MySql service to the firewall configuration and reload it:

# firewall-cmd --permanent --add-service=mysql
success
# firewall-cmd --reload
success

Initial Configuration

To help you define the initial configuration according to the specifications of your system (memory size, number of CPU, type of activity, etc), you can find useful examples of my.cnf files in the mariadb-server package:

# 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

Start by reading the /usr/share/mysql/my-innodb-heavy-4G.cnf file because it is full of useful comments.

Then, download Major Hayden’s mysqltuner.pl. After running this script, you will get a rough evaluation of your configuration and basic recommentations to improve it.

The innotop package contains a command with the same name that behaves like the top command on MariaDB servers, providing a lot of details about the current activity (cache, locks, replication status, etc). This package is available in the EPEL repository.

Configuration Tip

To get an explanation of all the server options, all the configuration parameters and their current values, type:

/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'.

Additional Resources

Additional information about the transition from MySQL to MariaDB is available on Kolbe’s blog.
Rackspace offers an interesting tutorial about installing a MariaDB server on CentOS.
Carla Schroder’s blog provides some thought about which type of file system to choose and what are the best parameters to set performance-wise.
A presentation about database performance tuning was given at the 2015 Red hat Summit (the associated slides are there).
The linuxpitstop website provides some tips to improve MariaDB performance.
If you are more interested in Oracle products, Red Hat wrote a document about Deploying Oracle RAC Database 12c on RHEL 7.
You can also watch Andrew Mallett‘s video about Installing MariaDB (6min/2015).
Ramesh Natarajan provides an interesting tutorial on How to Move your MySQL Data Directory to a New Location.
The Digital Ocean website has got a tutorial on How to Change a MariaDB Data Directory to a New Location on CentOS 7.
The askapache website offers a tutorial on how to compile MariaDB with LZ4 compression.
You can also read this tutorial about configuring MariaDB SSL and securing client connections.
The Tecmint website wrote an article about 15 Useful MySQL/MariaDB Performance Tuning and Optimization Tips.
The Howtoforge website explains how to enable SSL and remote connections for MySQL on CentOS 7 and how to set up a MySQL multi-master replication.
The Servercheap website provides a tutorial on how to setup remote and secure connections for MySQL on CentOS 7.
Colin Charles gave a presentation at the CentOS Dojo Brussels 2018 about Understanding the MySQL Database ecosystem (48min/2018).
The MySQL High Availability website provides many articles about MySQL replication.

The Percona website provides many interesting articles about MariaDB:

The Percona website has got also many interesting articles about MySQL:

Also, the ScaleGrid blog provides some interesting articles about MySQL:

(4 votes, average: 5.00 out of 5)
Loading...
7 comments on “RHEL7: How to install a MariaDB/MySql service.
  1. raid0 says:

    The configuration parameters and descriptions for the mysqld section of my.cnf can also be found this way:

    /usr/libexec/mysqld –verbose –help |less

    options and descriptions at the top, current settings further down

    example:
    skip-networking Don’t allow connection with TCP/IP
    skip-networking FALSE

    To change this to disallow networking – edit the mysqld section of my.cnf as follows:

    [mysqld]

    skip-networking=1

    Hope it helps.

  2. hunter86_bg says:

    I’ve recently met the following method to install mariadb:
    “yum groupinstall mariadb mariadb-client”: for the server and
    “yum groupinstall mariadb-client” for the client.
    I had some issues when installing your way on 7.0 – the “mysql_secure_install” complained some non-sense until I installed the whole group.
    So in case “mysql_secure_client” starts complaining – install the whole group.

Leave a Reply

Upcoming Events (Local Time)

There are no events.

Follow me on Twitter

Archives

vceplus-200-125    | boson-200-125    | training-cissp    | actualtests-cissp    | techexams-cissp    | gratisexams-300-075    | pearsonitcertification-210-260    | examsboost-210-260    | examsforall-210-260    | dumps4free-210-260    | reddit-210-260    | cisexams-352-001    | itexamfox-352-001    | passguaranteed-352-001    | passeasily-352-001    | freeccnastudyguide-200-120    | gocertify-200-120    | passcerty-200-120    | certifyguide-70-980    | dumpscollection-70-980    | examcollection-70-534    | cbtnuggets-210-065    | examfiles-400-051    | passitdump-400-051    | pearsonitcertification-70-462    | anderseide-70-347    | thomas-70-533    | research-1V0-605    | topix-102-400    | certdepot-EX200    | pearsonit-640-916    | itproguru-70-533    | reddit-100-105    | channel9-70-346    | anderseide-70-346    | theiia-IIA-CIA-PART3    | certificationHP-hp0-s41    | pearsonitcertification-640-916    | anderMicrosoft-70-534    | cathMicrosoft-70-462    | examcollection-cca-500    | techexams-gcih    | mslearn-70-346    | measureup-70-486    | pass4sure-hp0-s41    | iiba-640-916    | itsecurity-sscp    | cbtnuggets-300-320    | blogged-70-486    | pass4sure-IIA-CIA-PART1    | cbtnuggets-100-101    | developerhandbook-70-486    | lpicisco-101    | mylearn-1V0-605    | tomsitpro-cism    | gnosis-101    | channel9Mic-70-534    | ipass-IIA-CIA-PART1    | forcerts-70-417    | tests-sy0-401    | ipasstheciaexam-IIA-CIA-PART3    | mostcisco-300-135    | buildazure-70-533    | cloudera-cca-500    | pdf4cert-2v0-621    | f5cisco-101    | gocertify-1z0-062    | quora-640-916    | micrcosoft-70-480    | brain2pass-70-417    | examcompass-sy0-401    | global-EX200    | iassc-ICGB    | vceplus-300-115    | quizlet-810-403    | cbtnuggets-70-697    | educationOracle-1Z0-434    | channel9-70-534    | officialcerts-400-051    | examsboost-IIA-CIA-PART1    | networktut-300-135    | teststarter-300-206    | pluralsight-70-486    | coding-70-486    | freeccna-100-101    | digitaltut-300-101    | iiba-CBAP    | virtuallymikebrown-640-916    | isaca-cism    | whizlabs-pmp    | techexams-70-980    | ciscopress-300-115    | techtarget-cism    | pearsonitcertification-300-070    | testking-2v0-621    | isacaNew-cism    | simplilearn-pmi-rmp    | simplilearn-pmp    | educationOracle-1z0-809    | education-1z0-809    | teachertube-1Z0-434    | villanovau-CBAP    | quora-300-206    | certifyguide-300-208    | cbtnuggets-100-105    | flydumps-70-417    | gratisexams-1V0-605    | ituonline-1z0-062    | techexams-cas-002    | simplilearn-70-534    | pluralsight-70-697    | theiia-IIA-CIA-PART1    | itexamtips-400-051    | pearsonitcertification-EX200    | pluralsight-70-480    | learn-hp0-s42    | giac-gpen    | mindhub-102-400    | coursesmsu-CBAP    | examsforall-2v0-621    | developerhandbook-70-487    | root-EX200    | coderanch-1z0-809    | getfreedumps-1z0-062    | comptia-cas-002    | quora-1z0-809    | boson-300-135    | killtest-2v0-621    | learncia-IIA-CIA-PART3    | computer-gcih    | universitycloudera-cca-500    | itexamrun-70-410    | certificationHPv2-hp0-s41    | certskills-100-105    | skipitnow-70-417    | gocertify-sy0-401    | prep4sure-70-417    | simplilearn-cisa    |
http://www.pmsas.pr.gov.br/wp-content/    | http://www.pmsas.pr.gov.br/wp-content/    |