Skip to content

Instantly share code, notes, and snippets.

@leoborlot
Created December 19, 2022 03:57
Show Gist options
  • Select an option

  • Save leoborlot/1191c336ba1a6b8ac2dc917c847acd9a to your computer and use it in GitHub Desktop.

Select an option

Save leoborlot/1191c336ba1a6b8ac2dc917c847acd9a to your computer and use it in GitHub Desktop.
Create a new user for Strapi connect in to mysql8 server.
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