Tech-Today
Keycloak overlay installation failed
While playing with keycloak I have encountered several related problems:
- Keycloak 3.2.1 downloadable with samples is not working running.
- Installing keycloak 3.2.1 overlay on Wildfly 10.1.Final fails.
Errors are:
- Caused by: org.jboss.modules.ModuleNotFoundException: org.keycloak.keycloak-server-subsystem:main
- "WFLYCTL0310: Extension module org.keycloak.keycloak-server-subsystem not found".
Solution:
- Inside WILDFLY_HOME\modules folder, create a new file layers.conf.
- Content of the file should be:
layers=keycloak
-
Exporting Keycloak Realm And Users
The following command will export a Keycloak realm along with all its clients, roles and users. ...
-
Secure Spring Boot Rest Project With Keycloak
1. OverviewIn this blog, we will cover the basics of securing a Spring project with Keycloak using keycloak-spring-boot-starter and keycloak-spring-security-adapter.2. LimitationKeycloak is already a well-documented topic that needs no further write up....
-
Enable Https / Ssl For Wildfly
Here are the steps I run through to enable SSL / HTTPS for Wildfly 14. Notice that instead of generating a key / certificate pair we instead use a special type of container for java which is a keystore. A keystore is a single file that contains both the...
-
Run Wildfly And Postgresql In Docker
Docker is a great tool to simulate a development environment. Not only that but it also makes that environment portable by having a docker/docker-compose configuration file. And that is what this blog is all about. We will launch a pre-configured docker...
-
Secure Angular4 App With Keycloak
Demo template is available for sale for $50. You can send payment via skype at:
[email protected] Disclaimer: This is not a tutorial on how to setup an Angular^4 project, nor are we going to discuss how to setup a Keycloak server. Needless to say, you...
Tech-Today