Skip to content

Instantly share code, notes, and snippets.

@marsyang1
Created August 30, 2016 02:21
Show Gist options
  • Select an option

  • Save marsyang1/ac2a6724875e87f73347392699197fbf to your computer and use it in GitHub Desktop.

Select an option

Save marsyang1/ac2a6724875e87f73347392699197fbf to your computer and use it in GitHub Desktop.
mysql add user and grant user example
CREATE USER 'confluence'@'%' IDENTIFIED BY 'confluence';
GRANT ALL ON confluence.* TO 'confluence'@'%';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment