This is really easy.
1. Update Ubuntu
An update is always a good thing
sudo apt update2. Install MySQL
sudo apt install mysql-server3. Secure it (remove some test users, etc.)
sudo mysql_secure_installation4. And test it
sudo mysqladmin -p -u root versionThat’s it.
