我用Drupal设置了SimpleSamlPhp(我的IdP在另一台服务器中)。以管理员身份登录“ http://localhost:31478/simplesaml/”后,我使用我的IdP运行了“测试身份验证源”,显示了具有正确属性的“ SAML 2.0 SP演示示例”屏幕。我想这意味着SimpleSamlPhp和我的Idp可以互相看到并正确通信。

但是,当我打开“通过SimpleSAMLphp激活身份验证”后尝试对Drupal使用联合登录时,出现以下错误:

SimpleSAML_Error_Exception: Could not find the metadata of an IdP with entity ID 'tenant2.test.com' in sspmod_saml_Auth_Source_SP->getIdPMetadata() (line 134 of /var/www/vendor/simplesamlphp/simplesamlphp/modules/saml/lib/Auth/Source/SP.php).

设定


Drupal版本是8。
php版本是5.6.24-0。
simplesamlphp_auth模块版本为8.x-3.0-alpha4 + 2-dev。
在drupal中已安装并启用了simplesamlphp_auth模块。对于simplesamlphp_auth模块配置,“此SP的身份验证源”已设置为“ default-sp”


我在/ var中有我的simplesamlphp目录。为启用saml进行了以下更改

/var/simplesamlphp/config/config.php


    'baseurlpath' => 'simplesaml/',
    ....
    'enable.saml20-sp'  => true,
    'enable.saml20-idp' => true,
    'enable.shib13-idp' => false,
    'enable.adfs-idp' => false,
    'enable.wsfed-sp' => false,
    'enable.authmemcookie' => false,
    ....
    'saml' => TRUE,
    ....
    ....
    'default-saml20-idp' => 'tenant2.test.com',
    ....
    'store.type'                    => 'memcache',
    ....
    ....
    'memcache_store.servers' => array(
        array(
            array('hostname' => 'localhost'),
        ),
    ),
    'memcache_store.prefix' => 'SimpleSAMLphp',
    ....
    ....
    'trusted.url.domains' => array('localhost:31478'),


/var/simplesamlphp/config/authsources.php


    <?php
    $config = array(
        'admin' => array(
        'core:AdminPassword',
        ),

        'default-sp' => array(
            'saml:SP',
        'privatekey' => 'saml.pem',
        'certificate' => 'saml.crt',
        'entityID' => null,
        'idp' => 'tenant2.test.com',
        'discoURL' => null,
    ),

    );
    


/var/simplesamlphp/metadata/saml20-idp-remote.php


    <?php
        $metadata['tenant2.test.com'] = array(
            'SingleSignOnService'  => 'https://tenant2.test.com/testSamlLogin',
            'AssertionConsumerService' => 'http://localhost:31478/simplesaml/module.php/saml/sp/saml2-acs.php/default-sp',
            'SingleLogoutService'  => 'https://tenant2.test.com/admin/logout',
            'certFingerprint'      => '0a89aec59bf48e414ec050f6956891cb3f5b09a0',
        );


我几天来一直试图解决此问题。我错过了什么吗?

谢谢。

最佳答案

发现如果元数据包含“ expire”密钥并且元数据已过期,也会发生这种情况。尝试在saml20-idp-remote.php元数据中将其注释掉,看看是否遇到其他错误,因为跳过了错误处理。

09-25 16:35