- Introduction
- Installation of the necessary software
- Migration of the production IdP configuration
- Test
- Additional tasks
- Authors
- Credits
This guide helps us with:
- Installation of a brand new Shibboleth IdP (local instance) on a GNU/Linux host;
- Migration of an existing Shibboleth IdP's configuration to the local one;
- Testing of the local IdP as it would be the production one, using the federation's Service Providers.
This asset could be tested only with HTTP-REDIRECT and HTTP-POST Saml bindinds, this can be made fixing the fqdn's ip address of your local IdP in /etc/hosts
file, working as if it were the production one.
Why should we migrate an Identity Provider? Here the most common use cases:
- duplicate it in a local environment for test purposes;
- upgrade Shibboleth IdP to another version and test it before going in production;
- customize the template, changing the general configuration, anything else in a safe stage.
You should have a production ShibIdP and a newer installation of another one where to migrate the production configuration. You can install a brand new Shibboleth IdP with the help of the following resources:
- GARR Idem tutorials
- Ansible playbooks:
Remember also to use the same production entityID, fully qualified domain name and the same httpd tls certificates, to your brand new ShibIdP.
Remember to use a diff tool to do an appropriate file comparison between local and production configuration files, this should be always done to deal with configuration changements that can be necessary between different ShibIdP versions. It would be better to have a graphical directory tree diff tool, like meld.
-
copy all certificates & keys in
{idp_home}/credentials
from production folder; -
{idp_home}/conf
:attribute-filter.xml
: include Service ProvidersAttributeFilterPolicy
;- compare and migrate
attribute-resolver.xml
from production folder; metadata-providers.xml
: include your Service ProvidersMetadataProvider
;- check if there's some other attribute-filter, metadata-providers or attribute-resolver files in
services.xml
, probably you'll have to load them as well; - check
relying-party.xml
for any further declarations about SP entities; - compare
idp.properties
and integrate from production folder; - copy
saml-nameid.properties
from production folder; - check files permissions in
{idp_home}
, common example:{idp_home}/conf -type f -exec chmod 644 {} +
-
{idp_home}/metadata
:- copy
idp-medatada.xml
from production folder; - copy
{sp_name_metadata}.xml
for each SP from production folder;
- copy
-
copy
{idp_home}/dist/conf/services.xml
and{idp_home}/messages
from production folders to reuse your production messages.
The followings should be made only if you want or have to deal with the same production datasources, otherwise you can even use a test instance of LDAP or MySQL. Remember that if you have a persistent nameId storage, you should also migrate the MySQL (or the configured engine for that) schemas and datas into your MySQL test server:
- copy ``global.xml`` from production folder (datasource configuration);
- copy ``ldap.properties`` from production folder (check TLS Authority Certificates to avoid connection errors).
- Set rwx permission for jetty/tomcat user to
{idp_home}/logs
,{idp_home}/metadata
and{idp_home}/credentials
Once services.xml
have been migrated, you can configure the production IdP's FQDN (fully qualified domain name, public hostname) in /etc/hosts
, pointing to your ShibIdP test ip address. This would be 127.0.0.1
if your test IdP is running on localhost.
Now you can connect to any of the federation Service Providers to test the new asset.
Customize the Shibboleth IdP template:
- Giuseppe De Marco - Università della Calabria ([email protected])
- Francesco Filicetti - Università della Calabria ([email protected])