Created
April 3, 2013 21:39
-
-
Save rewinfrey/5305609 to your computer and use it in GitHub Desktop.
Configuring mysql for VM
This file contains 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 | |
mysql> use mysql; | |
mysql> create database empire; | |
mysql> grant all privileges on empire.* to ''@localhost; | |
mysql> flush privileges; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment