If the service is moving from existing server(s) to new server(s) and the hostname is staying the same
- Make sure the entityID on the new server matches the entityID from the existing server.
- Copy the keys from the existing server to C:\Program Files\shibboleth-sp\etc\shibboleth\ on the new server.
- These are located in C:\opt\shibboleth-sp\etc\shibboleth as sp-cert.pem and sp-key.pem
Modify the config to reflect the key file names by replacing the two <Credential Resolver> blocks with:
<CredentialResolver type="File" key="sp-key.pem" certificate="sp-cert.pem"/>
- Copy C:\opt\shibboleth-sp\etc\attribute-map.xml from the existing server to C:\Program Files\shibboleth-sp\etc\shibboleth\ on the new server.
- Do NOT copy C:\opt\shibboleth-sp\etc\shibboleth2.xml from the existing server to the new server. It's unlikely to work due to a version change.
- Copy Shibboleth SP software from the Apps share on the DML (Current package - \\main.ad.rit.edu\DML\apps\Shibboleth Consortium\Shibboleth Service Provider\Windows\3.2.1.0\) to C:\ITS\ on the server.
- Open an administrative command prompt.
- Navigate to C:\ITS.
- Run SCCM_INSTALL_SERVER.CMD.
- Close the command prompt.
- Modify C:\Program Files\shibboleth-sp\etc\shibboleth\shibboleth2.xml
Replace the id and name in the <ISAPI> block with the IIS site ID and hostname for the site. Note that this is the user-facing hostname and not the server's name.
For multiple sites, duplicate the line and modify as necessary.
- Replace the name on in the <Host> section of <RequestMap> with the hostname for the site.
- Configure session enforcement.
To require a session for page(s) or directories:
<Host name="site.example.com"> <Path name="login.aspx" authType="shibboleth" requireSession="true"/> <!-- Require a session for the page "login.aspx" --> <Path name="secure" authType="shibboleth" requireSession="true"/> <!-- Require a session for the directory "secure" --> </Host>
To require a session for the whole host:
<Host name="site.example.com" authType="shibboleth" requireSession="true"/>
For multiple sites, duplicate the <Host> block as necessary.
- Modify the entityID in <ApplicationDefaults>. Typically appending "/shibboleth" to the hostname is sufficient.
- If the application expects the REMOTE_USER environment variable to be something other than "uid" (i.e. username) then configure that as well in the <ApplicationDefaults> block.
- Submit a request to have site added to the Shibboleth IdP at https://www.rit.edu/its/server-management-requests with the information requested at
SSO - Deploying under "Connecting to RIT's Identity Provider".
Attachments:

