keycloak-scim/getting_started/topics/secure-jboss-app/install-client-adapter.adoc

63 lines
1.2 KiB
Text
Raw Normal View History

2016-05-11 02:48:33 +00:00
=== Installing the Client Adapter
2016-05-11 02:48:33 +00:00
Download the {{book.appserver.name}} distribution and unzip
it into a directory on your machine.
{% if book.community %}
Next download the keycloak-wildfly-adapter-dist-{{book.project.version}}.zip distribution.
{% endif %}
{% if book.product %}
Next download the RH-SSO-{{book.project.version}}-eap7-adapter.zip distribution.
{% endif %}
Unzip this file into the root directory of your {{book.appserver.name}} distribution.
Next perform the following actions:
2016-05-11 02:48:33 +00:00
.WildFly 10 and Linux/Unix
2016-05-11 02:48:33 +00:00
[source]
----
$ cd bin
$ ./jboss-cli.sh --file=adapter-install-offline.cli
----
.WildFly 10 and Windows
2016-05-11 02:48:33 +00:00
[source]
----
> cd bin
> jboss-cli.bat --file=adapter-install-offline.cli
----
{% if book.community %}
.Wildfly 11 and Linux/Unix
[source]
----
$ cd bin
$ ./jboss-cli.sh --file=adapter-elytron-install-offline.cli
----
.Wildfly 11 and Windows
[source]
----
> cd bin
> jboss-cli.bat --file=adapter-elytron-install-offline.cli
----
{% endif %}
2016-05-11 02:48:33 +00:00
This script will make the appropriate edits to the _.../standalone/configuration/standalone.xml_ file of your app
server distribution. Finally, boot the application server.
2016-05-11 02:48:33 +00:00
.Linux/Unix
[source]
----
$ .../bin/standalone.sh
----
.Windows
[source]
----
> ...\bin\standalone.bat
----