Skip to content

Instantly share code, notes, and snippets.

@arielallon
Created June 9, 2014 18:47
Show Gist options
  • Select an option

  • Save arielallon/31621e128d3e8dc12b5b to your computer and use it in GitHub Desktop.

Select an option

Save arielallon/31621e128d3e8dc12b5b to your computer and use it in GitHub Desktop.
MySQL create DB & assign a user
CREATE DATABASE dbname;
CREATE USER 'dbuser'@'%' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON dbname.* TO 'dbuser'@'%';
FLUSH PRIVILEGES;
@arielallon
Copy link
Author

@'localhost' for localhost access

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment