Skip to content

Instantly share code, notes, and snippets.

@nghiahsgs
Created January 24, 2022 11:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nghiahsgs/1b038d60e31bd581e91b63b2875325a5 to your computer and use it in GitHub Desktop.
Save nghiahsgs/1b038d60e31bd581e91b63b2875325a5 to your computer and use it in GitHub Desktop.
```
CREATE USER 'username'@'%' IDENTIFIED BY 'new-password';
FLUSH PRIVILEGES;
```
OR
```
CREATE USER 'username'@'%' IDENTIFIED WITH mysql_native_password BY 'new-password';
FLUSH PRIVILEGES;
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment