Skip to content

Instantly share code, notes, and snippets.

@jubstuff
Created December 22, 2014 18:54
Show Gist options
  • Select an option

  • Save jubstuff/b961c8eacc825da6278c to your computer and use it in GitHub Desktop.

Select an option

Save jubstuff/b961c8eacc825da6278c to your computer and use it in GitHub Desktop.
Create user in Mysql
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