Last active
August 30, 2016 16:45
-
-
Save andregoncalves/a671b7887b78a3e5bd738a62b8934336 to your computer and use it in GitHub Desktop.
Create mysql user for app access
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
create user <user>@localhost; | |
set password for <user>@localhost = PASSWORD("xxx"); | |
grant all privileges on wordpress_<app>.* to <user>@localhost identified by "xxx"; | |
flush privileges; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment