diff --git a/docbook/reference/en/en-US/modules/MigrationFromOlderVersions.xml b/docbook/reference/en/en-US/modules/MigrationFromOlderVersions.xml
index 68e48b4a1e..f4fdec29c8 100755
--- a/docbook/reference/en/en-US/modules/MigrationFromOlderVersions.xml
+++ b/docbook/reference/en/en-US/modules/MigrationFromOlderVersions.xml
@@ -102,6 +102,27 @@
to newer version and upgrade few methods, which has changed signature. Changes are really minor, but were needed to improve performance of federation.
+
+ WildFly 9.0.0.CR2
+
+ Following on from the distribution changes that was done in the last release the standalone download
+ of Keycloak is now based on WildFly 9.0.0.CR2. This als affects the overlay which can only be deployed
+ to WildFly 9.0.0.CR2 or JBoss EAP 6.4.0.GA. WildFly 8.2.0.Final is no longer supported for the server.
+
+
+
+ WildFly, JBoss EAP and JBoss AS7 adapters
+
+ There are now 3 separate adapter downloads for WildFly, JBoss EAP and JBoss AS7:
+
+ eap6 - for JBoss EAP 6.x
+ wf9 - for WildFly 9.x
+ wf8 - for WildFly 8.x
+ as7 - for JBoss AS 7.x
+
+ Make sure you grab the correct one.
+
+
Migrating from 1.2.0.Beta1 to 1.2.0.RC1
diff --git a/docbook/reference/en/en-US/modules/jboss-adapter.xml b/docbook/reference/en/en-US/modules/jboss-adapter.xml
index c89d9b1315..3995447e24 100755
--- a/docbook/reference/en/en-US/modules/jboss-adapter.xml
+++ b/docbook/reference/en/en-US/modules/jboss-adapter.xml
@@ -14,10 +14,17 @@
the Keycloak download site. They are also available as a maven artifact.
- Install on Wildfly:
+ Install on Wildfly 9:
$ cd $WILDFLY_HOME
-$ unzip keycloak-wildfly-adapter-dist.zip
+$ unzip keycloak-wf9-adapter-dist.zip
+
+
+
+ Install on Wildfly 8:
+
+$ cd $WILDFLY_HOME
+$ unzip keycloak-wf8-adapter-dist.zip
@@ -56,7 +63,6 @@ $ unzip keycloak-as7-adapter-dist.zip
]]>
-For AS7, the extension module is org.keycloak.keycloak-as7-subsystem.
Finally, you must specify a shared keycloak security domain.
diff --git a/docbook/reference/en/en-US/modules/server-installation.xml b/docbook/reference/en/en-US/modules/server-installation.xml
index 9c321a2e8b..214d88af49 100755
--- a/docbook/reference/en/en-US/modules/server-installation.xml
+++ b/docbook/reference/en/en-US/modules/server-installation.xml
@@ -43,9 +43,9 @@
- Install on existing WildFly 8.2.0.Final
+ Install on existing WildFly 9.0.0.CR2
- Keycloak can be installed into an existing WildFly 8.2.0.Final server. To do this download
+ Keycloak can be installed into an existing WildFly 9.0.0.CR2 server. To do this download
keycloak-overlay-&project.version;.zip or keycloak-overlay-&project.version;.tar.gz.
Once downloaded extract into the root directory of your WildFly installation. To start WildFly with Keycloak
run:
@@ -72,32 +72,9 @@
- Install on existing EAP 6.4.0.GA
+ Install on existing JBoss EAP 6.4.0.GA
- Keycloak can be installed into an existing EAP 6.4.0.GA server. To do this download
- keycloak-overlay-&project.version;.zip or keycloak-overlay-&project.version;.tar.gz.
- Once downloaded extract into the root directory of your EAP installation.
-
-
- To add Keycloak to the a EAP sever configurations (standalone.xml, standalone-ha.xml, etc.) open
- standalone/configuration/standalone-keycloak.xml and the configuration you want to add it
- to, for example standalone/configuration/standalone.xml. From standalone-keycloak.xml
- you need to copy 3 elements:
-
- <extension module="org.keycloak.keycloak-subsystem"/>
- <datasource jndi-name="java:jboss/datasources/KeycloakDS" ...>
- <subsystem xmlns="urn:jboss:domain:keycloak:1.0" ...>
-
-
- standalone-keycloak.xml is aimed at WildFly and won't work with EAP so you need to
- copy the required configuration
-
-
-
- Once the server is started log into the admin console at
- http://localhost:8080/auth/admin/index.html
- (username: admin and password: admin). Keycloak will then prompt you to
- enter in a new password.
+ Same procedure as JBoss EAP 6.4.0.GA, but download keycloak-overlay-eap6-&project.version;.zip or keycloak-overlay-eap6-&project.version;.tar.gz.
@@ -107,7 +84,7 @@
To install it first download keycloak-demo-&project.version;.zip or
keycloak-demo-&project.version;.tar.gz. Once downloaded extract it inside
keycloak-demo-&project.version; you'll find keycloak which contains
- a full WildFly 8.2.0.Final server with Keycloak Server and Adapters included. You'll also find docs
+ a full WildFly 9.0.0.CR2 server with Keycloak Server and Adapters included. You'll also find docs
and examples which contains everything you need to get started developing applications that use Keycloak.