Changing and Resetting MySQL Root Password on Ubuntu 18.04 and Ubuntu 20.04
Step1. First Login to Mysql
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'yourPasswordHere';
where :- root is user and yourPasswordHere is password
For eg.
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'R0oT#';
That's it. Thank You.
Comments
Post a Comment