Magazine

Install MariaDB on Debian 9 Operating System

Posted on the 07 September 2019 by Satish Kumar @satish_kumar86

MariaDB is a multi-thread, open-source relational database management system, a perfect replacement of MySQL database system. MariaDB maintained and developed by the MariaDB Foundation, including some of the MySQL developers.

Debian new release version 9 is coming with MariaDB default database system which is replacement of MySQL.

In this tutorial article, we will learn the methods to install MariaDB into Debian 9 operating system.

There are two methods to install MariaDB into Debian machine; one is use to directly install to Debian repository and another to use MariaDB repository to install the latest MariaDB package.

Prerequisites

Before starting MariaDB install into Debian machine, make sure you have a Debian 9 running machine and a user to login into the system with sudo privileges.

MariaDB installation on Debian 9

To install MariaDB on Debian 9 Operating System, follow below steps:

Step 1 – Update Debian 9 Repository

Before installing any new package on Debian 9 operating system first need to update the repository package list, which is performed by the following command:

$ sudo apt update

Step 2 – Install MariaDB

Once the repositories package list updated in your system, you can start the MariaDB installation using below command:

$ sudo apt install mariadb-server
Install MariaDB on Debian 9 Operating System

Step 3 – Verify MariaDB Installation

You can verify MariaDB installation by checking the status of MariaDB service, as shown below:

$ sudo systemctl status mariadb

If MariaDB is installed and running properly, you will get output with Active and running status like below image.

Install MariaDB on Debian 9 Operating System

MariaDB Install on Debian 9 using MariaDB Repository

If you want to install MariaDB latest version into your Debian 9 system which not released into default Debian 9 repositories, you can use MariaDB repository directly to install Latest MariaDB.

To install the Latest release of MariaDB on Debian 9 using MariaDB repository follow below steps:

Step 1 – Enable MariaDB Repository

To install MariaDB using MariaDB repository first need to enable MariaDB repository and import repository key by using the following command:

$ sudo apt install software-properties-common dirmngr
$ sudo apt-key adv --recv-keys --keyserver http://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8
$ sudo add-apt-repository 'deb [arch=amd64,i386,ppc64el] http://mirrors.dotsrc.org/mariadb/repo/10.3/debian stretch main'

Step 2 – Update package List and install MariaDB

After enabling MariaDB repository need to update repository packages and install MariaDB server by using the following command:

$ sudo apt update
$ sudo apt install mariadb-server

Step 3 – Verify MariaDB Installation

Once MariaDB gets installed it services automatically get started, you can verify it by checking MariaDB service, as shown below:

$ sudo systemctl status mariadb

If MariaDB is running correctly you will get the screen with Active and running status as below image:

Install MariaDB on Debian 9 Operating System

MariaDB Secure Installation

You need to run mysql_secure_installation script to secure MariaDB installation as shown below:

$ sudo mysql_secure_installation

This script will ask you to set the root user password, restrict root access to localhost, remove anonymous users, and remove the test database.

Install MariaDB on Debian 9 Operating System
Install MariaDB on Debian 9 Operating System

After completion of the script, it will reload privilege tables, and all the changes take effect immediately.

MariaDB Connection through CLI

To connect the MariaDB server through terminal or command-line interface, you should use mysql command as shown below:

$ mysql –u root –p

The above command will connect with MariaDB shell using the root user. The next screen will appear to enter the password for user root.

Once you get the connection with MariaDB shell you will get the screen as shown below image:

Install MariaDB on Debian 9 Operating System

Conclusion

In this acritical, we learned how to install MariaDB into Debian 9 machine. We also learned to install MariaDB directly from MariaDB repository.

Now MariaDB is installed in your system successful, and you know how to connect with MariaDB shell to perform Database commands and operations.

If You Like What We Do Here On LinuxConcept, You Should Consider:

Stay Connected to: Twitter | Facebook

Subscribe to our email updates: Sign Up Now

We are thankful for your support.


Back to Featured Articles on Logo Paperblog