Skip to content

Instantly share code, notes, and snippets.

@carlzulauf
Created June 24, 2012 23:57
Show Gist options
  • Save carlzulauf/2985598 to your computer and use it in GitHub Desktop.
Save carlzulauf/2985598 to your computer and use it in GitHub Desktop.
Create mysql power user
CREATE USER username IDENTIFIED BY 'password';
GRANT ALL ON *.* TO username@localhost IDENTIFIED BY 'password';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment