Page created: 4 Feb 2020
|
Page updated: 22 Jul 2020
| 1 min read
Product PingDirectory 8.1 Directory Capability Product documentation Content Type Administration User task IT Administrator Administrator Audience Software Deployment Method Configuration
-
Run dsconfig and set the
index-entry-limit
to 5000. By default, the value is set to 4000. Remember to include the bind parameters for your system. Once you enter the command, confirm that you want to apply the changes.$ bin/dsconfig set-backend-prop \ --backend-name userRoot \ --set index-entry-limit:5000 \ One or more configuration property changes require administrative action or confirmation/notification. Those properties include: * index-entry-limit: If any index keys have already reached this limit, indexes must be rebuilt before they will be allowed to use the new limit. Setting a large limit (greater than 10,000) could have a big impact on write performance and database growth on disk. Continue? Choose 'no' to return to the previous step (yes / no) [yes]: yes
-
Stop the server.
$ bin/stop-server
-
Rebuild the index.
$ bin/rebuild-index --baseDN dc=example,dc=com \ --index cn --index givenName --index objectClass \ --index sn --maxThreads 10
-
View the Index Summary Statistics table, which is automatically displayed to
system out after running the rebuild-index command. You can
also access the table at
logs/tools/rebuild-index-summary.txt. Repeat the last
three steps to make more adjustments to your indexes.
-
Restart the server.
$ bin/start-server