Skip to content

Instantly share code, notes, and snippets.

@rewinfrey
Created April 3, 2013 21:39
Show Gist options
  • Save rewinfrey/5305609 to your computer and use it in GitHub Desktop.
Save rewinfrey/5305609 to your computer and use it in GitHub Desktop.
Configuring mysql for VM
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