Created
January 18, 2014 10:43
-
-
Save prawin/8488791 to your computer and use it in GitHub Desktop.
MySQL Privileges
This file contains 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
GRANT ALL PRIVILEGES ON test_database.* TO 'user_name'@'%' WITH GRANT OPTION; | |
GRANT ALL PRIVILEGES ON test_database.* TO 'user_name'@'ip' WITH GRANT OPTION; | |
GRANT ALL PRIVILEGES ON test_database.* TO 'user_name'@'domain' WITH GRANT OPTION; | |
FLUSH PRIVILEGES; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment