]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapd.conf.5
Update copyright statements
[openldap] / doc / man / man5 / slapd.conf.5
1 .TH SLAPD.CONF 5 "28 May 2001" "OpenLDAP LDVERSION"
2 .\" Copyright 1998-2002 The OpenLDAP Foundation All Rights Reserved.
3 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
4 .\" $OpenLDAP$
5 .SH NAME
6 slapd.conf \- configuration file for slapd, the stand-alone LDAP daemon
7 .SH SYNOPSIS
8 ETCDIR/slapd.conf
9 .SH DESCRIPTION
10 The file
11 .B ETCDIR/slapd.conf
12 contains configuration information for the
13 .BR slapd (8)
14 daemon.  This configuration file is also used by the
15 .BR slurpd (8)
16 replication daemon and by the SLAPD tools
17 .BR slapadd (8),
18 .BR slapcat (8),
19 and
20 .BR slapindex (8).
21 .LP
22 The
23 .B slapd.conf
24 file consists of a series of global configuration options that apply to
25 .B slapd
26 as a whole (including all backends), followed by zero or more database
27 backend definitions that contain information specific to a backend
28 instance.
29 .LP
30 The general format of
31 .B slapd.conf
32 is as follows:
33 .LP
34 .nf
35     # comment - these options apply to every database
36     <global configuration options>
37     # first database definition & configuration options
38     database    <backend 1 type>
39     <configuration options specific to backend 1>
40     # subsequent database definitions & configuration options
41     ...
42 .fi
43 .LP
44 As many backend-specific sections as desired may be included.  Global
45 options can be overridden in a backend (for options that appear more
46 than once, the last appearance in the
47 .B slapd.conf
48 file is used).  Blank lines and comment lines beginning with a `#'
49 character are ignored. If a line begins with white space, it is
50 considered a continuation of the previous line.
51 .LP
52 Arguments on configuration lines are separated by white space. If an
53 argument contains white space, the argument should be enclosed in
54 double quotes.  If an argument contains a double quote (`"') or a
55 backslash character (`\\'), the character should be preceded by a
56 backslash character.
57 .LP
58 The specific configuration options available are discussed below in the
59 Global Configuration Options, General Backend Options, General Database
60 Options, LDBM Database-Specific Options,
61 Shell Database-Specific Options, and Password
62 Database-Specific Options sections.  Refer to the "OpenLDAP
63 Administrator's Guide" for more details on the slapd configuration
64 file.
65 .SH GLOBAL CONFIGURATION OPTIONS
66 Options described in this section apply to all backends, unless specifically 
67 overridden in a backend definition. Arguments that should be replaced by 
68 actual text are shown in brackets <>.
69 .TP
70 .B access to <what> [ by <who> <access> <control> ]+
71 Grant access (specified by <access>) to a set of entries and/or
72 attributes (specified by <what>) by one or more requestors (specified
73 by <who>).
74 See the "OpenLDAP's Administrator's Guide" for details.
75 .TP
76 .B allow <features>
77 Specify a set of features (separated by white space) to
78 allow (default none).
79 .B bind_v2
80 allows acceptance of LDAPv2 bind requests.
81 .B bind_anon_cred
82 allows anonymous bind creditials are not empty (e.g.
83 when DN is empty).
84 .B bind_anon_dn
85 allows unauthenticated (anonymous) bind when DN is not empty.
86 .TP
87 .B argsfile <filename>
88 The ( absolute ) name of a file that will hold the 
89 .B slapd
90 server's command line options
91 if started without the debugging command line option.
92 .HP
93 .hy 0
94 .B attributetype (\ <oid> [NAME\ <name>] [OBSOLETE]\
95  [DESC\ <description>]\
96  [SUP\ <oid>] [EQUALITY\ <oid>] [ORDERING\ <oid>]\
97  [SUBSTR\ <oid>] [SYNTAX\ <oidlen>] [SINGLE\-VALUE] [COLLECTIVE]\
98  [NO\-USER\-MODIFICATION] [USAGE\ <attributeUsage>]\ )
99 .RS
100 Specify an attribute type using the LDAPv3 syntax defined in RFC 2252.
101 The slapd parser extends the RFC 2252 definition by allowing string
102 forms as well as numeric OIDs to be used for the attribute OID and
103 attribute syntax OID.
104 (See the
105 .B objectidentifier
106 description.) Currently the syntax name parser is case-sensitive.
107 The known syntax names are:
108 .RS
109 .RS
110 .PD 0
111 AttributeTypeDescription Audio Binary BitString Certificate CertificateList
112 CertificatePair DN DeliveryMethod DirectoryString DITContentRuleDescription
113 DITStructureRuleDescription EnhancedGuide FacsimileTelephoneNumber
114 GeneralizedTime Guide IA5String Integer MatchingRuleDescription
115 MatchingRuleUseDescription MailPreference NameAndOptionalUUID
116 NameFormDescription NumericString ObjectClassDescription OID
117 OtherMailbox OctetString PostalAddress ProtocolInformation
118 PresentationAddress PrintableString SupportedAlgorithm TelephoneNumber
119 TeletexTerminalIdentifier TelexNumber UTCTime LDAPSyntaxDescription
120 SubstringAssertion NISnetgrouptriple Bootparameter
121 .PD
122 .RE
123 .RE
124 .RE
125 .TP
126 .B concurrency <integer>
127 Specify a desired level of concurrency.  Provided to the underlying
128 thread system as a hint.  The default is not to provide any hint.
129 .TP
130 .B defaultsearchbase <dn>
131 Specify a default search base to use when client submits a
132 non-base search request with an empty base DN.
133 .TP
134 .B disallow <features>
135 Specify a set of features (separated by white space) to
136 disallow (default none).
137 .B bind_anon
138 disables acceptance of anonymous bind requests.
139 .B bind_simple
140 disables simple (bind) authentication.
141 .B bind_krbv4
142 disables Kerberos V4 (bind) authentication.
143 .B tls_2_anon
144 disables Start TLS from forcing session to anonymous status (see also
145 .BR tls_authc ).
146 .B tls_authc
147 disables StartTLS if authenticated (see also
148 .BR tls_2_anon ).
149 .TP
150 .B idletimeout <integer>
151 Specify the number of seconds to wait before forcibly closing
152 an idle client connections.  A idletimeout of 0 disables this
153 feature.  The default is 0.
154 .TP
155 .B include <filename>
156 Read additional configuration information from the given file before
157 continuing with the next line of the current file.
158 .TP
159 .B limits <who> <limit> [<limit> [...]]
160 Specify time and size limits based on who initiated an operation.
161 The argument
162 .B who
163 can be any of
164 .RS
165 .RS
166 .TP
167 anonymous | users | [dn[.<style>]=]<pattern>
168
169 .RE
170 with
171 .RS
172 .TP
173 <style> ::= exact | base | one | subtree | children | regex | anonymous
174
175 .RE
176 .B Anonymous
177 is hit when a search is performed without prior binding;
178 .B users
179 is hit when a search is performed by a successfully bound user;
180 otherwise a
181 .B regex
182 dn pattern is assumed unless otherwise specified by qualifying 
183 the (optional) key string
184 .B dn
185 with 
186 .B exact
187 or
188 .B base
189 (which are synonims), to require an exact match; with
190 .BR one, 
191 to require exactly one level of depth match; with
192 .BR subtree,
193 to allow any level of depth match, including the exact match; with
194 .BR children,
195 to allow any level of depth match, not including the exact match;
196 .BR regex
197 explicitly requires the (default) match based on regular expression
198 pattern, as detailed in
199 .BR regex(7).
200 Finally,
201 .B anonymous
202 matches unbound operations; the 
203 .B pattern
204 field is ignored.
205 The same behavior is obtained by using the 
206 .B anonymous
207 form of the
208 .B who
209 clause.
210
211 The currently supported limits are 
212 .B size
213 and 
214 .BR time.
215
216 The syntax for time limits is 
217 .BR time[.{soft|hard}]=<integer> ,
218 where 
219 .BR integer
220 is the number of seconds slapd will spend answering a search request.
221 If no time limit is explicitly requested by the client, the 
222 .BR soft
223 limit is used; if the requested time limit exceedes the
224 .BR hard
225 limit, an "Unwilling to perform" is returned.
226 If the
227 .BR hard
228 limit is set to 0 or to the keyword "soft", the soft limit is used 
229 in either case; if it is set to -1 or to the keyword "none", 
230 no hard limit is enforced.
231 Explicit requests for time limits smaller or equal to the
232 .BR hard 
233 limit are honored.
234 If no flag is set, the value is assigned to the 
235 .BR soft 
236 limit, and the
237 .BR hard
238 limit is set to zero, to preserve the original behavior.
239
240 The syntax for size limits is
241 .BR size[.{soft|hard|unchecked}]=<integer> ,
242 where
243 .BR integer
244 is the maximum number of entries slapd will return answering a search 
245 request.
246 If no size limit is explicitly requested by the client, the
247 .BR soft
248 limit is used; if the requested size limit exceedes the
249 .BR hard
250 limit, an "Unwilling to perform" is returned.
251 If the 
252 .BR hard
253 limit is set to 0 or to the keyword "soft", the soft limit is used 
254 in either case; if it is set to -1 or to the keyword "none", 
255 no hard limit is enforced.
256 Explicit requests for size limits smaller or equal to the
257 .BR hard
258 limit are honored.
259 The
260 .BR unchecked
261 flag sets a limit on the number of candidates a search request is allowed
262 to examine.
263 If the selected candidates exceed the 
264 .BR unchecked
265 limit, the search will abort with "Unwilling to perform".
266 If it is set to -1 or to the keyword "none", no limit is applied (the default).
267 If no flag is set, the value is assigned to the
268 .BR soft 
269 limit, and the
270 .BR hard
271 limit is set to zero, to preserve the original behavior.
272
273 In case of no match, the global limits are used.
274 The default values are the same of
275 .BR sizelimit
276 and
277 .BR timelimit ;
278 no limit is set on 
279 .BR unchecked .
280 This feature is currently exploited by the ldbm backend only.
281 .RE
282 .TP
283 .B loglevel <integer>
284 Specify the level at which debugging statements and operation 
285 statistics should be syslogged (currently logged to the
286 .BR syslogd (8) 
287 LOG_LOCAL4 facility).  Log levels are additive, and available levels
288 are:
289 .RS
290 .RS
291 .PD 0
292 .TP
293 .B 1
294 trace function calls
295 .TP
296 .B 2
297 debug packet handling
298 .TP
299 .B 4
300 heavy trace debugging
301 .TP
302 .B 8
303 connection management
304 .TP
305 .B 16
306 print out packets sent and received
307 .TP
308 .B 32
309 search filter processing
310 .TP
311 .B 64
312 configuration file processing
313 .TP
314 .B 128
315 access control list processing
316 .TP
317 .B 256
318 stats log connections/operations/results
319 .TP
320 .B 512
321 stats log entries sent
322 .TP
323 .B 1024
324 print communication with shell backends
325 .TP
326 .B 2048
327 entry parsing
328 .PD
329 .RE
330 .RE
331 .HP
332 .B objectclass ( <oid> [NAME <name>] [DESC <description] [OBSOLETE]\
333  [SUP <oids>] [{ ABSTRACT | STRUCTURAL | AUXILIARY }] [MUST <oids>]\
334  [MAY <oids>] )
335 .RS
336 Specify an objectclass using the LDAPv3 syntax defined in RFC 2252.
337 The slapd parser extends the RFC 2252 definition by allowing string
338 forms as well as numeric OIDs to be used for the object class OID.
339 (See the
340 .B
341 objectidentifier
342 description.)  Object classes are "STRUCTURAL" by default.
343 .RE
344 .TP
345 .B objectidentifier <name> { <oid> | <name>[:<suffix>] }
346 Define a string name that equates to the given OID. The string can be used
347 in place of the numeric OID in objectclass and attribute definitions. The
348 name can also be used with a suffix of the form ":xx" in which case the
349 value "oid.xx" will be used.
350 .TP
351 .B password-hash <hash>
352 The <hash> to use for userPassword generation.  One of
353 .BR {SSHA} ,
354 .BR {SHA} ,
355 .BR {SMD5} ,
356 .BR {MD5} ,
357 and
358 .BR {CRYPT} .
359 The default is
360 .BR {SSHA} .
361 .TP
362 .B password-crypt-salt-format <format>
363 Specify the format of the salt passed to
364 .BR crypt (3)
365 when generating {CRYPT} passwords.  
366 This string needs to be in
367 .BR sprintf (3)
368 format and may include one (and only one) %s conversion.
369 This conversion will be substituted with a string random
370 characters from [A\-Za\-z0\-9./].  For example, "%.2s"
371 provides a two character salt and "$1$%.8s" tells some
372 versions of crypt(3) to use an MD5 algorithm and provides
373 8 random characters of salt.  The default is "%s", which
374 provides 31 characters of salt.
375 .TP
376 .B pidfile <filename>
377 The ( absolute ) name of a file that will hold the 
378 .B slapd
379 server's process ID ( see
380 .BR getpid (2)
381 ) if started without the debugging command line option.
382 .TP
383 .B referral <url>
384 Specify the referral to pass back when
385 .BR slapd (8)
386 cannot find a local database to handle a request.
387 If specified multiple times, each url is provided.
388 .TP
389 .B require <conditions>
390 Specify a set of conditions (separated by white space) to
391 require (default none).
392 The directive may be specified globally and/or per-database.
393 .B bind
394 requires bind operation prior to directory operations.
395 .B LDAPv3
396 requires session to be using LDAP version 3.
397 .B authc
398 requires authentication prior to directory operations.
399 .B SASL
400 requires SASL authentication prior to directory operations.
401 .B strong
402 requires strong authentication prior to directory operations.
403 Currently
404 .B SASL
405 and
406 .B strong
407 conditions are currently same.
408 .B none
409 may be used to require no conditions (useful for clearly globally
410 set conditions within a particular database).
411 .TP
412 .B rootDSEfile <file>
413 Specify the name of an LDIF(5) file containing user defined attributes
414 for the root DSE.  These attributes are returned in addition to the
415 attributes normally produced by slapd.
416 .TP
417 .B sasl-host <fqdn>
418 Used to specify the fully qualified domain name used for SASL processing.
419 .TP
420 .B sasl-realm <realm>
421 Specify SASL realm.  Default is empty.
422 .TP
423 .B sasl-regexp <match> <replace>
424 Used by the SASL authorization mechanism to convert a SASL authenticated 
425 username to an LDAP DN. When an authorization request is received, the SASL 
426 .B USERNAME, REALM, 
427 and
428 .B MECHANISM
429 are taken, when available, and combined into a SASL name of the 
430 form
431 .RS
432 .RS
433 .TP
434 .B uid=<UID>[,cn=<REALM>][,cn=<MECH>],cn=AUTHZ
435
436 .RE
437 This SASL name is then compared against the
438 .B match
439 regular expression, and if the match is successful, the SASL name is
440 replaced with the
441 .B replace
442 string. If there are wildcard strings in the 
443 .B match
444 regular expression that are enclosed in parenthesis, e.g. 
445 .RS
446 .RS
447 .TP
448 .B uid=(.*)\\\\+realm=.*
449
450 .RE
451 .RE
452 then the portion of the SASL name that matched the wildcard will be stored
453 in the numbered placeholder variable $1. If there are other wildcard strings
454 in parenthesis, the matching strings will be in $2, $3, etc. up to $9. The 
455 placeholders can then be used in the 
456 .B replace
457 string, e.g. 
458 .RS
459 .RS
460 .TP
461 .B cn=$1,ou=Accounts,dc=$2,dc=$4. 
462
463 .RE
464 .RE
465 The replaced SASL name can be either a DN or an LDAP URI. If the latter, the slapd
466 server will use the URI to search its own database, and if the search returns 
467 exactly one entry, the SASL name is replaced by the DN of that entry.
468 Multiple 
469 .B sasl-regexp 
470 options can be given in the configuration file to allow for multiple matching 
471 and replacement patterns. The matching patterns are checked in the order they 
472 appear in the file, stopping at the first successful match.
473 .LP
474 .B Caution:
475 Because the plus sign + is a character recognized by the regular expression engine,
476 and it will appear in SASL names that include a REALM, be careful to escape the
477 plus sign with a backslash \\+ to remove the character's special meaning.
478 .RE
479 .TP
480 .B sasl-secprops <properties>
481 Used to specify Cyrus SASL security properties.
482 The
483 .B none
484 flag (without any other properities) causes the flag properites
485 default, "noanonymous,noplain", to be cleared.
486 The
487 .B noplain
488 flag disables mechanisms susceptible to simple passive attacks.
489 The
490 .B noactive
491 flag disables mechanisms susceptible to active attacks.
492 The
493 .B nodict
494 flag disables mechanisms susceptible to passive dictionary attacks.
495 The
496 .B noanonyous
497 flag disables mechanisms which support anonymous login.
498 The
499 .B forwardsec
500 flag require forward secrecy between sessions.
501 The
502 .B passcred
503 require mechanisms which pass client credentials (and allow
504 mechanisms which can pass credentials to do so).
505 The
506 .B minssf=<factor> 
507 property specifies the minimum acceptable
508 .I security strength factor
509 as an integer approximate to effective key length used for
510 encryption.  0 (zero) implies no protection, 1 implies integrity
511 protection only, 56 allows DES or other weak ciphers, 112
512 allows triple DES and other strong ciphers, 128 allows RC4,
513 Blowfish and other modern strong ciphers.  The default is 0.
514 The
515 .B maxssf=<factor> 
516 property specifies the maximum acceptable
517 .I security strength factor
518 as an integer (see minssf description).  The default is INT_MAX.
519 The
520 .B maxbufsize=<size> 
521 property specifies the maximum security layer receive buffer
522 size allowed.  0 disables security layers.  The default is 65536.
523 .TP
524 .B security <factors>
525 Specify a set of factors (separated by white space) to require.
526 An integer value is associated with each factor and is roughly
527 equivalent of the encryption key length to require.  A value
528 of 112 is equivalent to 3DES, 128 to Blowfish, etc..
529 The directive may be specified globally and/or per-database.
530 .B ssf=<n>
531 specifies the overall security strength factor.
532 .B transport=<n>
533 specifies the transport security strength factor.
534 .B tls=<n>
535 specifies the TLS security strength factor.
536 .B sasl=<n>
537 specifies the SASL security strength factor.
538 .B update_ssf=<n>
539 specifies the overall security strength factor to require for
540 directory updates.
541 .B update_transport=<n>
542 specifies the transport security strength factor to require for
543 directory updates.
544 .B update_tls=<n>
545 specifies the TLS security strength factor to require for
546 directory updates.
547 .B update_sasl=<n>
548 specifies the SASL security strength factor to require for
549 directory updates.
550 Note that the
551 .B transport
552 factor is measure of security provided by the underlying transport,
553 e.g. ldapi:// (and eventually IPSEC).  It is not normally used.
554 .TP
555 .B sizelimit <integer> 
556 .TP
557 .B sizelimit size[.{soft|hard|unchecked}]=<integer> [...]
558 Specify the maximum number of entries to return from a search operation.
559 The default size limit is 500.
560 The second format allows a fine grain setting of the size limits.
561 Extra args can be added on the same line.
562 See
563 .BR limits
564 for an explanation of the different flags.
565 .TP
566 .B sockbuf_max_incoming <integer>
567 Specify the maximum incoming LDAP PDU size for anonymous sessions.
568 The default is 262143.
569 .TP
570 .B sockbuf_max_incoming_auth <integer>
571 Specify the maximum incoming LDAP PDU size for authenticated sessions.
572 The default is 4194303.
573 .TP
574 .B srvtab <filename>
575 Specify the srvtab file in which the kerberos keys necessary for
576 authenticating clients using kerberos can be found. This option is only
577 meaningful if you are using Kerberos authentication.
578 .TP
579 .B threads <integer>
580 Specify the maximum size of the primary thread pool.
581 The default is 32.
582 .TP
583 .B timelimit <integer>
584 .TP
585 .B timelimit time[.{soft|hard}]=<integer> [...]
586 Specify the maximum number of seconds (in real time)
587 .B slapd
588 will spend answering a search request.  The default time limit is 3600.
589 The second format allows a fine grain setting of the time limits.
590 Extra args can be added on the same line.
591 See
592 .BR limits
593 for an explanation of the different flags.
594 .SH TLS OPTIONS
595 If
596 .B slapd
597 is build with support for Transport Layer Security, there are more options
598 you can specify.
599 .TP
600 .B TLSCipherSuite <cipher-suite-spec>
601 Permits configuring what ciphers will be accepted and the preference order.
602 <cipher-suite-spec> should be a cipher specification for OpenSSL.  Example:
603
604 TLSCipherSuite HIGH:MEDIUM:+SSLv2
605
606 To check what ciphers a given spec selects, use:
607
608 openssl ciphers -v <cipher-suite-spec>
609 .TP
610 .B TLSCertificateFile <filename>
611 Specifies the file that contains the
612 .B slapd
613 server certificate.
614 .TP
615 .B TLSCertificateKeyFile <filename>
616 Specifies the file that contains the
617 .B slapd
618 server private key that matches the certificate stored in the
619 .B TLSCertificateFile
620 file.  Currently, the private key must not be protected with a password, so
621 it is of critical importance that it is protected carefully. 
622 .TP
623 .B TLSRandFile <filename>
624 Specifies the file to obtain random bits from when /dev/[u]random
625 is not available.  Generally set to the name of the EGD/PRNGD socket.
626 The environment variable RANDFILE can also be used to specify the filename.
627 .SH GENERAL BACKEND OPTIONS
628 Options in this section only apply to the configuration file section
629 for the specified backend.  They are supported by every
630 type of backend.
631 .TP
632 .B backend <databasetype>
633 Mark the beginning of a backend definition. <databasetype>
634 should be one of
635 .B ldbm,
636 .B shell,
637 or
638 .B passwd
639 depending on which backend will serve the database.
640
641 .SH GENERAL DATABASE OPTIONS
642 Options in this section only apply to the configuration file section
643 for the database in which they are defined.  They are supported by every
644 type of backend.
645 .TP
646 .B database <databasetype>
647 Mark the beginning of a new database instance definition. <databasetype>
648 should be one of
649 .B ldbm,
650 .B shell,
651 or
652 .B passwd
653 depending on which backend will serve the database.
654 .TP
655 .B lastmod on | off
656 Controls whether
657 .B slapd
658 will automatically maintain the 
659 modifiersName, modifyTimestamp, creatorsName, and 
660 createTimestamp attributes for entries.  By default, lastmod is on.
661 .TP
662 .B readonly on | off
663 This option puts the database into "read-only" mode.  Any attempts to 
664 modify the database will return an "unwilling to perform" error.  By
665 default, readonly is off.
666 .HP
667 .B replica host=<hostname>[:port] [tls=yes|critical]
668 .B [suffix=<suffix> [...]]
669 .B bindmethod=simple|sasl [binddn=<simple DN>] [credentials=<simple password>]
670 .B [saslmech=<SASL mech>] [secopts=<options>] [realm=<realm>]
671 .B [authcId=<authentication ID>] [authcId=<authentication ID>]
672 .RS
673 Specify a replication site for this database.  Refer to the "OpenLDAP 
674 Administrator's Guide" for detailed information on setting up a replicated
675 .B slapd
676 directory service. Zero or more
677 .B suffix
678 instances can be used to select the subtrees that will be replicated
679 (defaults to all the database). A
680 .B bindmethod
681 of
682 .B simple
683 requires the options
684 .B binddn 
685 and
686 .B credentials  
687 and should only be used when adequate security services 
688 (e.g TLS or IPSEC) are in place. A
689 .B bindmethod 
690 of
691 .B sasl 
692 requires the option
693 .B saslmech. 
694 If the 
695 .B mechanism
696 will use Kerberos, a kerberos instance should be given in 
697 .B authcId.
698 .RE
699 .TP
700 .B replogfile <filename>
701 Specify the name of the replication log file to log changes to.  
702 The replication log is typically written by
703 .BR slapd (8)
704 and read by
705 .BR slurpd (8).
706 See
707 .BR slapd.replog (5)
708 for more information.  The specified file should be located
709 in a directory with limited read/write/execute access as the replication
710 logs may contain sensitive information.
711 .TP
712 .B rootdn <dn>
713 Specify the distinguished name that is not subject to access control 
714 or administrative limit restrictions for operations on this database.
715 This DN may or may not be associated with an entry.  An empty root
716 DN (the default) specifies no root access is to be granted.  It is
717 recommended that the rootdn only be specified when needed (such as
718 when initially populating a database).  If the rootdn is within
719 a namingContext (suffix) of the database, a simple bind password
720 may also be provided using the
721 .B rootpw
722 directive.
723 .TP
724 .B rootpw <password>
725 Specify a password (or hash of the password) for the rootdn.  If
726 the rootdn is not within the namingContext of the database, the
727 provided password is ignored.
728 This option accepts all RFC 2307 userPassword formats known to
729 the server (see 
730 .B password-hash
731 desription) as well as cleartext.
732 .BR slappasswd (8) 
733 may be used to generate a hash of a password.  Cleartext
734 and \fB{CRYPT}\fP passwords are not recommended.  If empty
735 (the default), authentication of the root DN is by other means
736 (e.g. SASL).  Use of SASL is encouraged.
737 .TP
738 .B suffix <dn suffix>
739 Specify the DN suffix of queries that will be passed to this 
740 backend database.  Multiple suffix lines can be given and at least one is 
741 required for each database definition.
742 .TP
743 .B subordinate
744 Specify that the current backend database is a subordinate of another
745 backend database. A subordinate database may have only one suffix. This
746 option may bse used to glue multiple databases into a single namingContext.
747 If the suffix of the current database is within the namingContext of a
748 superior database, searches against the superior database will be
749 propagated to the subordinate as well. All of the databases
750 associated with a single namingContext should have identical rootdns.
751 Behavior of other LDAP operations is unaffected by this setting. In
752 particular, it is not possible to use moddn to move an entry from
753 one subordinate to another subordinate within the namingContext.
754 .TP
755 .B updatedn <dn>
756 This option is only applicable in a slave
757 .B slapd.
758 It specifies the DN allowed to make changes to the replica (typically,
759 this is the DN
760 .BR slurpd (8)
761 binds as when making changes to the replica).
762 .TP
763 .B updateref <url>
764 Specify the referral to pass back when
765 .BR slapd (8)
766 is asked to modify a replicated local database.
767 If specified multiple times, each url is provided.
768 .\" .SH LDBM BACKEND-SPECIFIC OPTIONS
769 .\" Options in this category only apply to the LDBM backend. That is,
770 .\" they must follow "backend ldbm" line and come before any subsequent
771 .\" "backend" or "database" lines.  The LDBM backend is a high-performance
772 .\" database that makes extensive use of indexing and caching to speed
773 .\" data access. 
774 .SH LDBM DATABASE-SPECIFIC OPTIONS
775 Options in this category only apply to the LDBM databases. That is,
776 they must follow "database ldbm" line and come before any subsequent
777 "backend" or "database" lines.
778 .TP
779 .B cachesize <integer>
780 Specify the size in entries of the in-memory cache maintained 
781 by the LDBM backend database instance.  The default is 1000 entries.
782 .TP
783 .B dbcachesize <integer>
784 Specify the size in bytes of the in-memory cache associated 
785 with each open index file. If not supported by the underlying database 
786 method, this option is ignored without comment.  The default is 100000 bytes.
787 .TP
788 .B dbnolocking
789 Specify that no database locking should be performed.  
790 Enabling this option may improve performance at the expense of data security.
791 Do NOT run any slap tools while slapd is running.
792 .TP
793 .B dbnosync
794 Specify that on-disk database contents should not be immediately
795 synchronized with in memory changes.  Enabling this option may improve
796 performance at the expense of data security.
797 .TP
798 .B dbsync <frequency> <maxdelays> <delayinterval>
799 Flush dirty database buffers to disk every
800 .B <seconds>
801 seconds.  Implies
802 .B dbnosync
803 (ie. indvidual updates are no longer written to disk).  It attempts to avoid
804 syncs during periods of peak activity by waiting
805 .B <delayinterval>
806 seconds if the server is busy, repeating this delay up to
807 .B <maxdelays>
808 times before proceeding.  
809 It is an attempt to provide higher write performance with some amount of data
810 security.  Note that it may still be possible to get an inconsistent 
811 database if the underlying engine fills its cache and writes out individual
812 pages and slapd crashes or is killed before the next sync.
813 .B <maxdelays>
814 and
815 .B <delayinterval>
816 are optional and default to
817 .B 12
818 and
819 .B 5
820 respectively, giving a total elapsed delay of 60 seconds before a sync
821 will occur.
822 .B <maxdelays>
823 may be zero, and
824 .B <delayinterval>
825 must be 1 or greater.
826 .TP
827 .B directory <directory>
828 Specify the directory where the LDBM files containing this database and
829 associated indexes live.  A separate directory must be specified for
830 each database.  The default is
831 .BR LOCALSTATEDIR/openldap-ldbm .
832 .TP
833 .B
834 index {<attrlist>|default} [pres,eq,approx,sub,<special>]
835 Specify the indexes to maintain for the given attribute. If only 
836 an <attr> is given, the indices specified for \fBdefault\fR
837 are maintained.  Note that setting a default does not imply that
838 all attributes will be indexed.
839 .LP
840 A number of special index parameters may be
841 specified.
842 The index type
843 .B sub
844 can be decomposed into
845 .BR subinitial ,
846 .BR subany ,\ and
847 .B subfinal
848 indices.
849 The special type
850 .B nolang
851 may be specified to disallow use of this index by language subtypes.
852 The special type
853 .B nosubtypes
854 may be specified to disallow use of this index by named subtypes.
855 The special type
856 .B autosubtypes
857 may be specified to automatically maintain separate indices for each
858 named subtype of the attribute type.  
859 Note: changing index settings requires rebuilding indices, see
860 .BR slapindex (8).
861 .TP
862 .B mode <integer>
863 Specify the file protection mode that newly created database 
864 index files should have.  The default is 0600.
865 .SH SHELL DATABASE-SPECIFIC OPTIONS
866 Options in this category only apply to the SHELL backend database. That is,
867 they must follow a "database shell" line and come before any subsequent
868 "backend" or "database" lines.  The Shell backend executes external programs to
869 implement operations, and is designed to make it easy to tie an existing
870 database to the
871 .B slapd
872 front-end.
873 .TP
874 .B bind <pathname>
875 .TP
876 .B unbind <pathname>
877 .TP
878 .B search <pathname>
879 .TP
880 .B compare <pathname>
881 .TP
882 .B modify <pathname>
883 .TP
884 .B modrdn <pathname>
885 .TP
886 .B add <pathname>
887 .TP
888 .B delete <pathname>
889 .TP
890 .B abandon <pathname>
891 These options specify the pathname of the command to execute in response 
892 to the given LDAP operation.
893 .LP
894 Note that you need only supply configuration lines for those commands you
895 want the backend to handle. Operations for which a command is not
896 supplied will be refused with an "unwilling to perform" error.
897 .SH PASSWORD DATABASE-SPECIFIC OPTIONS
898 Options in this category only apply to the PASSWD backend database.
899 That is, they must follow a "database passwd" line and come before any
900 subsequent "backend" or "database" lines.  The PASSWD database serves up the user
901 account information listed in the system
902 .BR passwd (5)
903 file.
904 .TP
905 .B file <filename>
906 Specifies an alternate passwd file to use.  The default is
907 .B /etc/passwd.
908 .SH EXAMPLE
909 "OpenLDAP Administrator's Guide" contains an annotated
910 example of a configuration file.
911 .SH FILES
912 ETCDIR/slapd.conf
913 .SH SEE ALSO
914 .BR ldap (3),
915 .BR slapd.replog (5),
916 .BR slapd.access (5),
917 .BR locale (5),
918 .BR passwd (5),
919 .BR slapd (8),
920 .BR slapadd (8),
921 .BR slapcat (8),
922 .BR slapindex (8),
923 .BR slappassword (8),
924 .BR slurpd (8),
925 .LP
926 "OpenLDAP Administrator's Guide" (http://www.OpenLDAP.org/doc/admin/)
927 .SH ACKNOWLEDGEMENTS
928 .B      OpenLDAP
929 is developed and maintained by The OpenLDAP Project (http://www.openldap.org/).
930 .B      OpenLDAP
931 is derived from University of Michigan LDAP 3.3 Release.