4

当用户尝试登录我的 Web 应用程序code 49 data 525时,会出现 LDAP 错误 , ,这意味着username not found. LDAP 错误

我不知道对我的 LDAP 服务器进行身份验证的资源帐户是否具有错误的用户名,或者是否是尝试登录我的系统的用户。

我怎么能弄清楚这个?

>     org.springframework.ldap.AuthenticationException: [LDAP: error code 49 - 80090308: LdapErr: DSID-0C0903AA, comment:
> AcceptSecurityContext error, data 525, v1772^@]; nested exception is
> javax.naming.AuthenticationException: [LDAP: error code 49 - 800\
>     90308: LdapErr: DSID-0C0903AA, comment: AcceptSecurityContext error, data 525, v1772^@]
>             at org.springframework.ldap.support.LdapUtils.convertLdapException(LdapUtils.java:182)
>             at org.springframework.ldap.core.support.AbstractContextSource.createContext(AbstractContextSource.java:266)
>             at org.springframework.ldap.core.support.AbstractContextSource.getContext(AbstractContextSource.java:106)
>             at org.springframework.ldap.core.support.AbstractContextSource.getReadOnlyContext(AbstractContextSource.java:125)
>             at org.springframework.ldap.core.LdapTemplate.search(LdapTemplate.java:287)
>             at org.springframework.ldap.core.LdapTemplate.search(LdapTemplate.java:361)
>             at org.springframework.ldap.core.LdapTemplate.search(LdapTemplate.java:215)
4

1 回答 1

6

对于我的问题,我错误地输入了特定 LDAP 用户的 DN。我未能逃脱CN=Smith\, John.

添加反斜杠后,我得到另一个 LDAP 错误error code 49 data 52e,这意味着用户名和密码错误。

尽管如此,这是一个逃避的问题。

于 2013-03-22T21:23:23.850 回答