2016-05-11 02:48:33 +00:00
2016-12-12 20:20:58 +00:00
=== Installing the Client Adapter
2016-05-11 02:48:33 +00:00
2018-06-07 07:05:21 +00:00
Download the {appserver_name} distribution and extract it from the compressed file into a directory on your machine.
2016-06-09 08:14:10 +00:00
2017-08-28 12:50:14 +00:00
ifeval::[{project_community}==true]
2018-06-07 07:05:21 +00:00
Download the WildFly OpenID Connect adapter distribution from link:https://www.keycloak.org/downloads.html[keycloak.org].
2017-08-28 12:50:14 +00:00
endif::[]
2016-06-09 08:14:10 +00:00
2017-08-28 12:50:14 +00:00
ifeval::[{project_product}==true]
2018-06-07 07:05:21 +00:00
Download the RH-SSO-{project_version}-eap7-adapter.zip distribution.
2017-08-28 12:50:14 +00:00
endif::[]
2016-06-09 08:14:10 +00:00
2018-06-07 07:05:21 +00:00
Extract the contents of this file into the root directory of your {appserver_name} distribution.
2016-06-09 08:14:10 +00:00
2018-06-07 07:05:21 +00:00
Run the appropriate script for your platform:
2016-05-11 02:48:33 +00:00
2018-12-13 18:39:35 +00:00
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]
2017-03-31 15:16:00 +00:00
.WildFly 10 and Linux/Unix
2018-06-07 17:27:48 +00:00
[source,bash,subs=+attributes]
2016-05-11 02:48:33 +00:00
----
$ cd bin
$ ./jboss-cli.sh --file=adapter-install-offline.cli
----
2017-03-31 15:16:00 +00:00
.WildFly 10 and Windows
2018-06-07 17:27:48 +00:00
[source,bash,subs=+attributes]
2016-05-11 02:48:33 +00:00
----
> cd bin
> jboss-cli.bat --file=adapter-install-offline.cli
----
2018-06-07 17:27:48 +00:00
.Wildfly 11 and Linux/Unix
[source,bash,subs=+attributes]
2017-03-31 15:16:00 +00:00
----
$ cd bin
$ ./jboss-cli.sh --file=adapter-elytron-install-offline.cli
----
2018-06-07 17:27:48 +00:00
.Wildfly 11 and Windows
[source,bash,subs=+attributes]
2017-03-31 15:16:00 +00:00
----
> cd bin
> jboss-cli.bat --file=adapter-elytron-install-offline.cli
----
2018-12-13 18:39:35 +00:00
endif::[]
2017-03-31 15:16:00 +00:00
2018-08-31 16:16:51 +00:00
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.
2018-12-13 18:39:35 +00:00
2018-06-07 07:05:21 +00:00
Start the application server.
2016-05-11 02:48:33 +00:00
.Linux/Unix
2018-06-07 17:27:48 +00:00
[source,bash,subs=+attributes]
2016-05-11 02:48:33 +00:00
----
2018-08-31 16:17:49 +00:00
$ cd bin
$ ./standalone.sh
2016-05-11 02:48:33 +00:00
----
.Windows
2018-06-07 17:27:48 +00:00
[source,bash,subs=+attributes]
2016-05-11 02:48:33 +00:00
----
> ...\bin\standalone.bat
----