Skip to content

Instantly share code, notes, and snippets.

@zachbrowne
Created November 30, 2012 14:42
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 zachbrowne/4176172 to your computer and use it in GitHub Desktop.
Save zachbrowne/4176172 to your computer and use it in GitHub Desktop.
Create MYSQL database
mysql -u root -p
CREATE DATABASE testing;
GRANT ALL PRIVILEGES ON testing.* TO test_user@localhost IDENTIFIED BY 'test_pass';
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment