From 0f27a023f8d7a189e9030b3459dbd5f0b8f65d5a Mon Sep 17 00:00:00 2001 From: Matthew Helmke Date: Thu, 17 Jan 2019 07:40:30 -0600 Subject: [PATCH] KEYCLOAK-9343 fixes in getting started guide --- .../topics/first-boot/distribution-files-product.adoc | 8 ++++---- getting_started/topics/secure-jboss-app/before.adoc | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/getting_started/topics/first-boot/distribution-files-product.adoc b/getting_started/topics/first-boot/distribution-files-product.adoc index 35054f6afa..ff8da3f8a1 100644 --- a/getting_started/topics/first-boot/distribution-files-product.adoc +++ b/getting_started/topics/first-boot/distribution-files-product.adoc @@ -3,22 +3,22 @@ Download the {project_name} Server: -* *rh-sso-{project_version}.GA.zip* +* *rh-sso-{project_version}.zip* NOTE: This file can be downloaded from https://access.redhat.com/jbossnetwork/restricted/listSoftware.html?downloadType=distributions&product=core.service.rhsso[the Red Hat customer portal]. -The *rh-sso-{project_version}.GA.zip* file is the server-only distribution. It contains only the scripts and binaries to run the {project_name} server. +The *rh-sso-{project_version}.zip* file is the server-only distribution. It contains only the scripts and binaries to run the {project_name} server. Place the file in a directory you choose and use the `unzip` utility to unpack it, like this: .Linux/Unix [source,bash,subs=+attributes] ---- -$ unzip rh-sso-{project_version}.GA.zip +$ jar xf rh-sso-{project_version}.zip ---- .Windows [source,bash,subs=+attributes] ---- -> unzip rh-sso-{project_version}.GA.zip +> unzip rh-sso-{project_version}.zip ---- diff --git a/getting_started/topics/secure-jboss-app/before.adoc b/getting_started/topics/secure-jboss-app/before.adoc index c1cc545731..ca8681cf4b 100644 --- a/getting_started/topics/secure-jboss-app/before.adoc +++ b/getting_started/topics/secure-jboss-app/before.adoc @@ -3,7 +3,7 @@ Before you can secure a Java servlet application, you must complete the installation of {project_name} and create the initial admin user as shown in <<_install-boot, Installing and Booting>>. -There is one caveat: Even though {appserver_name} is bundled with keycloak, you cannot use this as an application container. Instead, you must run a separate {appserver_name} instance on the same machine as the {project_name} server to run your Java servlet application. Run the {project_name} using a different port than the {appserver_name}, to avoid port conflicts. +There is one caveat: Even though {appserver_name} is bundled with {project_name}, you cannot use this as an application container. Instead, you must run a separate {appserver_name} instance on the same machine as the {project_name} server to run your Java servlet application. Run the {project_name} using a different port than the {appserver_name}, to avoid port conflicts. To adjust the port used, change the value of the `jboss.socket.binding.port-offset` system property when starting the server from the command line. The value of this property is a number that will be added to the base value of every port opened by the {project_name} server.