I have created a FreeBSD package for keycloak and I’m having trouble with my configuration.
The /auth page (photo) is displayed as expected. When I click on Administration Console I’m taken to /auth/admin/ where I see:
**{{notification.header}}** {{notification.message}}
Loading...
Immediately before this, I was playing with themes. Searching for this situation, I find I need to alter the database:
update REALM set ACCOUNT_THEME = null, ADMIN_THEME = null, LOGIN_THEME = null where id = 'your-realm-name'
- Is this correct?
- How do I manually update the database? If this was PostgreSQL or MySQL, I would know how to do that. This install is still using the defaults.
Thank you.