2002-06-13 11:59:10 +08:00
|
|
|
.TH SLAPD-BDB 5 "RELEASEDATE" "OpenLDAP LDVERSION"
|
2003-01-04 04:20:47 +08:00
|
|
|
.\" Copyright 1998-2003 The OpenLDAP Foundation All Rights Reserved.
|
2002-04-30 04:24:29 +08:00
|
|
|
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
|
|
|
.\" $OpenLDAP$
|
|
|
|
.SH NAME
|
|
|
|
slapd-bdb \- BDB backend to slapd
|
|
|
|
.SH SYNOPSIS
|
|
|
|
ETCDIR/slapd.conf
|
|
|
|
.SH DESCRIPTION
|
|
|
|
The BDB backend to
|
|
|
|
.BR slapd (8)
|
|
|
|
is the recommended backend for a normal slapd database.
|
2003-04-25 00:22:46 +08:00
|
|
|
It uses the Sleepycat Berkeley DB (BDB) package to store data.
|
2002-04-30 04:24:29 +08:00
|
|
|
It makes extensive use of indexing and caching to speed data access.
|
2003-04-25 00:22:46 +08:00
|
|
|
.TP
|
|
|
|
It is noted that these options are intended to complement
|
|
|
|
Berkeley DB configuration options set in the environment's
|
|
|
|
.B DB_CONFIG
|
|
|
|
file. See Berkeley DB documentation for
|
|
|
|
details on
|
|
|
|
.B DB_CONFIG
|
|
|
|
configuration options. Where there is overlap, settings in
|
|
|
|
.B DB_CONFIG
|
|
|
|
take precedence.
|
2002-04-30 04:24:29 +08:00
|
|
|
.SH CONFIGURATION
|
2002-05-02 00:38:30 +08:00
|
|
|
These
|
|
|
|
.B slapd.conf
|
|
|
|
options apply to the BDB backend database.
|
2002-04-30 04:24:29 +08:00
|
|
|
That is, they must follow a "database bdb" line and come before any
|
|
|
|
subsequent "backend" or "database" lines.
|
2002-05-02 00:38:30 +08:00
|
|
|
Other database options are described in the
|
|
|
|
.BR slapd.conf (5)
|
|
|
|
manual page.
|
2002-04-30 04:24:29 +08:00
|
|
|
.TP
|
|
|
|
.B cachesize <integer>
|
|
|
|
Specify the size in entries of the in-memory cache maintained
|
|
|
|
by the BDB backend database instance.
|
|
|
|
The default is 1000 entries.
|
|
|
|
.TP
|
|
|
|
.B checkpoint <kbyte> <min>
|
|
|
|
Specify the frequency for checkpointing the database transaction log.
|
|
|
|
A checkpoint operation flushes the database buffers to disk and writes
|
|
|
|
a checkpoint record in the log.
|
|
|
|
The checkpoint will occur if either <kbyte> data has been written or
|
|
|
|
<min> minutes have passed since the last checkpoint.
|
|
|
|
Both arguments default to zero, in which case they are ignored.
|
|
|
|
See the Berkeley DB reference guide for more details.
|
|
|
|
.TP
|
|
|
|
.B dbnosync
|
|
|
|
Specify that on-disk database contents should not be immediately
|
|
|
|
synchronized with in memory changes.
|
|
|
|
Enabling this option may improve performance at the expense of data
|
|
|
|
security.
|
|
|
|
.TP
|
|
|
|
.B directory <directory>
|
|
|
|
Specify the directory where the BDB files containing this database and
|
|
|
|
associated indexes live.
|
|
|
|
A separate directory must be specified for each database.
|
|
|
|
The default is
|
|
|
|
.BR LOCALSTATEDIR/openldap-data .
|
|
|
|
.TP
|
|
|
|
.B dirtyread
|
|
|
|
Allow reads of modified but not yet committed data.
|
|
|
|
Usually transactions are isolated to prevent other operations from
|
|
|
|
accessing uncommitted data.
|
|
|
|
This option may improve performance, but may also return inconsistent
|
|
|
|
results if the data comes from a transaction that is later aborted.
|
|
|
|
In this case, the modified data is discarded and a subsequent search
|
|
|
|
will return a different result.
|
|
|
|
.TP
|
|
|
|
.B
|
|
|
|
index {<attrlist>|default} [pres,eq,approx,sub,<special>]
|
|
|
|
Specify the indexes to maintain for the given attribute (or
|
|
|
|
list of attributes).
|
|
|
|
Some attributes only support a subset of indexes.
|
|
|
|
If only an <attr> is given, the indices specified for \fBdefault\fR
|
|
|
|
are maintained.
|
|
|
|
Note that setting a default does not imply that all attributes will be
|
|
|
|
indexed.
|
|
|
|
|
|
|
|
A number of special index parameters may be specified.
|
|
|
|
The index type
|
|
|
|
.B sub
|
|
|
|
can be decomposed into
|
|
|
|
.BR subinitial ,
|
|
|
|
.BR subany ,\ and
|
|
|
|
.B subfinal
|
|
|
|
indices.
|
|
|
|
The special type
|
|
|
|
.B nolang
|
|
|
|
may be specified to disallow use of this index by language subtypes.
|
|
|
|
The special type
|
|
|
|
.B nosubtypes
|
|
|
|
may be specified to disallow use of this index by named subtypes.
|
|
|
|
Note: changing index settings requires rebuilding indices, see
|
|
|
|
.BR slapindex (8).
|
|
|
|
.TP
|
|
|
|
.B lockdetect {oldest|youngest|fewest|random|default}
|
|
|
|
Specify which transaction to abort when a deadlock is detected.
|
|
|
|
The default is the same as
|
|
|
|
.BR random .
|
|
|
|
.TP
|
|
|
|
.B mode <integer>
|
|
|
|
Specify the file protection mode that newly created database
|
|
|
|
index files should have.
|
|
|
|
The default is 0600.
|
2002-12-13 07:39:21 +08:00
|
|
|
.TP
|
|
|
|
.B searchstack <depth>
|
|
|
|
Specify the depth of the stack used for search filter evaluation.
|
|
|
|
Search filters are evaluated on a stack to accomodate nested AND / OR
|
|
|
|
clauses. An individual stack is assigned to each server thread.
|
|
|
|
The depth of the stack determines how complex a filter can be
|
|
|
|
evaluated without requiring any additional memory allocation. Filters that
|
|
|
|
are nested deeper than the search stack depth will cause a separate
|
|
|
|
stack to be allocated for that particular search operation. These
|
|
|
|
allocations can have a major negative impact on server performance,
|
|
|
|
but specifying too much stack will also consume a great deal of memory.
|
|
|
|
Each search stack uses 512K bytes per level. The default stack depth
|
|
|
|
is 16, thus 8MB per thread is used.
|
2002-05-02 00:38:30 +08:00
|
|
|
.SH FILES
|
2002-05-09 10:07:41 +08:00
|
|
|
.TP
|
2002-05-02 00:38:30 +08:00
|
|
|
ETCDIR/slapd.conf
|
2002-05-09 10:07:41 +08:00
|
|
|
default slapd configuration file
|
2003-04-25 00:22:46 +08:00
|
|
|
.TP
|
|
|
|
DB_CONFIG
|
|
|
|
Berkeley DB configuration file
|
2002-04-30 04:24:29 +08:00
|
|
|
.SH SEE ALSO
|
|
|
|
.BR slapd.conf (5),
|
|
|
|
.BR slapd (8),
|
|
|
|
.BR slapadd (8),
|
|
|
|
.BR slapcat (8),
|
2003-04-25 00:22:46 +08:00
|
|
|
.BR slapindex (8),
|
|
|
|
.BR Berkeley DB documentation .
|