ldap_bind:无效凭证(49)

ldap_bind:无效凭证(49)

我的 ldap 配置有问题:

$ ldapadd -x -D 'cn=Manager,dc=ircoms,dc=com' -f file.ldif -W 
Enter LDAP Password: 
ldap_bind: Invalid credentials (49)

我删除了包含的内容/var/lib/ldap,然后执行

ldapadd -x -D ‘cn=Manager,dc=ircoms,dc=com’-f file.ldif -W

现在我收到此错误:

$ ldapadd -x -D 'cn=Manager,dc=ircoms,dc=com' -f file.ldif 
ldap_bind: Server is unwilling to perform (53) 
additional info: unauthenticated bind (DN with no password) disallowed 

我在 Fedora 15 上工作。

答案1

invalid credentials表示 1) 您输入的密码不正确或 2) 服务器配置为invalid credentials即使其他问题阻止身份验证也会返回,例如,如果授权身份在目录数据库中不存在。在第二个示例中,您尝试使用包含可分辨名称但不包含密码的绑定请求进行身份验证,但目录服务器不允许这样做。

相关内容