Upgrade MySQL from 5.7 to 8 on Ubuntu 18.04 - BRS MEDIA TECHNOLOGIES

Upgrade MySQL from 5.7 to 8 on Ubuntu 18.04

In this article we will upgrade MySQL on Ubuntu 18.04 LTS from version 5.2.27 to 8.x using command line.

Step 1. Add MySQL APT repository

We will download and add the MySQL APT repository to system’s software repository list.Download and Add APT repository

$ wget https://repo.mysql.com//mysql-apt-config_0.8.14-1_all.deb

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

The latest version of APT config can be found at https://dev.mysql.com/downloads/repo/apt/

The below screen will appear:

mysql 8 1

Select the MySQL Server & Cluster option and hit enter:

mysql 8 2

Now choose MySQL 8 option and press OK

mysql 8 3

Click Ok to finish the setup.

Step 2. Update APT index and install MySQL server

Now we will update thr APT index and install the latest version of MySQL server using the following commands.

$ sudo apt-get update

$ sudo apt-get install mysql-server

Confirm installation:

$ sudo apt policy mysql-server

Step 3. Manage mysql.service

You can use the following commands to manage mysql instance.Start the service

$ sudo systemctl start mysql.service

Stop the service

$ sudo systemctl stop mysql.service

Status of service

$ sudo systemctl status mysql.service

Related Article

Install Kodi for Linux

Kodi for Linux

Installing Kodi on Ubuntu-based distributions Use the command line terminal and enter the following commands. Follow the prompts as you […]

composer for php

What is Composer and how to use it?

Composer was inspired by projects like NPM and Bundler. Dependencies save you time and energy. Functionalities you may need for […]

install-jenkins-ubuntu

How to Install Jenkins on Ubuntu 22.04 or 20.04 Linux

Learn the steps and commands to install Jenkins software on Ubuntu 22.04 LTS Jammy JellyFish or 20.04 Focal Fossa Linux […]