No description
Find a file
2017-01-12 13:58:56 +01:00
adapters KEYCLOAK-4179 Fixed logic to init with token to prevent issues with timeSkew 2017-01-10 09:09:50 +01:00
authz KEYCLOAK-4157 Move drools-bom from keycloak-parent 2017-01-12 13:58:56 +01:00
common Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
core KEYCLOAK-4176 2017-01-10 08:02:49 +01:00
dependencies KEYCLOAK-4157 Move drools-bom from keycloak-parent 2017-01-12 13:58:56 +01:00
distribution KEYCLOAK-4123: keycloak-install.cli fails if not run from bin dir 2017-01-05 21:25:41 -05:00
examples Merge pull request #3652 from little-headbanger/KEYCLOAK-4088_Http_wrapper_of_Angular_2_demo_app_doesn't_forward_http_errors 2017-01-05 13:19:36 +01:00
federation Merge pull request #3731 from mposolda/master 2017-01-10 09:49:18 +01:00
integration KEYCLOAK-4175 Provide a way to set the connect and read timeout for ldap connections 2017-01-09 21:35:58 +01:00
misc KEYCLOAK-3857 Clustered invalidation cache fixes and refactoring. Support for cross-DC for invalidation caches. 2016-11-16 22:29:23 +01:00
model KEYCLOAK-4137 Significant performance lag in 'get client role by role name' 2017-01-12 11:55:58 +01:00
proxy Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
saml-core Merge pull request #3715 from hmlnarik/KEYCLOAK-4160 2017-01-09 12:50:38 +01:00
saml-core-api Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
server-spi Merge remote-tracking branch 'upstream/master' 2017-01-03 15:21:16 -05:00
server-spi-private Merge pull request #3734 from stianst/KEYCLOAK-4176 2017-01-10 15:19:05 +01:00
services Merge pull request #3731 from mposolda/master 2017-01-10 09:49:18 +01:00
testsuite KEYCLOAK-4066 TimeoutException in cluster environment in ClearExpiredSessions 2017-01-11 12:27:51 +01:00
themes Merge pull request #3731 from mposolda/master 2017-01-10 09:49:18 +01:00
util Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
wildfly Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
.gitattributes KEYCLOAK-1385 Introduce end-of-line normalization 2015-07-17 13:46:51 +02:00
.gitignore Ignore dependency-reduced-pom.xml created by Maven Shade plugin 2016-09-29 05:27:43 -03: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 KEYCLOAK-4157 Move drools-bom from keycloak-parent 2017-01-12 13:58:56 +01:00
README.md fixed maven prereq version to match pom 2016-11-13 12:24:01 -05:00
travis-run-tests.sh Cleanup of tests including groups for Travis 2017-01-03 07:52:00 +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