Skip to content

Instantly share code, notes, and snippets.

@oviniciusfeitosa
Created December 21, 2015 12:37
Show Gist options
  • Save oviniciusfeitosa/8900d32a41f8c3df7f4f to your computer and use it in GitHub Desktop.
Save oviniciusfeitosa/8900d32a41f8c3df7f4f to your computer and use it in GitHub Desktop.
Create MySQL User, password and privileges
CREATE USER 'username'@'yourhost' IDENTIFIED BY 'yourpassword';
GRANT ALL PRIVILEGES ON yourDatabase.* TO 'username'@'yourhost';
# DONE! ;)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment