Magazine

Install MySQL on Debian 9 Operating System

Posted on the 06 September 2019 by Satish Kumar @satish_kumar86

MySQL is the most popular and highly used Open source relational database management system; it is no more available with the default repository of Debian Operating system after releasing of version 9.

Now MariaDB has become the default database management system for new Debian Operating system, and it is backward compatible and perfect replacement of MySQL Database System.

In this tutorial, the article will show you how to install MySQL Server into the Debian 9 Operating system using MySQL APT Repository.

I suggest you if your application has specific requirement of MySQL database then only install MySQL server otherwise you can stick with MariaDB the default database management system in Debian 9.

Prerequisites

Before following the below steps to install MySQL, make sure you have Debian 9 installed a system with a user who has sudo privileges.

MySQL Installation

To install MySQL on Debian 9 machine, follow below procedure:

Step 1 – MySQL Repository Configuration

To install MySQL into Debian 9 Operating System, you need to add MySQL APT repository, to install the latest repository need to go to the MySQL repository download page and download the latest release package by using the following command:

$ wget http://repo.mysql.com/mysql-apt-config_0.8.13-1_all.deb

After completing the download, install the release package with the following command:

$ sudo dpkg -i mysql-apt-config_0.8.13-1_all.deb

You will get the below configuration menu to select MySQL version you want to install.

MySQL 8.0 is pre-selected for this repository, if you want to install another version of MySQL, choose “MySQL Server & Cluster (Currently selected: mysql-8.0)” and select your preferred version of MySQL.

As we are going to install MySQL with version 8.0, Select the last option “OK” and press “Enter” to save the configuration.

Step 2 – MySQL Installation

To install MySQL on Debian 9 Operating system first update the repositories package list by using the following command:

$ sudo apt update

After updating the package, you can start the MySQL installation by using the following command:

$ sudo apt install mysql-server
Install MySQL on Debian 9 Operating System

The installation process will prompt you to enter the MySQL root password, don’t set password right now we will do it in next session.

Now, you will get a new screen for authentication plugin message for MySQL 8, before selecting the default MySQL 8 authentication to make sure your application is supporting it or not.

Step 3 – MySQL Verification

Once the MySQL installation process completed, the MySQL service will automatically start.

You can check the MySQL service status by using the following command:

$ sudo systemctl status mysql
Install MySQL on Debian 9 Operating System

Step 4 – Securing MySQL

To secure the MySQL database system run the “mysql_secure_installation” command, it will help you to set the root password and to improve newly installed MySQL security.

$ sudo mysql_secure_installation
Install MySQL on Debian 9 Operating System

The screen will have asked you to configure the “VALIDATE PASSWORD PLUGIN,” which is use to check the MySQL password strength. It defines the password policy validation in three levels low, medium, and strong. If you don’t want to set the validate password plugin press the “Enter” button.

Next screen will ask you to set the root password:

Install MySQL on Debian 9 Operating System

Once root password is set the script will ask you to remove the anonymous user, restrict root access to the localhost and remove test database, and you should answer “Y” (yes) for all the question to secure the MySQL.

Install MySQL on Debian 9 Operating System

Step 5 – Connect MySQL through CLI

To connect with MySQL server, you need to first login into the MySQL Server through Command-line interface by using the following command:

$ mysql –u root –p

Now you will get the screen to enter the root password which you had set when the “mysql_secure_installation” script was running.

After entering the password you will get into the MySQL shell, and your screen will like below image:

Install MySQL on Debian 9 Operating System

Conclusion

Now you learned the process to install MySQL server on Debian 9 Operating system. You also know how to get into the MySQL 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