Skip to content

Instantly share code, notes, and snippets.

@suya55
Created April 25, 2016 10:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suya55/2dad577074c5e91fe8cd94be94a4fcee to your computer and use it in GitHub Desktop.
Save suya55/2dad577074c5e91fe8cd94be94a4fcee to your computer and use it in GitHub Desktop.
Mysql grant user
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