TECHcommunity_SAGtechcommsag.hashnode.dev·Sep 14, 2023How to configure webMethods Integration Server with KeycloakOverview Identity and Access Management applications are becoming increasingly common in the corporate landscape, and are used to provide a set of processes, policies, and tools for defining and managing the roles and access privileges of users withi...DiscusswebMethods
Mohamad Mahmoodmohamadrazzimy.hashnode.dev·Sep 12, 2023Creating Local KeyCloak Test Server[1] Clone the Git Repository Prepare a base directory. cd ~ mkdir dockerkeycloaktest cd dockerkeycloaktest Git Clone. git clone https://github.com/mohamadrazzimy/localkeycloaktest.git The codes in the github repo https://github.com/mohamadrazzimy/l...Discusskeycloak
Mohamad Mahmoodmohamadrazzimy.hashnode.dev·Sep 12, 2023Testing The KeyCloak OpenID Connect— User Authentication and User Verification process Photo by Michal Dolnik on Unsplash This post continues from the previous post on KeyCloak Setup. Keycloak OpenID is an open-source Identity and Access Management (IAM) system that provides Single S...Discusskeycloak
Mohamad Mahmoodmohamadrazzimy.hashnode.dev·Sep 11, 2023KeyCloak Docker VersionThe following steps are from the official guide: [1] Run docker command in PowerShell Window docker run -p 8080:8080 -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=admin quay.io/keycloak/keycloak:22.0.1 start-dev Output: Docker Desktop: [1.1] ...Discusskeycloak
Mohamad Mahmoodmohamadrazzimy.hashnode.dev·Sep 11, 2023Creating KeyCloak ClientIn the left panel, click Clients. In the main panel, click Create client button. Enter: Client type: OpenID Connect Client ID: myclient Click Next button. Confirm Standard Flow is selected. Click Next button. Enter Login settings: Valid redir...Discusskeycloak
Mohamad Mahmoodmohamadrazzimy.hashnode.dev·Sep 11, 2023Testing KeyCloak Authentication For SPASet Test Settings Browse https://www.keycloak.org/app/ Enter details: Keycloak URL: https://app.please-open.it Realm: 55d432eb-7104–44b5–8069–03554761a6d5 (change this to your own id) Client: myclient Using Cloud version (https://app.please-ope...Discuss·28 readskeycloak
Mohamad Mahmoodmohamadrazzimy.hashnode.dev·Sep 10, 2023Creating KeyCloak Users[1] Concepts and terms [1.1] users Users are entities that are able to log into your system. They can have attributes associated with themselves like email, username, address, phone number, and birthday. They can be assigned group membership and have...Discuss·28 readskeycloak
Mohamad Mahmoodmohamadrazzimy.hashnode.dev·Sep 10, 2023Using Free KeyCloak Cloud Service[1] Keycloak features and concepts Keycloak is a Single Sign-On (SSO) solution for web apps and RESTful web services. The goal of Keycloak is to make security simple so that it is easy for application developers to secure the apps and services they h...Discuss·28 readskeycloak
Shaaf, Syedshaaf.hashnode.dev·Sep 10, 2023Keycloak Operator for Kubernetes - a Basic TutorialThe Keycloak team announced that they were going to move to a new Operator framework that will effictevely manage Keycloak installatons on a Kubernetes cluster. So what is an Operator in the Kubernetes context. Simplyfying it a bit here... Its basica...Discusskeycloak
Nicolas FränkelforApache APISIXapisix.hashnode.dev·Aug 3, 2023System architecture: move authentication to the API GatewayWhen exposing an application to the outside world, consider a Reverse-Proxy or an API Gateway to protect it from attacks. Rate Limiting comes to mind first, but it shouldn't stop there. We can factor many features in the API Gateway and should be bol...Discuss·53 likes·28 readsSystem Architecture