Skip to content

Instantly share code, notes, and snippets.

@ezza
Last active January 3, 2016 09:59
Show Gist options
  • Save ezza/8446136 to your computer and use it in GitHub Desktop.
Save ezza/8446136 to your computer and use it in GitHub Desktop.
Grant access to the flippa DBs if your VM init script fails.
mysql -u root -e "GRANT ALL ON flippa.* TO flippa@localhost IDENTIFIED BY 'flippa';"
mysql -u root -e "GRANT ALL ON commerce.* TO flippa@localhost IDENTIFIED BY 'flippa';"
mysql -u root -e "GRANT ALL ON commerce.* TO commerce@localhost IDENTIFIED BY 'commerce';"
mysql -u root -e "CREATE DATABASE flippatest;"
mysql -u root -e "GRANT ALL ON flippatest.* TO flippa@localhost IDENTIFIED BY 'flippa';"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment