Skip to content

Instantly share code, notes, and snippets.

@cmpscabral
Last active February 14, 2017 18:00
Show Gist options
  • Save cmpscabral/6134188 to your computer and use it in GitHub Desktop.
Save cmpscabral/6134188 to your computer and use it in GitHub Desktop.
create mysql 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