[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Indexing new attr
I'm getting the following in my logs when trying to authenticate
<= bdb_equality_candidates: (member) index_param failed (18)
>From what I've gathered, it seems that I'm trying to search on an attribute that
hasn't been indexed, i.e. member
member is of course from groupOfNames
how do I add it to the index... this is what I currently have
index objectClass eq,pres
index ou,cn,mail,surname,givenname eq,pres,sub
index uidNumber,gidNumber,loginShell eq,pres
index uid,memberUid eq,pres,sub
index nisMapName,nisMapEntry eq,pres,sub
I tried adding this...worth a shot
index member eq,pres,sub
-Jonathan