Created
June 9, 2014 04:07
-
-
Save dukeofgaming/e7aa7f35dfc90240fa9b to your computer and use it in GitHub Desktop.
Grant MySQL permissions to restricted host
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
use mysql; | |
grant all on *.* to user@'123.45.67.89' identified by 'password'; | |
flush privileges; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment