Skip to content

Instantly share code, notes, and snippets.

@Ulv
Last active January 10, 2017 12:16
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 Ulv/c3fc1f99fd875f6e07645b381fb892ea to your computer and use it in GitHub Desktop.
Save Ulv/c3fc1f99fd875f6e07645b381fb892ea to your computer and use it in GitHub Desktop.
Creates mysql database and user with permissions
CREATE DATABASE IF NOT EXISTS dbname;
GRANT ALL PRIVILEGES ON dbname.* TO 'dbuser'@'localhost' IDENTIFIED BY 'dbpassword';
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment