Changes between Version 2 and Version 3 of SetupSpRelyParty
- Timestamp:
- 06/30/11 13:34:07 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SetupSpRelyParty
v2 v3 3 3 This page documents how to setup an SP's relying party configuration in the IdP. 4 4 5 1. Check out the relying-party.xml config file from the shib-svn repository in the shib-svn/idp/conf directory. 5 1. Check out the conf and metadata directories from the shib-svn repository. 6 {{{ 7 john@fearless:~/Junk$ svn co svn+ssh://sxjpm@iron.alaska.edu/usr/local/iam/shib-svn/idp/trunk/conf 8 A conf/service.xml 9 ... 10 A conf/login.config 11 Checked out revision 1. 12 john@fearless:~/Junk$ svn co svn+ssh://sxjpm@iron.alaska.edu/usr/local/iam/shib-svn/idp/trunk/metadata 13 A metadata/dauntless-metadata.xml 14 ... 15 A metadata/unicorn3-metadata.xml 16 Checked out revision 1. 17 }}} 6 18 7 2. Add the SP's metadata to the shib-svn repository in the shib-svn/idp/metadata directory. 19 2. Add the SP's metadata to the shib-svn repository in the shib-svn/idp/metadata directory. 20 {{{ 21 john@fearless:~/Junk$ cp /tmp/idmt-1-metadata.xml metadata/ 22 john@fearless:~/Junk$ svn add metadata/idmt-1-metadata.xml 23 john@fearless:~/Junk$ svn add metadata/idmt-1-metadata.xml 24 A metadata/idmt-1-metadata.xml 25 }}} 8 26 9 27 3. Add a stanza in the relying-party.xml config file to import the SP's metadata. 10 28 {{{ 11 john@fearless:~ $ virelying-party.xml29 john@fearless:~/Junk$ vi conf/relying-party.xml 12 30 ... 13 31 <!-- iam.alaska.edu metadata --> … … 21 39 22 40 4. Commit the new metadata file and the changed relying-party.xml file into the shib-svn repository. 41 {{{ 42 john@fearless:~/Junk$ svn commit metadata/ -m "Updated metadata from SP idmt-1" 43 john@fearless:~/Junk$ svn commit conf/ -m "Added relying party config for SP idmt-1" 44 }}} 23 45 24 46 5. Test and update the Shibboleth IdPs with the following procedure.