Displaying 2 results from an estimated 2 matches for "fattindex".
Did you mean:
attrindex
2024 Dec 11
1
High cpu load on LDAP
...XLIST | grep -i member
@IDXATTR: msDS-Cached-Membership-Time-Stamp
> and trigger a reindex.
With:
samba-tool dbcheck --reindex
rigth?!
> The thing that determines whether an attribute is indexed its schema
> definition has an odd number (or in some versions, the string
> "fATTINDEX") for the searchFlags attribute.
> There is this samba-tool command:
> samba-tool schema attribute \
> modify \
> member \
> --searchflags="fATTINDEX" \
> --option="dsdb:schema update allowed = true"
In the past i've added index (eg...
2024 Nov 21
1
High cpu load on LDAP
...NDEXLIST
you will see a list of "@IDXATTR" attributes. You need to modify it so
that there is one saying:
@IDXATTR: member
and trigger a reindex.
The thing that determines whether an attribute is indexed its schema
definition has an odd number (or in some versions, the string
"fATTINDEX") for the searchFlags attribute.
There is this samba-tool command:
samba-tool schema attribute \
modify \
member \
--searchflags="fATTINDEX" \
--option="dsdb:schema update allowed = true"
Notice the last option. Without it samba-tool will refuse t...