Created
May 23, 2014 23:46
-
-
Save djburdick/705f7120f9a0bfb82912 to your computer and use it in GitHub Desktop.
Add new mysql user. #mysql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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