incorporated QE feddback comments
This commit is contained in:
parent
42276eece3
commit
9281c4495d
6 changed files with 13 additions and 13 deletions
|
@ -7,7 +7,7 @@ Alternatively you can go to the console url directly at http://localhost:8080/au
|
|||
.Login Page
|
||||
image:../../{{book.images}}/login-page.png[]
|
||||
|
||||
Enter the username and password you created on the Welcome Page. This will bring you to the {{book.project.name}} Admin Console
|
||||
Enter the username and password you created on the Welcome Page. This will bring you to the {{book.project.name}} Admin Console.
|
||||
|
||||
.Admin Console
|
||||
image:../../{{book.images}}/admin-console.png[]
|
||||
|
|
|
@ -7,7 +7,7 @@ Next, login to the User Account Service of your `demo` realm with the user you j
|
|||
User Account Link::
|
||||
http://localhost:8080/auth/realms/demo/account
|
||||
|
||||
Enter in the username and temporary password you created. You will be asked to change and create a permanent password after you
|
||||
Enter the username and temporary password you created. You will be asked to change and create a permanent password after you
|
||||
successfully login.
|
||||
|
||||
.Update Password
|
||||
|
|
|
@ -8,7 +8,7 @@ Login to the {{book.project.name}} Admin Console using the account you created i
|
|||
Admin Console Link::
|
||||
http://localhost:8080/auth/admin/
|
||||
|
||||
Mouse over the top left corner drop down menu that is titled with `Master`. If you are logged in the master realm
|
||||
Mouseover the top left corner drop down menu that is titled with `Master`. If you are logged in the master realm
|
||||
this drop down menu lists all the realms created. The last entry of this drop down menu is always `Add Realm`. Click
|
||||
this to add a realm.
|
||||
|
||||
|
@ -22,7 +22,7 @@ enter in `demo` for the realm name and click `Create`.
|
|||
image:../../{{book.images}}/create-realm.png[]
|
||||
|
||||
After creating the realm you are brought back to the main Admin Console page. The current realm will now be set to
|
||||
`demo`. You can switch between managing the `master` realm and the realm you just created by doing a mouse over on the
|
||||
`demo`. You can switch between managing the `master` realm and the realm you just created by doing a mouseover on the
|
||||
top left corner drop down menu.
|
||||
|
||||
|
||||
|
|
|
@ -22,9 +22,9 @@ the page that will allo you to do this.
|
|||
.Set Temporary Password
|
||||
image:../../{{book.images}}/credentials.png[]
|
||||
|
||||
Enter in a new password and retype it within the `Password Confirmation` field. Once you do this a red `Reset Password`
|
||||
Enter a new password and retype it within the `Password Confirmation` field. Once you do this a red `Reset Password`
|
||||
button should reappear. Clicking on that will reset the user's password to the new one you specified. Please note that
|
||||
this is a temporary password and the user will be required to change it after they first log in. You can make it permanent
|
||||
this is a temporary password and the users are required to change it after they first log in. You can make it permanent
|
||||
by flipping the `Temporary` switch from `On` to `Off` before you click the `Reset Password` button.
|
||||
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ You can obtain the code by cloning the
|
|||
quickstart repo at git@github.com:jboss-developer/rh-sso-quickstarts.git. Follow these steps to download the code, build it,
|
||||
and deploy it. Make sure your JBoss EAP or Wildfly app server instance is running before you start these steps!
|
||||
|
||||
.clone project
|
||||
.Clone Project
|
||||
[source]
|
||||
----
|
||||
$ git clone git@github.com:jboss-developer/rh-sso-quickstarts.git
|
||||
|
@ -23,7 +23,7 @@ You should see some text scroll down in the app server console window. After th
|
|||
|
||||
http://localhost:8080/vanilla
|
||||
|
||||
.app login page
|
||||
.App Login Page
|
||||
image:../../{{book.images}}/app-login-page.png[]
|
||||
|
||||
If you open up the application's _web.xml_ file you would see that the application is secured via `BASIC` authentication.
|
||||
|
@ -31,7 +31,7 @@ If you click on the login button on the login page, the browser
|
|||
will pop up a BASIC auth login dialog.
|
||||
|
||||
|
||||
.app login dialog
|
||||
.App Login Dialog
|
||||
image:../../{{book.images}}/client-auth-required.png[]
|
||||
|
||||
|
||||
|
|
|
@ -7,14 +7,14 @@ Open this file and search for the following text:
|
|||
|
||||
[source,xml]
|
||||
----
|
||||
<subsystem xmlns="urn:jboss:domain:keycloak:1.1"/>
|
||||
<subsystem xmlns="urn:jboss:domain:keycloak-server:1.1"/>
|
||||
----
|
||||
|
||||
Modify this a little bit to prepare it for pasting in your template from the `Installation` tab.
|
||||
|
||||
[source,xml]
|
||||
----
|
||||
<subsystem xmlns="urn:jboss:domain:keycloak:1.1">
|
||||
<subsystem xmlns="urn:jboss:domain:keycloak-server:1.1">
|
||||
</subsystem>
|
||||
----
|
||||
|
||||
|
@ -22,7 +22,7 @@ Within the `subsystem` element, paste in the template. It will look something l
|
|||
|
||||
[source,xml]
|
||||
----
|
||||
<subsystem xmlns="urn:jboss:domain:keycloak:1.1">
|
||||
<subsystem xmlns="urn:jboss:domain:keycloak-server:1.1">
|
||||
<secure-deployment name="WAR MODULE NAME.war">
|
||||
<realm>demo</realm>
|
||||
<realm-public-key>MIIBIjANBgkqhkiG9B</realm-public-key>
|
||||
|
@ -38,7 +38,7 @@ Change the `WAR MODULE NAME` text to be `vanilla` as follows:
|
|||
|
||||
[source,xml]
|
||||
----
|
||||
<subsystem xmlns="urn:jboss:domain:keycloak:1.1">
|
||||
<subsystem xmlns="urn:jboss:domain:keycloak-server:1.1">
|
||||
<secure-deployment name="vanilla.war">
|
||||
...
|
||||
</subsystem>
|
||||
|
|
Loading…
Reference in a new issue