0

I recently configured KeyCloak in my existing Wildfly server using the overlay installation: bin/jboss-cli.sh --file=bin/keycloak-install.cli

I would like to remove it or disable it now. I'm pretty new to Wildfly. I think it should be the same way how to disable a subsystem?

AMRAMAC
  • 11
  • 1
  • 1

1 Answers1

0

The easiest way to achieve it will be to open standalone.xml file in the %JBossHome%>standalone>configuration folder and remove/comment out the keycloak subsystem.

The subsystem configuration will look something like this

<subsystem xmlns="urn:jboss:domain:keycloak-server:1.1">
    <web-context>auth</web-context>
</subsystem>
Shiva
  • 6,677
  • 4
  • 36
  • 61