/ Published in: SQL
To reset the MySQL root password, login to the mysql shell and run the following commands.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
SET PASSWORD FOR root@localhost=PASSWORD('RootPasswordHere'); FLUSH PRIVILEGES;
URL: http://www.bytechemist.com/2008/06/30/set-mysql-root-password/