Created
December 7, 2013 22:44
-
-
Save enopanen/7850480 to your computer and use it in GitHub Desktop.
MySQL commands to create database and user.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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