2016-06-02 16:07:45 +00:00
|
|
|
|
|
|
|
[[_saml-tomcat-adapter-installation]]
|
|
|
|
===== Adapter Installation
|
|
|
|
|
|
|
|
Adapters are no longer included with the appliance or war distribution.
|
|
|
|
Each adapter is a separate download on the Keycloak download site.
|
|
|
|
They are also available as a maven artifact.
|
|
|
|
|
|
|
|
You must unzip the adapter distro into Tomcat's `lib/` directory.
|
2016-06-02 21:33:28 +00:00
|
|
|
Including adapter's jars within your WEB-INF/lib directory will not work! The Keycloak SAML adapter is implemented as
|
|
|
|
a Valve and valve code must reside in Tomcat's main lib/ directory.
|
2016-06-02 16:07:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
[source]
|
|
|
|
----
|
|
|
|
$ cd $TOMCAT_HOME/lib
|
|
|
|
$ unzip keycloak-saml-tomcat6-adapter-dist.zip
|
|
|
|
or
|
|
|
|
$ unzip keycloak-saml-tomcat7-adapter-dist.zip
|
|
|
|
or
|
|
|
|
$ unzip keycloak-saml-tomcat8-adapter-dist.zip
|
|
|
|
----
|
|
|
|
|