Skip to content

Instantly share code, notes, and snippets.

@djburdick
Created May 23, 2014 23:46
Show Gist options
  • Select an option

  • Save djburdick/705f7120f9a0bfb82912 to your computer and use it in GitHub Desktop.

Select an option

Save djburdick/705f7120f9a0bfb82912 to your computer and use it in GitHub Desktop.
Add new mysql user. #mysql
grant all privileges on prod.* to 'produser'@'%' identified by 'password';
GRANT USAGE ON *.* TO 'newproduser'@'%' REQUIRE SSL;
flush privileges;
show grants for newproduser;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment