Created
October 20, 2014 08:05
-
-
Save oozzal/47d273dfa10522216f51 to your computer and use it in GitHub Desktop.
This file contains 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
Reset mysql password (MAC): | |
> mysql.server stop | |
> mysql.server start --skip-grant-tables | |
> mysql | |
> update mysql.user set Password=PASSWORD('new_password') WHERE User='root' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment