Created
November 15, 2014 06:46
-
-
Save vallard/ea5398e1af27d60a51c3 to your computer and use it in GitHub Desktop.
MySQL Notes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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