2013-03-04 3 views
0

저는 shibboleth에 매우 익숙합니다. 현재 shobboleth2.xml을 편집하여 구성을하고 있으며 shibboleth 2.4를 사용하고 있지만 shibboleth를 다시 시작하면 다음과 같은 오류가 발생합니다.Shibboleth Configuration

shibd error: unable to run config check as user 
Restarting Shibboleth 2 daemon: 2013-03-04 13:15:27 ERROR XMLTooling.ParserPool : error on line 28, column 40, message: attribute 'homeUrl' is not declared for element 'ApplicationDefaults' 
2013-03-04 13:15:27 ERROR Shibboleth.Config : error while loading resource (/etc/shibboleth/shibboleth2.xml): XML error(s) during parsing, check log for specifics 
2013-03-04 13:15:27 FATAL Shibboleth.Config : caught exception while loading configuration: XML error(s) during parsing, check log for specifics 
configuration is invalid, check console for specific problems 

내 shibboleth2.xml에 이미 homeUrl을 추가했습니다.

<!-- The ApplicationDefaults element is where most of Shibboleth's SAML bits are defined. --> 
<ApplicationDefaults id="default" 
     policyId="default" 
     entityID="https://somesite.com/shibboleth/default" 
     homeUrl="https://somesite.com/" 
        REMOTE_USER="eppn persistent-id targeted-id" 
     signing="false" encryption="false"> 

답변

1

당신의 < ApplicationDefaults/> 요소에서 속성 "homeUrl"를 제거합니다.

<ApplicationDefaults id="default" 
    policyId="default" 
    entityID="https://somesite.com/shibboleth/default" 
       REMOTE_USER="eppn persistent-id targeted-id" 
    signing="false" encryption="false">