Trying out Keycloak
This guide helps you practice using Keycloak to evaluate it before you use it in a production environment. It includes instructions for installing the Keycloak server in standalone mode, creating accounts and realms for managing users and applications, and securing a WildFly server application.
Installing a sample instance of Keycloak
This section describes how to install and start a Keycloak server in standalone mode, set up the initial admin user, and log in to the Keycloak Admin Console.
Installing the Server
You can install the server on Linux or Windows. The server download ZIP file contains the scripts and binaries to run the Keycloak server.
-
Download keycloak-12.0.4.[zip|tar.gz] from Keycloak downloads.
-
Place the file in a directory you choose.
-
Unpack the ZIP file using the appropriate
unzip
utility, such as unzip, tar, or Expand-Archive.Linux/Unix$ unzip keycloak-12.0.4.zip or $ tar -xvzf keycloak-12.0.4.tar.gz
Windows> Expand-Archive -Path 'C:Downloads\keycloak-12.0.4.zip` -DestinationPath 'C:\Downloads'
Starting the Keycloak server
You start the server on the system where you installed it.
-
You saw no errors during the Keycloak server installation.
-
Go to the
bin
directory of the server distribution. -
Run the
standalone
boot script.Linux/Unix$ cd bin $ ./standalone.sh
Windows> ...\bin\standalone.bat
Creating the admin account
Before you can use Keycloak, you need to create an admin account which you use to log in to the Keycloak admin console.
-
You saw no errors when you started the Keycloak server.
-
Open http://localhost:8080/auth in your web browser.
The welcome page opens, confirming that the server is running.
Welcome page -
Enter a username and password to create an initial admin user.
Logging into the admin console
After you create the initial admin account, you can log in to the admin console. In this console, you add users and register applications to be secured by Keycloak.
-
You have an admin account for the admin console.
-
Click the Administration Console link on the Welcome page or go directly to http://localhost:8080/auth/admin/ (the console URL).
The Administration Console is generally referred to as the admin console for short in Keycloak documentation.
-
Enter the username and password you created on the Welcome page to open the admin console.
Admin console login screenThe initial screen for the admin console appears.
Admin console
Now that you can log into the admin console, you can begin creating realms where administrators can create users and give them access to applications. For more details, see Creating a realm and a user.
Creating a realm and a user
The first use of the Keycloak admin console is to create a realm and create a user in that realm. You use that user to log in to your new realm and visit the built-in account console, to which all users have access.
Realms and users
When you log in to the admin console, you work in a realm, which is a space where you manage objects. Two types of realms exist:
-
Master realm
- This realm was created for you when you first started Keycloak. It contains the admin account you created at the first login. You use this realm only to create other realms. -
Other realms
- These realms are created by the admin in the master realm. In these realms, administrators create users and applications. The applications are owned by the users.
Creating a realm
As the admin in the master realm, you create the realms where administrators create users and applications.
-
Keycloak is installed.
-
You have the initial admin account for the admin console.
-
Go to http://localhost:8080/auth/admin/ and log in to the Keycloak admin console using the admin account.
-
From the Master menu, click Add Realm. When you are logged in to the master realm, this menu lists all other realms.
-
Type
demo
in the Name field.A new realmThe realm name is case-sensitive, so make note of the case that you use. -
Click Create.
The main admin console page opens with realm set to
demo
.Demo realm -
Switch between managing the
master
realm and the realm you just created by clicking entries in the Select realm drop-down list.
Creating a user
In the demo
realm, you create a new user and a temporary password for that new user.
-
From the menu, click Users to open the user list page.
-
On the right side of the empty user list, click Add User to open the Add user page.
-
Enter a name in the
Username
field.This is the only required field.
Add user page -
Flip the Email Verified switch to On and click Save.
The management page for the new user opens.
-
Click the Credentials tab to set a temporary password for the new user.
-
Type a new password and confirm it.
-
Click Set Password to set the user password to the new one you specified.
Manage Credentials pageThis password is temporary and the user will be required to change it at the first login. If you prefer to create a password that is persistent, flip the Temporary switch to Off and click Set Password.
Logging into the Account Console
Every user in a realm has access to the account console. You use this console to update your profile information and change your credentials. You can now test logging in with that user in the realm that you created.
-
Log out of the admin console by opening the user menu and selecting Sign Out.
-
Go to http://localhost:8080/auth/realms/demo/account and log in to your
demo
realm as the user that you just created. -
When you are asked to supply a new password, enter a password that you can remember.
Update passwordThe account console opens for this user.
Account console -
Complete the required fields with any values to test using this page.
You are now ready for the final procedure, which is to secure a sample application that runs on WildFly. See Securing a sample application.
Securing a sample application
Now that you have an admin account, a realm, and a user, you can use Keycloak to secure a sample WildFly servlet application. You install a WildFly client adapter, register the application in the admin console, modify the WildFly instance to work with Keycloak, and use Keycloak with some sample code to secure the application.
-
You need to adjust the port used by Keycloak to avoid port conflicts with WildFly.
Adjusting the port used by Keycloak
The instructions in this guide apply to running WildFly on the same machine as the Keycloak server. In this situation, even though WildFly is bundled with Keycloak, you cannot use WildFly as an application container. You must run a separate WildFly instance for your servlet application.
To avoid port conflicts, you need different ports to run Keycloak and WildFly.
-
You have an admin account for the admin console.
-
You created a demo realm.
-
You created a user in the demo realm.
-
Download WildFly from WildFly.org.
-
Unzip the downloaded WildFly.
$ unzip <filename>.zip
-
Change to the Keycloak root directory.
-
Start the Keycloak server by supplying a value for the
jboss.socket.binding.port-offset
system property. This value is added to the base value of every port opened by the Keycloak server. In this example, 100 is the value.Linux/Unix$ cd bin $ ./standalone.sh -Djboss.socket.binding.port-offset=100
Windows> ...\bin\standalone.bat -Djboss.socket.binding.port-offset=100
-
Confirm that the Keycloak server is running. Go to http://localhost:8180/auth/admin/ .
If the admin console opens, you are ready to install a client adapter that enables WildFly to work with Keycloak.
Installing the WildFly client adapter
When WildFly and Keycloak are installed on the same machine, WildFly requires some modification. To make this modification, you install a Keycloak client adapter.
-
WildFly is installed.
-
You have a backup of the
../standalone/configuration/standalone.xml
file if you have customized this file.
-
Download the WildFly OpenID Connect Client Adapter distribution from keycloak.org.
-
Change to the root directory of WildFly.
-
Unzip the downloaded client adapter in this directory. For example:
$ unzip <filename>.zip
-
Change to the bin directory.
$ cd bin
-
Run the appropriate script for your platform.
If you receive a
file not found
, make sure that you usedunzip
in the previous step. This method of extraction installs the files in the right place.WildFly 10 on Linux/Unix$ ./jboss-cli.sh --file=adapter-install-offline.cli
WildFly 10 on Windows> jboss-cli.bat --file=adapter-install-offline.cli
Wildfly 11 on Linux/Unix$ ./jboss-cli.sh --file=adapter-elytron-install-offline.cli
Wildfly 11 on Windows> jboss-cli.bat --file=adapter-elytron-install-offline.cli
This script makes the necessary edits to the
…/standalone/configuration/standalone.xml
file. -
Start the application server.
Linux/Unix$ ./standalone.sh
Windows> ...\standalone.bat
Registering the WildFly application
You can now define and register the client in the Keycloak admin console.
-
You installed a client adapter to work with WildFly.
-
Log in to the admin console with your admin account: http://localhost:8180/auth/admin/
-
In the top left drop-down list, select the
Demo
realm. -
Click
Clients
in the left side menu to open the Clients page.Clients -
On the right side, click Create.
-
On the Add Client dialog, create a client called vanilla by completing the fields as shown below:
Add Client -
Click Save.
-
On the Vanilla client page that appears, click the Installation tab.
-
Select Keycloak OIDC JSON to generate a file that you need in a later procedure.
Keycloak.json file -
Click Download to save Keycloak.json in a location that you can find later.
-
Select Keycloak OIDC JBoss Subsystem XML to generate an XML template.
Template XML -
Click Download to save a copy for use in the next procedure, which involves WildFly configuration.
Modifying the WildFly instance
The WildFly servlet application requires additional configuration before it is secured by Keycloak.
-
You created a client named vanilla in the demo realm.
-
You saved a template XML file for this client.
-
Go to the
standalone/configuration
directory in your WildFly root directory. -
Open the
standalone.xml
file and search for the following text:<subsystem xmlns="urn:jboss:domain:keycloak:1.1"/>
-
Change the XML entry from self-closing to using a pair of opening and closing tags as shown here:
<subsystem xmlns="urn:jboss:domain:keycloak:1.1"> </subsystem>
-
Paste the contents of the XML template within the
<subsystem>
element, as shown in this example:<subsystem xmlns="urn:jboss:domain:keycloak:1.1"> <secure-deployment name="WAR MODULE NAME.war"> <realm>demo</realm> <auth-server-url>http://localhost:8180/auth</auth-server-url> <public-client>true</public-client> <ssl-required>EXTERNAL</ssl-required> <resource>vanilla</resource> </secure-deployment> </subsystem>
-
Change
WAR MODULE NAME.war
tovanilla.war
:<subsystem xmlns="urn:jboss:domain:keycloak:1.1"> <secure-deployment name="vanilla.war"> ... </subsystem>
-
Reboot the application server.
Installing sample code to secure the application
The final procedure is to make this application secure by installing some sample code from the https://github.com/keycloak/keycloak-quickstarts repository. The quickstarts work with the most recent Keycloak release.
The sample code is the app-profile-jee-vanilla quickstart. It demonstrates how to change a JavaEE application that is secured with basic authentication without changing the WAR. The Keycloak client adapter subsystem changes the authentication method and injects the configuration.
You have the following installed on your machine and available in your PATH.
-
Java JDK 8
-
Apache Maven 3.1.1 or higher
-
Git
You have a keycloak.json file.
-
Make sure your WildFly application server is started.
-
Download the code and change directories using the following commands.
$ git clone https://github.com/keycloak/keycloak-quickstarts $ cd keycloak-quickstarts/app-profile-jee-vanilla/config
-
Copy the
keycloak.json
file to the current directory. -
Move one level up to the
app-profile-jee-vanilla
directory. -
Install the code using the following command.
$ mvn clean wildfly:deploy
-
Confirm that the application installationt succeeded. Go to http://localhost:8080/vanilla where a login page is displayed.
Login page confirming success -
Log in using the account that you created in the demo realm.
Login page to demo realmA message appears indicating you have completed a successful use of Keycloak to protect a sample WildFly application. Congratulations!
Complete success