Skip to content

Instantly share code, notes, and snippets.

@peter-mcconnell
Created February 5, 2014 14:55
Show Gist options
  • Select an option

  • Save peter-mcconnell/8825374 to your computer and use it in GitHub Desktop.

Select an option

Save peter-mcconnell/8825374 to your computer and use it in GitHub Desktop.
MySQL create user
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment