Skip to content

Instantly share code, notes, and snippets.

@skihero
Created March 7, 2011 11:55
Show Gist options
  • Save skihero/858413 to your computer and use it in GitHub Desktop.
Save skihero/858413 to your computer and use it in GitHub Desktop.
create mysql user
Setting the priveleges for remote users in mysql
create user 'remote'@'10.af.a.56 identified by '12345' ;
grant all on test.* to 'remote'@'10.af.xa.56' identified by '12345 ' ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment