ldap_sasl_interactive_bind_s: No such attribute (16)
Asked Answered
P

1

16

I am getting the error while running ldapsearch command and client side authentication also not coming.

Could anyone please help me to sort out the problem ?

ERROR MESSAGE

ldap_sasl_interactive_bind_s: No such attribute (16)

Thanks.

Playa answered 5/8, 2014 at 7:33 Comment(2)
Do you intent using SASL? In not use -x to use simple authentication.Titanomachy
THanks YSU but we solved the issuePlaya
R
32

The -x switch uses simple authentication instead of of the default SASL. So use something like this:

ldapsearch -x -h 192.268.0.78 -p 389 cn=root,ou=People,dc=example,dc=com

Rhynchocephalian answered 2/1, 2015 at 10:12 Comment(1)
Wow, well this fixed my problem, but why?? My ldapsearch call involves neither authentication nor encryption :-?Irreverence

© 2022 - 2024 — McMap. All rights reserved.