Skip to content

Instantly share code, notes, and snippets.

@quoidautre
Created September 13, 2012 15:04
Show Gist options
  • Select an option

  • Save quoidautre/3714925 to your computer and use it in GitHub Desktop.

Select an option

Save quoidautre/3714925 to your computer and use it in GitHub Desktop.
MYSQL: Changer le mot de passe admin, mode console
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