CAS AD LDAP 32 error

前端 未结 2 1737
故里飘歌
故里飘歌 2021-01-05 08:54

I am seeing this when I try to login with CAS which is authenticating against AD over LDAP.

SEVERE: Servlet.service() for servlet cas threw exception
jav         


        
相关标签:
2条回答
  • 2021-01-05 09:30

    Remaining name is a part of a DN that wasn't actually found at a certain level of a DIT. For example when you search cn=johns,ou=marketing,dc=example,dc=com and ou=marketing,dc=example,dc=com exists but cn=johns does not exists inside of ou=marketing then the remaning name would be cn=johns.

    '/' does not look like a valid RDN. I would recommend to verify what you pass as a search base. Most likely it's an invalid DN string.

    0 讨论(0)
  • 2021-01-05 09:48

    LDAP error code 32 means "no such object", in this case, perhaps the base object of the search did not exist.

    0 讨论(0)
提交回复
热议问题