[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: slapd (ITS#742)



> I have just installed openldap2.01 and am trying to test it.  I am getting
> no object found.  Here is my slapd.conf:
> [stuff deleted]
>
> ldapsearch -L -b "dc=hp, dc=com" -W "(objectclass=*)"

Most likely, the base of your search, "dc=hp, dc=com", does not exist.

> 
> The results where:
> 
> version: 1
> #
> # filter:(objectclass=*)
> # requesting: All
> #
> # search result
> No such object (32)
> numResponses: 1
> 
> Could someone help me?  Also could someone explain what the (32) is?
> 

>From ldap.h, 32 is the numeric error number LDAP_NO_SUCH_OBJECT, which
is rendered as "No such object" above.

Randy