Skip to content

Instantly share code, notes, and snippets.

@maxpowel
Created September 27, 2017 09:56
Show Gist options
  • Save maxpowel/9bfe57285a1a542b0c8ca20e287ccd0f to your computer and use it in GitHub Desktop.
Save maxpowel/9bfe57285a1a542b0c8ca20e287ccd0f to your computer and use it in GitHub Desktop.
Create and grant permissions in Mysql
CREATE DATABASE testdb
GRANT ALL PRIVILEGES ON testdb.* To 'testuser'@'%' IDENTIFIED BY 'plainPassword';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment