Page created: 4 Feb 2020
|
Page updated: 22 Jul 2020
| 1 min read
Product PingDirectory 8.1 LDAP Standards, specifications, and protocols Directory Capability Product documentation Content Type Administration User task IT Administrator Administrator Audience Software Deployment Method
-
Use dsconfig to set attribute indexing on an attribute in
the Changelog Backend.
The following command enables the Changelog Backend and sets the backend to include all user attributes ("*") for ADD or MODIFY operations using the
changelog-include-attribute
property. Thechangelog-deleted-entry-include-attribute
property is set to all attributes ("*") to specify a set of attribute types that should be included in a changelog entry for DELETE operations. Attributes specified in this list will be recorded in thedeletedEntryAttrs
attribute on the changelog entry when an entry is deleted. The attributesdisplayName
andemployeeNumber
are indexed using theindex-include-attribute
property.$ bin/dsconfig set-backend-prop --backend-name changelog \ --set "enabled:true" \ --set "changelog-include-attribute:*" \ --set "changelog-deleted-entry-include-attribute:*" \ --set "index-include-attribute:displayName" \ --set "index-include-attribute:employeeNumber"
-
Add another attribute to index using the dsconfig
--add option, which adds the attribute to an existing
configuration setting.
$ bin/dsconfig set-backend-prop --backend-name changelog \ --add "index-include-attribute:cn"