Skip to content

Instantly share code, notes, and snippets.

@cengizhancaliskan
Last active February 20, 2018 19:55
Show Gist options
  • Save cengizhancaliskan/7890fd059e0a34c06ccdd13a05f7d300 to your computer and use it in GitHub Desktop.
Save cengizhancaliskan/7890fd059e0a34c06ccdd13a05f7d300 to your computer and use it in GitHub Desktop.
Create MySql User
# 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