Wildfly 20-ldap SSL上的管理领域(安全领域)

Wildfly 20-ldap SSL上的管理领域(安全领域),ldap,realm,wildfly,Ldap,Realm,Wildfly,我配置了wildfly 20,但ldap SSL上的ManagementRealm(安全领域)有问题。 对于LDAP,这是可以的,但只要我切换到LDAPs,身份验证就不再有效。 登录窗口打开,无论我指示什么帐户(即使是正确或错误的登录),我都会返回“连接到管理界面”屏幕(实际上是空白) 我在任何日志中都没有错误。 我在centos 8上试了19和20架WildFly。 信任者确实存在,我在启动变量中添加了它(以及它的密码) 下面是我的standalone.xml文件的摘录 <securit

我配置了wildfly 20,但ldap SSL上的ManagementRealm(安全领域)有问题。 对于LDAP,这是可以的,但只要我切换到LDAPs,身份验证就不再有效。 登录窗口打开,无论我指示什么帐户(即使是正确或错误的登录),我都会返回“连接到管理界面”屏幕(实际上是空白)

我在任何日志中都没有错误。 我在centos 8上试了19和20架WildFly。 信任者确实存在,我在启动变量中添加了它(以及它的密码) 下面是我的standalone.xml文件的摘录

<security-realms>
    <security-realm name="ManagementRealm">
        <authentication>
            <local default-user="$local" skip-group-loading="true"/>
            <ldap connection="ldap_connection" base-dn="OU=Utilisateurs,DC=org">
                <advanced-filter filter="(&amp;(sAMAccountName={0})(memberOf=CN=APP-ADMIN,OU=Utilisateurs,DC=org))"/>
            </ldap>
            <truststore path="truststore.jks" relative-to="jboss.server.config.dir" keystore-password="XXX" />
        </authentication>
        <authorization map-groups-to-roles="false">
            <properties path="mgmt-groups.properties" relative-to="jboss.server.config.dir"/>
        </authorization>
    </security-realm>
    <security-realm name="LdapSSLRealm">
        <authentication>
            <truststore path="truststore.jks" relative-to="jboss.server.config.dir" keystore-password="XXX" />
        </authentication>
    </security-realm>
</security-realms>
<outbound-connections>
    <ldap name="ldap_connection" url="ldaps://serveurad:636" search-dn="user" search-credential="XXX"/>
</outbound-connections>
    

如果有人有主意,我会很感激的