Skip to content

Instantly share code, notes, and snippets.

@matteocrippa
Created April 18, 2013 13:29
Show Gist options
  • Save matteocrippa/5412684 to your computer and use it in GitHub Desktop.
Save matteocrippa/5412684 to your computer and use it in GitHub Desktop.
Mysql Database Creation - CLI How To
CREATE DATABASE dbName;
GRANT ALL PRIVILEGES ON dbName.* TO user@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
EXIT;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment