MySQL
MySQL on Linux:
Install:
#Updating our distro
sudo apt update && sudo apt full-upgrade -y
#installing mysql-server
sudo apt install mysql-server
#If you are planning to launch a website with MySQL, I recommend installing this:
sudo apt install python3-dev default-libmysqlclient-dev build-essential pkg-config
#starting MySQL DB service
sudo systemctl start mysql
#starting MySQL to run on boot of the system
sudo systemctl enable mysql

MySQL on Windows
Last updated