Created
September 13, 2012 15:04
-
-
Save quoidautre/3714925 to your computer and use it in GitHub Desktop.
MYSQL: Changer le mot de passe admin, mode console
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mysql -u root -p | |
| USE mysql; | |
| UPDATE user SET password = PASSWORD('new-password') WHERE user = 'root'; | |
| FLUSH PRIVILEGES; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment