Skip to content

Instantly share code, notes, and snippets.

@jennifersmith
Created June 19, 2011 20:36
Show Gist options
  • Save jennifersmith/1034716 to your computer and use it in GitHub Desktop.
Save jennifersmith/1034716 to your computer and use it in GitHub Desktop.
Create mysql user
CREATE USER 'monty'@'localhost' IDENTIFIED BY 'some_pass';
mysql> GRANT ALL PRIVILEGES ON *.* TO 'monty'@'localhost'
-> WITH GRANT OPTION;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment