Skip to content

Instantly share code, notes, and snippets.

@dkrusky
Created April 3, 2018 10:30
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 dkrusky/5a5314c0f4fcecae8fd0fcdcf50cb0fe to your computer and use it in GitHub Desktop.
Save dkrusky/5a5314c0f4fcecae8fd0fcdcf50cb0fe to your computer and use it in GitHub Desktop.
Grant root full remote access to mysql database with grant abilities
grant all privileges on *.* to 'root'@'%' with grant option;
flush privileges;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment