Skip to content

Instantly share code, notes, and snippets.

@vallard
Created November 15, 2014 06:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vallard/ea5398e1af27d60a51c3 to your computer and use it in GitHub Desktop.
Save vallard/ea5398e1af27d60a51c3 to your computer and use it in GitHub Desktop.
MySQL Notes
# add remote user
GRANT ALL privileges on *.* to 'tdiet'@'%' identified by 'PASSWORD' with grant option;
# verify privileges of remote user
mysql> SELECT * from information_schema.user_privileges where grantee like "'tdiet'%";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment