No description
Find a file
Hynek Mlnarik 567393a102 KEYCLOAK-4288 Fix SAML logout session for Tomcat/EAP6
When logging out via application (via ?GLO=true query parameter),
CatalineSamlSessionStore does not expire session, while it does that
in logging by SAML session index.

This causes distributed sessions being invalidated only on node hanling
the request, but remains active in other nodes of the cluster. Then the
session can be resurrected on next cache replication back even to the
node where the logout was performed. This behaviour is fixed here.
2017-03-01 15:17:39 +01:00
adapters KEYCLOAK-4288 Fix SAML logout session for Tomcat/EAP6 2017-03-01 15:17:39 +01:00
authz In case of PKI validation exception HttpMethod throws NPE, because bytes value is null. 2017-02-03 11:24:30 +02:00
boms KEYCLOAK-4423 : Adding Spring Boot Adapter 2017-02-14 14:33:15 +01:00
common Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
core KEYCLOAK-3729 Ability to run tests within Keycloak server 2017-01-27 12:14:19 +01:00
dependencies KEYCLOAK-4384 Remove Mongo support 2017-02-15 15:20:58 +01:00
distribution KEYCLOAK-4483 2017-02-22 19:44:01 +01:00
examples update readme 2017-02-24 15:16:06 +06:00
federation KEYCLOAK-1590 Realm import per test class 2017-03-01 09:38:44 +01:00
integration unlink/remoteimported 2017-02-08 19:48:22 -05:00
misc KEYCLOAK-4384 Remove Mongo support 2017-02-15 15:20:58 +01:00
model KEYCLOAK-4384 Remove Mongo support 2017-02-15 15:20:58 +01:00
proxy Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
saml-core KEYCLOAK-4329 Fix NPE when not providing KeyInfo element in IdP initiated SSO SAML 2017-01-30 11:40:48 +01:00
saml-core-api Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
server-spi unlink/remoteimported 2017-02-08 19:48:22 -05:00
server-spi-private KEYCLOAK-1590 Realm import per test class 2017-03-01 09:38:44 +01:00
services Merge pull request #3896 from thomasdarimont/issue/KEYCLOAK-4505-expose-clientSession-binding-to-ScriptBasedAuthenticator 2017-03-01 12:17:29 +01:00
testsuite KEYCLOAK-1590 Realm import per test class 2017-03-01 09:38:44 +01:00
themes Merge pull request #3890 from daklassen/KEYCLOAK-2994 2017-03-01 12:22:44 +01:00
util Bump version to 3.0.0.CR1 2017-01-26 06:18:11 +01:00
wildfly KEYCLOAK-4483 2017-02-22 19:44:01 +01:00
.gitattributes KEYCLOAK-1385 Introduce end-of-line normalization 2015-07-17 13:46:51 +02:00
.gitignore KEYCLOAK-4101: jboss-cli script to do migration of configuration 2017-01-09 18:15:26 -05:00
.travis.yml Cleanup of tests including groups for Travis 2017-01-03 07:52:00 +01:00
License.html distro 2014-01-07 14:37:50 -05:00
pom.xml Merge pull request #3874 from vramik/KEYCLOAK-4258 2017-03-01 08:27:59 +01:00
README.md fixed maven prereq version to match pom 2016-11-13 12:24:01 -05:00
travis-run-tests.sh KEYCLOAK-4262 make AbstractSamlTest class abstract 2017-02-22 10:20:34 +01:00

Keycloak

Open Source Identity and Access Management for modern Applications and Services.

For more information about Keycloak visit Keycloak homepage and Keycloak blog.

Building

Ensure you have JDK 8 (or newer), Maven 3.1.1 (or newer) and Git installed

java -version
mvn -version
git --version

First clone the Keycloak repository:

git clone https://github.com/keycloak/keycloak.git
cd keycloak

To build Keycloak run:

mvn install

This will build all modules and run the testsuite.

To build the distribution run:

mvn install -Pdistribution

Once completed you will find distribution archives in distribution.

Starting Keycloak

To start Keycloak during development first build as specified above, then run:

mvn -f testsuite/integration/pom.xml exec:java -Pkeycloak-server 

To start Keycloak from the appliance distribution first build the distribution it as specified above, then run:

tar xfz distribution/appliance-dist/target/keycloak-appliance-dist-all-<VERSION>.tar.gz
cd keycloak-appliance-dist-all-<VERSION>/keycloak
bin/standalone.sh

To stop the server press Ctrl + C.

Help and Documentation

  • Documentation - User Guide, Admin REST API and Javadocs
  • User Mailing List - Mailing list to ask for help and general questions about Keycloak
  • JIRA - Issue tracker for bugs and feature requests

Contributing

License