Now MariaDB has become the default database management system for new Ubuntu 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 Ubuntu 16.10 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 Ubuntu 16.10.
Prerequisites
Before following the below steps to install MySQL, make sure you have Ubuntu 16.10 installed a system with a user who has sudo privileges.Install MySQL
To install MySQL on Ubuntu 16.10 machine, follow below procedure: Step 1 – MySQL Repository Configuration To install MySQL into Ubuntu 16.10 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 Ubuntu 16.10 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
$ sudo systemctl status mysql
$ sudo mysql_secure_installation
$ 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:
Conclusion
Now you learned the process to install MySQL server on Ubuntu 16.10 Operating system. You also know how to get into the MySQL shell to perform database commands and operations.If you have any doubt or issue related with installation, feel free to leave comment below.