[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Re: Can you use the Null DN??
At 08:03 PM 6/18/99 -0400, Brian Benson wrote:
> dn: o=top1
> objectclass: top
> objectclass: organization
> o: top1
>
> dn: o=top2
> objectclass: top
> objectclass: organization
> o: top2
>
>
>Can this be done? I don't want one large tree, I would rather have several
>smaller trees.
Using OpenLDAP 1.2, you can only add top-level DNs which are
suffixes. If you want one backend and lots of top level
dns, you can specify multiple suffixes:
database ldbm
suffix ""
suffix "o=top1"
suffix "o=top2"
However, I do think adding top-level DNs should be allowed if "" is
a suffix.
Kurt