Updates for RHSSO630
This commit is contained in:
parent
0f3615a357
commit
9026b89385
4 changed files with 11 additions and 42 deletions
|
@ -4,7 +4,9 @@
|
|||
.. link:topics/overview/recommended-reading.adoc[Recommended Reading]
|
||||
. link:topics/installation.adoc[Installation]
|
||||
.. link:topics/installation/system-requirements.adoc[System Requirements]
|
||||
{% if book.community %}
|
||||
.. link:topics/installation/distribution-files-community.adoc[Installing Distribution Files]
|
||||
{% endif %}
|
||||
.. link:topics/installation/distribution-files-product.adoc[Installing Distribution Files]
|
||||
.. link:topics/installation/directory-structure.adoc[Distribution Directory Structure]
|
||||
. link:topics/operating-mode.adoc[Choosing an Operating Mode]
|
||||
|
@ -21,7 +23,9 @@
|
|||
.. link:topics/database/datasource.adoc[Datasource Setup]
|
||||
.. link:topics/database/hibernate.adoc[Database Configuration]
|
||||
.. link:topics/database/unicode-considerations.adoc[Unicode considerations]
|
||||
{% if book.community %}
|
||||
. link:topics/mongo.adoc[Mongo DB Setup]
|
||||
{% endif %}
|
||||
. link:topics/network.adoc[Network Setup]
|
||||
.. link:topics/network/bind-address.adoc[Bind Addresses]
|
||||
.. link:topics/network/ports.adoc[Socket Port Bindings]
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
"title": "Server Installation and Configuration Guide",
|
||||
"project": {
|
||||
"name": "Red Hat Single Sign-On",
|
||||
"version": "7.0.0"
|
||||
"version": "7.1.0"
|
||||
},
|
||||
"community": false,
|
||||
"product": true,
|
||||
|
@ -55,11 +55,11 @@
|
|||
},
|
||||
"developerguide": {
|
||||
"name": "Server Developer Guide",
|
||||
"link": "https://access.redhat.com/documentation/en/red-hat-single-sign-on/7.0/server-developer-guide/"
|
||||
"link": "https://access.redhat.com/documentation/en/red-hat-single-sign-on/7.1-Beta/server-developer-guide/"
|
||||
},
|
||||
"adminguide": {
|
||||
"name": "Server Administration Guide",
|
||||
"link": "https://access.redhat.com/documentation/en/red-hat-single-sign-on/7.0/server-administration-guide/"
|
||||
"link": "https://access.redhat.com/documentation/en/red-hat-single-sign-on/7.1-Beta/server-administration-guide/"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ This chapter walks you through the directory structure of the server distributio
|
|||
.distribution directory structure
|
||||
image:../../{{book.images}}/files.png[alt="distribution"]
|
||||
|
||||
Let's examine some of the purposes of each directory
|
||||
Let's examine the purpose of some of the directories:
|
||||
|
||||
_bin/_::
|
||||
This contains various scripts to either boot the server or perform some other management action on the server.
|
||||
|
@ -28,11 +28,3 @@ _standalone/_::
|
|||
_themes/_::
|
||||
This directory contains all the html, style sheets, javascript files, and images used to display any UI screen displayed by the server.
|
||||
Here you can modify an existing theme or create your own. See the link:{{book.developerguide.link}}[{{book.developerguide.name}}] for more information on this.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -159,7 +159,7 @@ the load balancer server don't conflict with the authentication server instance
|
|||
----
|
||||
<servers>
|
||||
...
|
||||
<server name="server-one" group="auth-server-group">
|
||||
<server name="server-one" group="auth-server-group" auto-start="true">
|
||||
<socket-bindings port-offset="150"/>
|
||||
</server>
|
||||
</servers>
|
||||
|
@ -174,15 +174,6 @@ The structure of these per server directories ends up looking like any other {{b
|
|||
.Working Directories
|
||||
image:../../{{book.images}}/domain-server-dir.png[]
|
||||
|
||||
==== {{book.project.name}} JSON Configuration
|
||||
|
||||
Unfortunately, there is no centralized way to manage the _keycloak.json_ file. You'll have to manage a copy of this file
|
||||
in every server instance you deploy. This file must exist in the _.../domain/servers/{SERVER NAME}/configuration directory._
|
||||
|
||||
.JSON Configuration
|
||||
image:../../{{book.images}}/domain-json-config.png[]
|
||||
|
||||
|
||||
==== Domain Boot Script
|
||||
|
||||
When running the server in domain mode, there is a specific script you need to run to boot the server depending on your
|
||||
|
@ -264,7 +255,7 @@ $ add-user.sh
|
|||
To represent the user add the following to the server-identities definition <secret value="bWdtdDEyMyE=" />
|
||||
----
|
||||
|
||||
NOTE: The add-user.sh does not add user to {{book.project.name}} server but to the underlying JBoss Enterprise Application Platform. The credentials used and generated in the above script are only for example purpose. Please use the ones generated on your system.
|
||||
NOTE: The add-user.sh does not add user to {{book.project.name}} server but to the underlying JBoss Enterprise Application Platform. The credentials used and generated in the above script are only for example purpose. Please use the ones generated on your system.
|
||||
|
||||
Now cut and paste the secret value into the _.../domain/configuration/host-slave.xml_ file as follows:
|
||||
|
||||
|
@ -295,21 +286,3 @@ $ domain.sh --host-config=host-slave.xml
|
|||
----
|
||||
|
||||
To try it out, open your browser and go to http://localhost:8080/auth
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue