Last active
July 23, 2018 21:11
-
-
Save ishrakr/eb26c3cbeb44c7f37d246c5fc4fbc5bd to your computer and use it in GitHub Desktop.
This file contains 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
# Add User | |
CREATE USER 'user'@'localhost' IDENTIFIED BY 'password'; | |
# Grant Privilege | |
GRANT ALL PRIVILEGES ON * . * TO 'user'@'localhost' WITH GRANT OPTION; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment