Skip to content

Instantly share code, notes, and snippets.

@vivianspencer
Last active August 29, 2015 14:13
Show Gist options
  • Save vivianspencer/a414cbbb6e0277067dcf to your computer and use it in GitHub Desktop.
Save vivianspencer/a414cbbb6e0277067dcf to your computer and use it in GitHub Desktop.
Create MySQL database and user
mysql -uroot -p
create database DB_NAME;
CREATE USER 'DB_USER' IDENTIFIED BY 'DB_PASSWORD';
GRANT ALL PRIVILEGES ON DB_NAME.* TO 'DB_USER';
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment