当尝试执行 ldapadd 时出现此错误 ldap_add: 没有这样的对象 (32)

当尝试执行 ldapadd 时出现此错误 ldap_add: 没有这样的对象 (32)

我的 slapd.conf 中有以下条目

#######################################################################
# ldbm and/or bdb database definitions
#######################################################################
#backend        hdb
database    bdb
suffix      "dc=example,dc=com"
checkpoint  1024 15
rootdn      "cn=Manager,dc=example,dc=com"
rootpw      {SSHA}xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
directory   /var/lib/ldap
index objectClass   eq,pres


######################################################################

database monitor

access to *
        by dn.exact="gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth" read
        by dn.exact="cn=Manager,dc=example,dc=com" read
        by * none

当我尝试写以下命令时

ldapadd -x -W -D "cn=Manager,dc=example,dc=com" -f ldapuser100.ldif

我收到以下错误:

adding new entry "uid=ldapuser100,ou=People,dc=example,dc=com"
ldap_add: No such object (32)

以下是调试:

oc_check_allowed type "structuralObjectClass"
bdb_dn2entry("uid=ldapuser100,ou=people,dc=example,dc=com")
=> bdb_dn2id("dc=example,dc=com")
<= bdb_dn2id: get failed: DB_NOTFOUND: No matching key/data pair found (-30988)
bdb_add: parent does not exist
 send_ldap_result: conn=1 op=1 p=3
send_ldap_response: msgid=2 tag=105 err=32
ber_flush2: 22 bytes to sd 12
conn=1 op=1 RESULT tag=105 err=32 text=
connection_get(12): got connid=1
connection_read(12): checking for input on id=1
ber_get_next
ber_get_next: tag 0x30 len 5 contents:
op tag 0x42, time 1379789891
ber_get_next
conn=1 op=2 do_unbind
conn=1 op=2 UNBIND
connection_close: conn=1 sd=12
conn=1 fd=12 closed

我的 LDIF 文件的内容:

dn: uid=ldapuser100,ou=People,dc=example,dc=com
uid: ldapuser100
cn: ldapuser100
objectClass: account
objectClass: posixAccount
objectClass: top
objectClass: shadowAccount
userPassword: {crypt}xxxxxxxxxxxxxxxxxxxxxxx
shadowLastChange: 15969
shadowMin: 0
shadowMax: 99999
shadowWarning: 7
loginShell: /bin/bash
uidNumber: 1400
gidNumber: 1400
homeDirectory: /exports/ldapuser100

我现在应该怎么做?

答案1

LDIF 文件的内容必须对您的目录敏感。看起来(虽然您没有发布 ldif 文件中的内容,所以我真的不知道您在做什么)好像您正在尝试在 中添加用户ou=People,dc=example,dc=com,但 ou=People 不存在,或者您的目录的基本 DN 不知何故不存在。尝试将 People OU 添加到您的基本目录,然后再次添加此 LDIF。

此外,一般来说,将密码哈希值发布到互联网上并不是最好的主意。

有时,此问题也是由于无法打开后端 BDB 数据库造成的,但通常在调试输出中会给出一些相关提示。

不过,您可能需要先导入更多的东西。

就像您的基本 DN:

dn: dc=example,dc=com
objectClass: top
objectClass: dcObject
objectClass: organization
dc: example
o: ExmapleCo

您也许可以省略 objectClass=organization 和 o=ExampleCo(我真的忘记了)。

此外,您的 OU:

dn: ou=People,dc=example,dc=com
objectClass: organizationalUnit
ou: People

相关内容