Skip to content

Instantly share code, notes, and snippets.

@gitDbits
Created October 30, 2019 15:58
Show Gist options
  • Select an option

  • Save gitDbits/f209b6e749fd22cf42fc7b77838fbe31 to your computer and use it in GitHub Desktop.

Select an option

Save gitDbits/f209b6e749fd22cf42fc7b77838fbe31 to your computer and use it in GitHub Desktop.
Create user mysql terminal
# Create user and credentials
CREATE USER 'new_user'@'localhost' IDENTIFIED BY 'password';
# Hability privilegies user
GRANT ALL PRIVILEGES ON * . * TO 'new_user'@'localhost';
# Reload privilegies
FLUSH PRIVILEGES;
# Login new user terminal
mysql -u [nome do usuário]-p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment