keycloak-scim/getting_started/topics/secure-jboss-app/install-client-adapter.adoc
jsbach-jung b409fdc846 Newbie friendly: "Wildfly 11" -> "Wildfly 11+"
For a first-time user, I believe 11+ is less confusing. I had to search articles to make sure that 11 actually meant 11+. I thought it was possible that Wildfly 12 and above didn't require any action to install the adapter.
2020-02-14 09:34:42 +01:00

94 lines
2 KiB
Text

=== Installing the Client Adapter
Download the {appserver_name} distribution and extract it from the compressed file into a directory on your machine.
ifeval::[{project_community}==true]
Download the WildFly OpenID Connect adapter distribution from link:https://www.keycloak.org/downloads.html[keycloak.org].
endif::[]
ifeval::[{project_product}==true]
Download the RH-SSO-{project_version}-eap7-adapter.zip distribution.
endif::[]
Extract the contents of this file into the root directory of your {appserver_name} distribution.
Run the appropriate script for your platform:
ifeval::[{project_product}==true]
.EAP 6.3 and Linux/Unix
[source,bash,subs=+attributes]
----
$ cd bin
$ ./jboss-cli.sh --file=adapter-install-offline.cli
----
.EAP 6.3 and Windows
[source,bash,subs=+attributes]
----
> cd bin
> jboss-cli.bat --file=adapter-install-offline.cli
----
.EAP 7.2.5 and Linux/Unix
[source,bash,subs=+attributes]
----
$ cd bin
$ ./jboss-cli.sh --file=adapter-elytron-install-offline.cli
----
.EAP 7.2.5 and Windows
[source,bash,subs=+attributes]
----
> cd bin
> jboss-cli.bat --file=adapter-elytron-install-offline.cli
----
endif::[]
ifeval::[{project_community}==true]
.WildFly 10 and Linux/Unix
[source,bash,subs=+attributes]
----
$ cd bin
$ ./jboss-cli.sh --file=adapter-install-offline.cli
----
.WildFly 10 and Windows
[source,bash,subs=+attributes]
----
> cd bin
> jboss-cli.bat --file=adapter-install-offline.cli
----
.Wildfly 11+ and Linux/Unix
[source,bash,subs=+attributes]
----
$ cd bin
$ ./jboss-cli.sh --file=adapter-elytron-install-offline.cli
----
.Wildfly 11+ and Windows
[source,bash,subs=+attributes]
----
> cd bin
> jboss-cli.bat --file=adapter-elytron-install-offline.cli
----
endif::[]
NOTE: This script will make the necessary edits to the `.../standalone/configuration/standalone.xml` file of your app server distribution and may take some time to complete.
Start the application server.
.Linux/Unix
[source,bash,subs=+attributes]
----
$ cd bin
$ ./standalone.sh
----
.Windows
[source,bash,subs=+attributes]
----
> ...\bin\standalone.bat
----