Created
December 19, 2022 03:57
-
-
Save leoborlot/1191c336ba1a6b8ac2dc917c847acd9a to your computer and use it in GitHub Desktop.
Create a new user for Strapi connect in to mysql8 server.
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
| CREATE USER 'username'@'%' IDENTIFIED WITH mysql_native_password BY 'password'; | |
| GRANT ALL PRIVILEGES ON database_name.* TO 'username'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment