[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Re: error at the end of Netscape Calendar install
At 11:03 PM 8/10/99 +0300, Paolo Supino wrote:
>conn=6 op=0 BIND dn="UID=ADMIN,CN=ADMIN,O=SCHEMA,C=IL" method=128
>conn=6 op=0 RESULT err=32 tag=97 nentries=0
>
>What does err=32 mean?
No such object.
>Some backround information is needed: The LDAP server is 1.2.6 running on
>OpenBSD. The ldif file that creats the ldbm file is:
Use ldapadd(1) to add your entries.... ldif2ldif does no schema
nor naming checks.
>dn: o=Schema, c=IL
>o: Schema
>objectclass: organization
>
>dn: cn=Paolo Supino, o=Schema, c=IL
>cn: Paolo
>sn: Supino
>mail: paolo@schema.co.il
>uid; 1001
^ bogus
>username: paolo
>userpassword: something
>objectclass: person
person doesn't allow mail, uid, nor username. Also, the
entry's RDN components be taken from an attribute of the
entry, i.e.:
dn: cn=Paolo Supino, o=Schema, c=IL
cn: Paolo Supino
sn: Supino
objectclass: person
Kurt