openldap 中出现 48 不适当的身份验证错误

openldap 中出现 48 不适当的身份验证错误

我已经在 Windows 上的本地主机上设置了 openldap 并尝试使用以下命令进行 ldap 搜索

ldapsearch -x -h localhost -b "dc=mydomain,dc=com" "(objectClass=*)"

但是我收到以下错误

# search result
search: 2
result: 48 Inappropriate authentication

以下是我的 slapd.conf 文件的内容

access to *
    by dn="cn=admin,dc=mydomain,dc=com" write
    by * none


database        ldap
suffix          "dc=mydomain,dc=com"
rootdn          "cn=admin,dc=mydomain,dc=com"
idassert-bind bindmethod=simple binddn=cn=name,cn=users,dc=mydomain,dc=com credentials=secret mode=none
uri              ldap://server1
rootpw  secret
lastmod off
chase-referrals no

相关内容