Update Mysql from 5.7 to 8.0 on Ubuntu

HowTo Video 1 years ago

Description

This video will show you steps to update your mysql from 5.7 to 8.

Open your terminal and run the following commands

sudo apt purge mysql-*

sudo apt install -y dirmngr sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 467B942D3A79BD29


echo "deb http://repo.mysql.com/apt/ubuntu $(lsb_release -sc) mysql-8.0" | sudo tee /etc/apt/sources.list.d/mysql-8.0.list

sudo apt-get updatesudo apt-get install -y mysql-server mysql-client