1 .TH SLAPD-BDB 5 "2008/07/16" "OpenLDAP 2.4.11"
2 .\" Copyright 1998-2008 The OpenLDAP Foundation All Rights Reserved.
3 .\" Copying restrictions apply. See COPYRIGHT/LICENSE.
4 .\" $OpenLDAP: pkg/ldap/doc/man/man5/slapd-bdb.5,v 1.31.2.5 2008/02/11 23:26:39 kurt Exp $
6 slapd-bdb, slapd-hdb \- Berkeley DB backends to slapd
8 .B /etc/openldap/slapd.conf
10 The \fBbdb\fP backend to
12 is the recommended primary backend for a normal
15 It uses the Oracle Berkeley DB (BDB) package to store data.
16 It makes extensive use of indexing and caching to speed data access.
18 \fBhdb\fP is a variant of the \fBbdb\fP backend that uses a
20 layout which supports subtree renames. It is otherwise identical to
21 the \fBbdb\fP behavior, and all the same configuration options apply.
23 It is noted that these options are intended to complement
24 Berkeley DB configuration options set in the environment's
26 file. See Berkeley DB documentation for details on
28 configuration options.
29 Where there is overlap, settings in
35 options apply to the \fBbdb\fP and \fBhdb\fP backend database.
36 That is, they must follow a "database bdb" or "database hdb" line and
37 come before any subsequent "backend" or "database" lines.
38 Other database options are described in the
42 .BI cachesize \ <integer>
43 Specify the size in entries of the in-memory entry cache maintained
44 by the \fBbdb\fP or \fBhdb\fP backend database instance.
45 The default is 1000 entries.
47 .BI cachefree \ <integer>
48 Specify the number of entries to free from the entry cache when the
49 cache reaches the \fBcachesize\fP limit.
50 The default is 1 entry.
52 .BI checkpoint \ <kbyte>\ <min>
53 Specify the frequency for checkpointing the database transaction log.
54 A checkpoint operation flushes the database buffers to disk and writes
55 a checkpoint record in the log.
56 The checkpoint will occur if either \fI<kbyte>\fP data has been written or
57 \fI<min>\fP minutes have passed since the last checkpoint.
58 Both arguments default to zero, in which case they are ignored. When
59 the \fI<min>\fP argument is non-zero, an internal task will run every
60 \fI<min>\fP minutes to perform the checkpoint.
61 See the Berkeley DB reference guide for more details.
63 .BI cryptfile \ <file>
64 Specify the pathname of a file containing an encryption key to use for
65 encrypting the database. Encryption is performed using Berkeley DB's
66 implementation of AES. Note that encryption can only be configured before
67 any database files are created, and changing the key can only be done
68 after destroying the current database and recreating it. Encryption is
69 not enabled by default, and some distributions of Berkeley DB do not
73 Specify an encryption key to use for encrypting the database. This option
74 may be used when a separate
76 is not desired. Only one of
82 .BI dbconfig \ <Berkeley\-DB\-setting>
83 Specify a configuration directive to be placed in the
85 file of the database directory. The
87 directive is just a convenience
88 to allow all necessary configuration to be set in the
91 The options set using this directive will only be written to the
93 file if no such file existed at server startup time, otherwise
94 they are completely ignored. This allows one
95 to set initial values without overwriting/destroying a
97 file that was already customized through other means.
98 This directive may be specified multiple times, as needed.
102 dbconfig set_cachesize 0 1048576 0
103 dbconfig set_lg_bsize 2097152
108 Specify that on-disk database contents should not be immediately
109 synchronized with in memory changes.
110 Enabling this option may improve performance at the expense of data
112 See the Berkeley DB reference guide for more details.
114 .BI directory \ <directory>
115 Specify the directory where the BDB files containing this database and
116 associated indexes live.
117 A separate directory must be specified for each database.
119 .BR /var/openldap/openldap-data .
122 Allow reads of modified but not yet committed data.
123 Usually transactions are isolated to prevent other operations from
124 accessing uncommitted data.
125 This option may improve performance, but may also return inconsistent
126 results if the data comes from a transaction that is later aborted.
127 In this case, the modified data is discarded and a subsequent search
128 will return a different result.
130 .BI dncachesize \ <integer>
131 Specify the maximum number of DNs in the in-memory DN cache. The
132 default is twice the \fBcachesize\fP. Ideally this cache should be
133 large enough to contain the DNs of every entry in the database.
135 .BI idlcachesize \ <integer>
136 Specify the size of the in-memory index cache, in index slots. The
137 default is zero. A larger value will speed up frequent searches of
138 indexed entries. An \fBhdb\fP database needs a large \fBidlcachesize\fP
139 for good search performance, typically three times the
144 \fBindex \fR{\fI<attrlist>\fR|\fBdefault\fR} [\fBpres\fR,\fBeq\fR,\fBapprox\fR,\fBsub\fR,\fI<special>\fR]
145 Specify the indexes to maintain for the given attribute (or
147 Some attributes only support a subset of indexes.
148 If only an \fI<attr>\fP is given, the indices specified for \fBdefault\fR
150 Note that setting a default does not imply that all attributes will be
151 indexed. Also, for best performance, an
153 index should always be configured for the
157 A number of special index parameters may be specified.
160 can be decomposed into
167 may be specified to disallow use of this index by language subtypes.
170 may be specified to disallow use of this index by named subtypes.
171 Note: changing \fBindex\fP settings in
173 requires rebuilding indices, see
175 changing \fBindex\fP settings
176 dynamically by LDAPModifying "cn=config" automatically causes rebuilding
177 of the indices online in a background task.
182 to index one attribute at a time. By default, all indexed
183 attributes in an entry are processed at the same time. With this option,
184 each indexed attribute is processed individually, using multiple passes
185 through the entire database. This option improves
188 when the database size exceeds the \fBdbcache\fP size. When the \fBdbcache\fP is
189 large enough, this option is not needed and will decrease performance.
192 performs full indexing and so a separate
194 run is not needed. With this option,
200 .BR lockdetect \ { oldest | youngest | fewest | random | default }
201 Specify which transaction to abort when a deadlock is detected.
206 Specify the file protection mode that newly created database
207 index files should have.
210 .BI searchstack \ <depth>
211 Specify the depth of the stack used for search filter evaluation.
212 Search filters are evaluated on a stack to accommodate nested AND / OR
213 clauses. An individual stack is assigned to each server thread.
214 The depth of the stack determines how complex a filter can be
215 evaluated without requiring any additional memory allocation. Filters that
216 are nested deeper than the search stack depth will cause a separate
217 stack to be allocated for that particular search operation. These
218 allocations can have a major negative impact on server performance,
219 but specifying too much stack will also consume a great deal of memory.
220 Each search stack uses 512K bytes per level. The default stack depth
221 is 16, thus 8MB per thread is used.
223 .BI shm_key \ <integer>
224 Specify a key for a shared memory BDB environment. By default the
225 BDB environment uses memory mapped files. If a non-zero value is
226 specified, it will be used as the key to identify a shared memory
227 region that will house the environment.
233 backends honor access control semantics as indicated in
234 .BR slapd.access (5).
237 .B /etc/openldap/slapd.conf
243 Berkeley DB configuration file
250 Berkeley DB documentation.
252 .\" Shared Project Acknowledgement Text
253 .B "OpenLDAP Software"
254 is developed and maintained by The OpenLDAP Project <http://www.openldap.org/>.
255 .B "OpenLDAP Software"
256 is derived from University of Michigan LDAP 3.3 Release.
257 Originally begun by Kurt Zeilenga. Caching mechanisms originally designed
258 by Jong-Hyuk Choi. Completion and subsequent work, as well as
259 back-hdb, by Howard Chu.