Page History
...
- WSO2 Identity Server
- Apache Tomcat to run the client application
Follow the instructions in the sections below to set up and configure this scenario:
Table of Contents |
---|
Setting up the WSO2 Identity Server instances
- Download the WSO2 Identity Server from here.
- Extract the file to a dedicated directory. For the purposes of this scenario, this is referred to as
<IS_HOME_PRIMARY>
in this topic. - Make a copy of this folder in the same location and rename it. For the purposes of this scenario, this is referred to as
<IS_HOME_SECONDARY>
in this topic. - By default, the HTTPS port of the primary IS instance is 9443. Let this be left as it is. Go to the
<IS_HOME_SECONDARY>/repository/conf
directory and open thecarbon.xml
file. Change the<Offset>
value under the<Ports>
configuration to 1. This changes the HTTPS port in the secondary IS instance to 9444 to avoid conflicts with the primary IS instance. - Install and run the two Identity Server instances.
- Go to
<IS_HOME_PRIMARY>
and<IS_HOME_SECONDARY>
in your command line and type the following command for each instance.- On Windows:
wso2server.bat --run
- On Linux/Solaris:
sh wso2server.sh
- On Windows:
- Go to
- The Management Console for the primary Identity Server can be accessed using the following URL: https://localhost:9443/carbon
- The Management Console for the secondary Identity Server can be accessed using the following URL: https://localhost:9444/carbon
Configuring the secondary IS as IdP in the primary IS
The next step in this scenario is to configure the secondary Identity Server as an identity provider (IdP) in the primary Identity Server.
- Go to the Management Console of the primary IS.
- Navigate to the Identity Providers section in the Main menu and click Add.
- Enter “Secondary" as the Identity Provider Name for this scenario.
Expand the Federated Authenticators section and then expand the SAML2 Web SSOConfiguration section.
- Make the following changes.
- Select the Enable SAML2 Web SSO checkbox.
- Enter “Secondary IDP” as Identity Provider Entity Id.
- Enter “Primary'” as the Service Provider Entity Id.
Enter 'https://localhost:9444/samlsso/' as the SSO URL. This is the SAML2 SSO URL of the secondary IS.
- Select the Enable Logout checkbox.
Click Register. The new identity provider named 'Secondary' is listed under List (go to Main menu and click List under Identity Providers).
Configuring the primary IS as an SP in the secondary IS
Now that the secondary Identity Server is added as an IdP in the primary Identity Server,
...
the primary IS should be added as service provider (SP) in the
...
secondary IS instance.
Go to Management Console Log in to the management console of the Secondary secondary IS instance using the following URL: https://localhost:9444/carbon
Navigate to the Main menu and click Add under Service Providers. Enter service provider name as 'PrimaryIDP' for this sample scenario.
Click Register.
In the form that appears, expand the Inbound Authentication Configuration and SAML2 Web SSO Configuration sections.
Click Configure. The following form appears.
Enter the following details in the form.
Enter “Primary” as the Issuer, this is the same value as Service Provider Entity Id in step 5c.
Enter value https://localhost:9443/commonauth as Assertion Consumer URLURL and click Add.
Enable the following checkboxes.
Enable Response Signing
Enable Single Logout
- Click Update Register and then click Register Update. The primary Identity Server instance is added as the service provider in the secondary Identity Server instance.
Setting up an application as the SP in the primary IS
The client application in this scenario is the travelocity sample application that can be checked out from the following GitHub repo. See Downloading a Sample topic for more information.
...