When I want to install MySQL I faced this issue “root account password” I forgot it

Just reset your previous password using this command after login from a terminal

 ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass';

for more details refer to this link https://dev.mysql.com/doc/refman/8.0/en/resetting-permissions.html

Leave a Comment