Install MySql on Ubuntu
Learn how to install MySql on Ubuntu
MySQL is an open-source relational database management system (RDBMS) where data is organized into one or more data tables in which data types may be related to each other.
The reference version used in this tutorial is Ubuntu 20.04.
Update system packages (recommneded)
Install the
mysql-server
package
Configure the MySql server (using
sudo)
This command will take the user through a series of prompts where you can make some changes to your MySQL installation’s security options.
The most important step in this setup is when we are asked for the password of the MySql root user.
Links & Resources
MySql - the official website
How to install MySql on Ubuntu - a complete tutorial provided by Digital Ocean
Last updated