KEYCLOAK-15248 Remove duplicated steps in getting started guide
This commit is contained in:
parent
e213c1c791
commit
6fdf747196
1 changed files with 0 additions and 99 deletions
|
@ -109,102 +109,3 @@ $ ./standalone.sh
|
|||
----
|
||||
> ...\standalone.bat
|
||||
----
|
||||
|
||||
ifeval::[{project_community}==true]
|
||||
. Download the *WildFly OpenID Connect Client Adapter* distribution from link:https://www.keycloak.org/downloads.html[keycloak.org].
|
||||
endif::[]
|
||||
|
||||
ifeval::[{project_product}==true]
|
||||
. Download the *Client Adapter for EAP 7* from the https://access.redhat.com/jbossnetwork/restricted/listSoftware.html?downloadType=distributions&product=core.service.rhsso[Red Hat customer portal].
|
||||
endif::[]
|
||||
|
||||
. Change to the root directory of {appserver_name}.
|
||||
|
||||
. Unzip the downloaded client adapter in this directory.
|
||||
+
|
||||
[source,bash,subs=+attributes]
|
||||
----
|
||||
$ unzip <filename>.zip
|
||||
----
|
||||
|
||||
. Change to the bin directory.
|
||||
+
|
||||
[source,bash,subs=+attributes]
|
||||
----
|
||||
$ cd bin
|
||||
----
|
||||
|
||||
. Run the appropriate script for your platform.
|
||||
+
|
||||
[NOTE]
|
||||
====
|
||||
If you receive a `file not found`, make sure you used `unzip` in the previous step. This method of extraction installs the files in the right place.
|
||||
====
|
||||
|
||||
ifeval::[{project_product}==true]
|
||||
+
|
||||
.EAP 7.3 on Linux/Unix
|
||||
[source,bash,subs=+attributes]
|
||||
----
|
||||
$ ./jboss-cli.sh --file=adapter-elytron-install-offline.cli
|
||||
----
|
||||
|
||||
+
|
||||
.EAP 7.3 on Windows
|
||||
[source,bash,subs=+attributes]
|
||||
----
|
||||
> jboss-cli.bat --file=adapter-elytron-install-offline.cli
|
||||
----
|
||||
endif::[]
|
||||
|
||||
ifeval::[{project_community}==true]
|
||||
+
|
||||
.WildFly 10 on Linux/Unix
|
||||
[source,bash,subs=+attributes]
|
||||
----
|
||||
$ ./jboss-cli.sh --file=adapter-install-offline.cli
|
||||
----
|
||||
|
||||
+
|
||||
.WildFly 10 on Windows
|
||||
[source,bash,subs=+attributes]
|
||||
----
|
||||
> jboss-cli.bat --file=adapter-install-offline.cli
|
||||
----
|
||||
|
||||
+
|
||||
.Wildfly 11 on Linux/Unix
|
||||
[source,bash,subs=+attributes]
|
||||
----
|
||||
$ ./jboss-cli.sh --file=adapter-elytron-install-offline.cli
|
||||
----
|
||||
|
||||
+
|
||||
.Wildfly 11 on Windows
|
||||
[source,bash,subs=+attributes]
|
||||
----
|
||||
> jboss-cli.bat --file=adapter-elytron-install-offline.cli
|
||||
----
|
||||
endif::[]
|
||||
|
||||
+
|
||||
[NOTE]
|
||||
====
|
||||
This script makes the necessary edits to the `.../standalone/configuration/standalone.xml` file.
|
||||
====
|
||||
|
||||
. Start the application server.
|
||||
|
||||
+
|
||||
.Linux/Unix
|
||||
[source,bash,subs=+attributes]
|
||||
----
|
||||
$ ./standalone.sh
|
||||
----
|
||||
|
||||
+
|
||||
.Windows
|
||||
[source,bash,subs=+attributes]
|
||||
----
|
||||
> ...\standalone.bat
|
||||
----
|
||||
|
|
Loading…
Reference in a new issue