Skip to content

Instantly share code, notes, and snippets.

@brobertsaz
Created December 6, 2012 00:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brobertsaz/4220778 to your computer and use it in GitHub Desktop.
Save brobertsaz/4220778 to your computer and use it in GitHub Desktop.
mysql-setup
sudo apt-get install mysql-server mysql-client libmysqlclient-dev
* If you need to add your user to the mysql database:
mysql -u root
mysql > CREATE USER “username”;
mysql > GRANT ALL ON *.* TO “username”;
mysql > FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment