Created
January 7, 2018 17:07
-
-
Save b-ggs/0094abec7dab4a5efaa122efc9749930 to your computer and use it in GitHub Desktop.
set mysql root password
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
use mysql; | |
update user set password=PASSWORD("password") where User='root'; | |
flush privileges; | |
quit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment