This video is about How to install MySQL Server on Ubuntu Linux in just 3 Easy Steps.
Before we start, do this:-
sudo apt update && upgrade
Step 1:
sudo apt install mysql-server
Step 2:
To start MySQL Server:-
sudo mysql
To change password of user do this:-
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
Step 3:
FLUSH PRIVILEGES;
If you like this please like share and comment down below. For any query feel free to ask in comment section.
#installMySQL #Ubuntu