I ran into the same problem as David Willson describes in the comments, namely a NullPointerException at org.keycloak.models.sessions.infinispan.initializer.OfflineUserSessionLoader.init(OfflineUserSessionLoader.java:25). Looking at the code, it seems
as though a UserSessionPersister was coming back null.
I added to keycloak-server.json the following:
"userSessionPersister": {
"provider" : "jpa"
},
and now everything starts ok. Is this the appropriate fix for a clustered configuration?