Last active
February 20, 2018 19:55
-
-
Save cengizhancaliskan/7890fd059e0a34c06ccdd13a05f7d300 to your computer and use it in GitHub Desktop.
Create MySql User
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
# Local | |
CREATE USER 'ryan'@'localhost' IDENTIFIED BY 'babel'; | |
GRANT ALL PRIVILEGES ON *.* TO 'ryan'@'localhost' WITH GRANT OPTION; | |
# Anywhere | |
CREATE USER 'ryan'@'%' IDENTIFIED BY 'babel'; | |
GRANT ALL PRIVILEGES ON *.* TO 'ryan'@'%' WITH GRANT OPTION; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment