Skip to content

Instantly share code, notes, and snippets.

@enopanen
Created December 7, 2013 22:44
Show Gist options
  • Save enopanen/7850480 to your computer and use it in GitHub Desktop.
Save enopanen/7850480 to your computer and use it in GitHub Desktop.
MySQL commands to create database and user.
mysql -u root -p
create database exampleDB;
grant all on exampleDB.* to 'example_user' identified by '5t1ck';
flush privileges;
quit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment