Keycloak – Installation via Docker

Published by Tobias Hofmann on

1 min read

Keycloak is an identity and access management solution. Among its list of supported authentication mechanisms are SAML 2.0 and OpenID Connect. It is open source and can be installed via Docker. This simplifies the installation and makes it easy to start with Keycloak. You only have to ensure pass a few configuration options to the Docker run command like port and user/password.

Run Keycloak

To run the latest version of Keycloak in Docker on port 8080 and to log on as a user defined user / password, run the following command. Replace <USERNAME> and <PASSWORD>.

docker run -p 8080:8080 -e KEYCLOAK_USER=<USERNAME> -e KEYCLOAK_PASSWORD=<PASSWORD> jboss/keycloak

With the above command, the port (local) Keycloak port 8080 is exposed on the localhost (laptop) at port 8080.

Login

Open Keycloak: http://localhost:8080 and access the Administration Console.

Log in to the admin console using the credentials provided at the docker run command.

Add test user

I am adding a test user for my scenario. My service provider is an SAP NetWeaver ABAP System (the developer edition, SID: NPL). Therefore, the name and id make it clear that it’s an ABAP system and user.

User id: abap
Name: ABAP NetWeaver

Let the world know

Tobias Hofmann

Doing stuff with SAP since 1998. Open, web, UX, cloud. I am not a Basis guy, but very knowledgeable about Basis stuff, as it's the foundation of everything I do (DevOps). Performance is king, and unit tests is something I actually do. Developing HTML5 apps when HTML5 wasn't around. HCP/SCP user since 2012, NetWeaver since 2002, ABAP since 1998.

0 Comments

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.