2

I have been trying to install Keycloak but instead of the usual 'GRANT ALL PRIVILEGES' command to grant access to the database to the MySQL database, I need the exact minimum privileges to be granted. I have been looking at Keycloak documentation for this but I did not find any.

Thanks.

Lester
  • 597
  • 4
  • 16

1 Answers1

1

For those wondering, the following privileges work:

GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER, REFERENCES, INDEX, DROP ON `<database>`.* TO `<user>`@`<host>`;
Lester
  • 597
  • 4
  • 16