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