Skip to content

Instantly share code, notes, and snippets.

@itomg
Created December 20, 2013 07:00
Show Gist options
  • Save itomg/8051332 to your computer and use it in GitHub Desktop.
Save itomg/8051332 to your computer and use it in GitHub Desktop.
How to add a mysql super user
# login to mysql client as root
GRANT ALL PRIVILEGES ON *.* TO '[user name]'@'localhost' IDENTIFIED BY '[password]' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON *.* TO '[user name]'@'%' IDENTIFIED BY '[password]' WITH GRANT OPTION;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment