As a prerequisite to this tutorial, follow the first tutorial to set up Apache Knox as well as the backend Apache Hadoop cluster we are trying to obtain a file from.
1) Configure the Apache Knox SSO service
For the purposes of this tutorial we are going to use the www.testshib.org SAML SSO Identity Provider. First we'll configure the Knox SSO service. Copy "conf/topologies/knoxsso.xml" to "conf/topologies/knoxssopac4jsaml.xml". Now edit it and delete the "ShiroProvider" provider and add the following provider instead (which leverages the Pac4j project):
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<topology> | |
<gateway> | |
... | |
<provider> | |
<role>federation</role> | |
<name>pac4j</name> | |
<enabled>true</enabled> | |
<param> | |
<name>pac4j.callbackUrl</name> | |
<value>https://localhost:8443/gateway/knoxssopac4jsaml/api/v1/websso</value> | |
</param> | |
<param> | |
<name>clientName</name> | |
<value>SAML2Client</value> | |
</param> | |
<param> | |
<name>saml.serviceProviderMetadataPath</name> | |
<value>./KnoxTestMetadata.xml</value> | |
</param> | |
<param> | |
<name>saml.identityProviderMetadataPath</name> | |
<value>https://www.testshib.org/metadata/testshib-providers.xml</value> | |
</param> | |
</provider> | |
... | |
</gateway> | |
</topology> |
- https://localhost:8443/gateway/knoxssopac4jsaml/api/v1/websso
2) Secure a topology using the "SSOCookieProvider" provider
In section 2 of this earlier tutorial, we showed how to secure a topology using the "SSOCookieProvider" provider. Copy "conf/topologies/sandbox-sso.xml" to "conf/topologies/sandbox-ssopac4jsaml.xml" and change the value of the "sso.authentication.provider.url" parameter to:
- https://localhost:8443/gateway/knoxssopac4jsaml/api/v1/websso
- https://localhost:8443/gateway/sandbox-ssopac4jsaml/webhdfs/v1/data/LICENSE.txt?op=OPEN
Great article. Was not sure where to find the Service provider config. It really helped. Thanks!
ReplyDelete