How do I Install MySQL 8.0 Linux Ubuntu? When I searched in market place MySQL version 5.7.23 is only available on Ubuntu 18.04.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
This comment has been deleted
There is an APT repo for installing MySQL server and client.
Ensure wget is installed
sudo apt install wget
Download the repo package
wget -c https://dev.mysql.com/get/mysql-apt-config_0.8.10-1_all.deb
Install the repo package
sudo dpkg -i mysql-apt-config_0.8.10-1_all.deb
Note, the installation will ask you to choose a MySQL server version and other components such as cluster, shared client libraries, or the MySQL Workbench.
update your repo library
sudo apt update
Install MySQL server
sudo apt install mysql-server
Secure MySQL
sudo mysql_secure_installation
Install MySQL Client
sudo apt install mysql-client
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.
