Created
April 25, 2016 10:25
-
-
Save suya55/2dad577074c5e91fe8cd94be94a4fcee to your computer and use it in GitHub Desktop.
Mysql grant user
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
grant all privileges on *.* to ‘develop'@'localhost'; | |
Update mysql.user SET Password = Password('pwd') where User = 'develop'; | |
flush privileges; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment