Skip to content

Instantly share code, notes, and snippets.

@jkanclerz
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save jkanclerz/ff837b1cfbfadf9e3d60 to your computer and use it in GitHub Desktop.

Select an option

Save jkanclerz/ff837b1cfbfadf9e3d60 to your computer and use it in GitHub Desktop.
create database databasename;
create user 'user' identified by 'password';
grant all privileges on databasename.* to 'user'@localhost identified by 'password';
grant all privileges on databasename.* to 'user'@host;
grant all privileges on databasename.* to 'user'@%;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment