Skip to content

Instantly share code, notes, and snippets.

@mwnorman
Created May 28, 2010 14:47
Show Gist options
  • Save mwnorman/417236 to your computer and use it in GitHub Desktop.
Save mwnorman/417236 to your computer and use it in GitHub Desktop.
CREATE DATABASE db;
CREATE USER user IDENTIFIED BY PASSWORD 'password';
GRANT ALL ON db.* TO 'user'@'localhost';
GRANT ALL ON db.* TO 'user'@'%'; -- # support remote logins
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment