Skip to content

Instantly share code, notes, and snippets.

@nghiahsgs
Created January 24, 2022 11:19
Embed
What would you like to do?
```
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