OpenLDAP Faq-O-Matic : OpenLDAP Software FAQ : Common Errors : ldap_add: No such object | |
The "ldap_add: No such object" error is commonly returned if parent of
the entry being added does not exist. Add the parent entry first...
For example, if you are adding "cn=bob,dc=domain,dc=com" and you get: ldap_add: No such object The entry "dc=domain,dc=com" likely doesn't exist. You can use ldapsearch to see if does exist: ldapsearch -b 'dc=domain,dc=com' -s base '(objectclass=*)'If it doesn't, add it. See the Quick Start Guide (http://www.openldap.org/doc/admin/quickstart.html) for assistance.
Note: if the entry being added is the same as database suffix,
it's parent isn't required. Ie: if your suffix is "dc=domain,dc=com",
"dc=com" doesn't need to exist to add "dc=domain,dc=com".
| |
This error will also occur if you try to add any entry that the
server is not configured to hold.
For example, if your database suffix is "dc=domain,dc=com" and you attempt to add "dc=domain2,dc=com", "dc=com", "dc=domain,dc=org", "o=domain,c=us", or an other DN in the "dc=domain,dc=com" subtree, the server will return a "No such object" (or referral) error.
slapd(8) will generally return "no global superior knowledge"
as additional information indicating its return noSuchObject
instead of a referral as the server is not configured with
knowledge of a global superior server.
| |
See also:
ldapadd(1)
ldapmodify(1)
ldap_add/delete/modify/rename: no global superior knowledge
| |
[Append to This Answer] |
Previous: | ldap_add/modify: Object class violation |
Next: | ldap add: invalid structural object class chain |
|