Skip to content

Instantly share code, notes, and snippets.

@dukeofgaming
Created June 9, 2014 04:07
Show Gist options
  • Save dukeofgaming/e7aa7f35dfc90240fa9b to your computer and use it in GitHub Desktop.
Save dukeofgaming/e7aa7f35dfc90240fa9b to your computer and use it in GitHub Desktop.
Grant MySQL permissions to restricted host
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