Skip to content

Instantly share code, notes, and snippets.

@bsnux
Last active August 29, 2015 14:12
Show Gist options
  • Save bsnux/60158500f106491e114a to your computer and use it in GitHub Desktop.
Save bsnux/60158500f106491e114a to your computer and use it in GitHub Desktop.
Creating a MySQL DB
CREATE DATABASE dbname DEFAULT CHARACTER SET utf8;
GRANT ALL PRIVILEGES ON dbname.* TO 'db_user'@'localhost' IDENTIFIED BY 'passwd_user';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment