]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapd.conf.5
ITS#5011
[openldap] / doc / man / man5 / slapd.conf.5
1 .TH SLAPD.CONF 5 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" Copyright 1998-2007 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 slapacl (8),
18 .BR slapadd (8),
19 .BR slapauth (8),
20 .BR slapcat (8),
21 .BR slapdn (8),
22 .BR slapindex (8),
23 and
24 .BR slaptest (8).
25 .LP
26 The
27 .B slapd.conf
28 file consists of a series of global configuration options that apply to
29 .B slapd
30 as a whole (including all backends), followed by zero or more database
31 backend definitions that contain information specific to a backend
32 instance.
33 The configuration options are case-insensitive;
34 their value, on a case by case basis, may be case-sensitive.
35 .LP
36 The general format of
37 .B slapd.conf
38 is as follows:
39 .LP
40 .nf
41     # comment - these options apply to every database
42     <global configuration options>
43     # first database definition & configuration options
44     database <backend 1 type>
45     <configuration options specific to backend 1>
46     # subsequent database definitions & configuration options
47     ...
48 .fi
49 .LP
50 As many backend-specific sections as desired may be included.  Global
51 options can be overridden in a backend (for options that appear more
52 than once, the last appearance in the
53 .B slapd.conf
54 file is used).
55 .LP
56 If a line begins with white space, it is considered a continuation
57 of the previous line.  Blank lines and comment lines beginning with
58 a `#' character are ignored.  Note: continuation lines are unwrapped
59 before comment processing is applied.
60 .LP
61 Arguments on configuration lines are separated by white space. If an
62 argument contains white space, the argument should be enclosed in
63 double quotes.  If an argument contains a double quote (`"') or a
64 backslash character (`\\'), the character should be preceded by a
65 backslash character.
66 .LP
67 The specific configuration options available are discussed below in the
68 Global Configuration Options, General Backend Options, and General Database
69 Options.  Backend-specific options are discussed in the
70 .B slapd-<backend>(5)
71 manual pages.  Refer to the "OpenLDAP Administrator's Guide" for more
72 details on the slapd configuration file.
73 .SH GLOBAL CONFIGURATION OPTIONS
74 Options described in this section apply to all backends, unless specifically 
75 overridden in a backend definition. Arguments that should be replaced by 
76 actual text are shown in brackets <>.
77 .TP
78 .B access to <what> "[ by <who> <access> <control> ]+"
79 Grant access (specified by <access>) to a set of entries and/or
80 attributes (specified by <what>) by one or more requestors (specified
81 by <who>).
82 If no access controls are present, the default policy
83 allows anyone and everyone to read anything but restricts
84 updates to rootdn.  (e.g., "access to * by * read").
85 The rootdn can always read and write EVERYTHING!
86 See
87 .BR slapd.access (5)
88 and the "OpenLDAP's Administrator's Guide" for details.
89 .TP
90 .B allow <features>
91 Specify a set of features (separated by white space) to
92 allow (default none).
93 .B bind_v2
94 allows acceptance of LDAPv2 bind requests.  Note that
95 .BR slapd (8)
96 does not truly implement LDAPv2 (RFC 1777), now Historic (RFC 3494).
97 .B bind_anon_cred
98 allows anonymous bind when credentials are not empty (e.g.
99 when DN is empty).
100 .B bind_anon_dn
101 allows unauthenticated (anonymous) bind when DN is not empty.
102 .B update_anon
103 allows unauthenticated (anonymous) update operations to be processed
104 (subject to access controls and other administrative limits).
105 .TP
106 .B argsfile <filename>
107 The ( absolute ) name of a file that will hold the 
108 .B slapd
109 server's command line options
110 if started without the debugging command line option.
111 .TP
112 .B attributeoptions [option-name]...
113 Define tagging attribute options or option tag/range prefixes.
114 Options must not end with `-', prefixes must end with `-'.
115 The `lang-' prefix is predefined.
116 If you use the
117 .B attributeoptions
118 directive, `lang-' will no longer be defined and you must specify it
119 explicitly if you want it defined.
120
121 An attribute description with a tagging option is a subtype of that
122 attribute description without the option.
123 Except for that, options defined this way have no special semantics.
124 Prefixes defined this way work like the `lang-' options:
125 They define a prefix for tagging options starting with the prefix.
126 That is, if you define the prefix `x-foo-', you can use the option
127 `x-foo-bar'.
128 Furthermore, in a search or compare, a prefix or range name (with
129 a trailing `-') matches all options starting with that name, as well
130 as the option with the range name sans the trailing `-'.
131 That is, `x-foo-bar-' matches `x-foo-bar' and `x-foo-bar-baz'.
132
133 RFC 4520 reserves options beginning with `x-' for private experiments.
134 Other options should be registered with IANA, see RFC 4520 section 3.5.
135 OpenLDAP also has the `binary' option built in, but this is a transfer
136 option, not a tagging option.
137 .HP
138 .hy 0
139 .B attributetype "(\ <oid>\
140  [NAME\ <name>]\
141  [DESC\ <description>]\
142  [OBSOLETE]\
143  [SUP\ <oid>]\
144  [EQUALITY\ <oid>]\
145  [ORDERING\ <oid>]\
146  [SUBSTR\ <oid>]\
147  [SYNTAX\ <oidlen>]\
148  [SINGLE\-VALUE]\
149  [COLLECTIVE]\
150  [NO\-USER\-MODIFICATION]\
151  [USAGE\ <attributeUsage>]\ )"
152 .RS
153 Specify an attribute type using the LDAPv3 syntax defined in RFC 4512.
154 The slapd parser extends the RFC 4512 definition by allowing string
155 forms as well as numeric OIDs to be used for the attribute OID and
156 attribute syntax OID.
157 (See the
158 .B objectidentifier
159 description.) 
160 .RE
161 .TP
162 .B authz-policy <policy>
163 Used to specify which rules to use for Proxy Authorization.  Proxy
164 authorization allows a client to authenticate to the server using one
165 user's credentials, but specify a different identity to use for authorization
166 and access control purposes. It essentially allows user A to login as user
167 B, using user A's password.
168 The
169 .B none
170 flag disables proxy authorization. This is the default setting.
171 The
172 .B from
173 flag will use rules in the
174 .I authzFrom
175 attribute of the authorization DN.
176 The
177 .B to
178 flag will use rules in the
179 .I authzTo
180 attribute of the authentication DN.
181 The
182 .B any
183 flag, an alias for the deprecated value of
184 .BR both ,
185 will allow any of the above, whatever succeeds first (checked in
186 .BR to ,
187 .B from
188 sequence.
189 The
190 .B all
191 flag requires both authorizations to succeed.
192 .LP
193 .RS
194 The rules are mechanisms to specify which identities are allowed 
195 to perform proxy authorization.
196 The
197 .I authzFrom
198 attribute in an entry specifies which other users
199 are allowed to proxy login to this entry. The
200 .I authzTo
201 attribute in
202 an entry specifies which other users this user can authorize as.  Use of
203 .I authzTo
204 rules can be easily
205 abused if users are allowed to write arbitrary values to this attribute.
206 In general the
207 .I authzTo
208 attribute must be protected with ACLs such that
209 only privileged users can modify it.
210 The value of
211 .I authzFrom
212 and
213 .I authzTo
214 describes an 
215 .B identity 
216 or a set of identities; it can take five forms:
217 .RS
218 .TP
219 .B ldap:///<base>??[<scope>]?<filter>
220 .RE
221 .RS
222 .B dn[.<dnstyle>]:<pattern>
223 .RE
224 .RS
225 .B u[<mech>[<realm>]]:<pattern>
226 .RE
227 .RS
228 .B group[/objectClass[/attributeType]]:<pattern>
229 .RE
230 .RS
231 .B <pattern>
232 .RE
233 .RS
234
235 .B <dnstyle>:={exact|onelevel|children|subtree|regex}
236
237 .RE
238 The first form is a valid LDAP
239 .B URI
240 where the 
241 .IR <host>:<port> ,
242 the
243 .I <attrs>
244 and the
245 .I <extensions>
246 portions must be absent, so that the search occurs locally on either
247 .I authzFrom
248 or 
249 .IR authzTo .
250 The second form is a 
251 .BR DN ,
252 with the optional style modifiers
253 .IR exact ,
254 .IR onelevel ,
255 .IR children ,
256 and
257 .I subtree
258 for exact, onelevel, children and subtree matches, which cause 
259 .I <pattern>
260 to be normalized according to the DN normalization rules, or the special
261 .I regex
262 style, which causes the
263 .I <pattern>
264 to be treated as a POSIX (''extended'') regular expression, as
265 discussed in
266 .BR regex (7)
267 and/or
268 .BR re_format (7).
269 A pattern of
270 .I *
271 means any non-anonymous DN.
272 The third form is a SASL
273 .BR id ,
274 with the optional fields
275 .I <mech>
276 and
277 .I <realm>
278 that allow to specify a SASL
279 .BR mechanism ,
280 and eventually a SASL
281 .BR realm ,
282 for those mechanisms that support one.
283 The need to allow the specification of a mechanism is still debated, 
284 and users are strongly discouraged to rely on this possibility.
285 The fourth form is a group specification, consisting of the keyword
286 .BR group ,
287 optionally followed by the specification of the group
288 .B objectClass
289 and member
290 .BR attributeType .
291 The group with DN
292 .B <pattern>
293 is searched with base scope, and in case of match, the values of the
294 member
295 .B attributeType
296 are searched for the asserted DN.
297 For backwards compatibility, if no identity type is provided, i.e. only
298 .B <pattern>
299 is present, an
300 .I exact DN
301 is assumed; as a consequence, 
302 .B <pattern>
303 is subjected to DN normalization.
304 Since the interpretation of
305 .I authzFrom
306 and
307 .I authzTo
308 can impact security, users are strongly encouraged 
309 to explicitly set the type of identity specification that is being used.
310 A subset of these rules can be used as third arg in the 
311 .B authz-regexp
312 statement (see below); significantly, the 
313 .I URI
314 and the
315 .I dn.exact:<dn> 
316 forms.
317 .RE
318 .TP
319 .B authz-regexp <match> <replace>
320 Used by the authentication framework to convert simple user names,
321 such as provided by SASL subsystem, to an LDAP DN used for
322 authorization purposes.  Note that the resultant DN need not refer
323 to an existing entry to be considered valid.  When an authorization
324 request is received from the SASL subsystem, the SASL 
325 .BR USERNAME ,
326 .BR REALM , 
327 and
328 .B MECHANISM
329 are taken, when available, and combined into a name of the form
330 .RS
331 .RS
332 .TP
333 .B UID=<username>[[,CN=<realm>],CN=<mechanism>],CN=auth
334
335 .RE
336 This name is then compared against the
337 .B match
338 POSIX (''extended'') regular expression, and if the match is successful,
339 the name is replaced with the
340 .B replace
341 string.  If there are wildcard strings in the 
342 .B match
343 regular expression that are enclosed in parenthesis, e.g. 
344 .RS
345 .TP
346 .B UID=([^,]*),CN=.*
347
348 .RE
349 then the portion of the name that matched the wildcard will be stored
350 in the numbered placeholder variable $1. If there are other wildcard strings
351 in parenthesis, the matching strings will be in $2, $3, etc. up to $9. The 
352 placeholders can then be used in the 
353 .B replace
354 string, e.g. 
355 .RS
356 .TP
357 .B UID=$1,OU=Accounts,DC=example,DC=com 
358
359 .RE
360 The replaced name can be either a DN, i.e. a string prefixed by "dn:",
361 or an LDAP URI.
362 If the latter, the server will use the URI to search its own database(s)
363 and, if the search returns exactly one entry, the name is
364 replaced by the DN of that entry.   The LDAP URI must have no
365 hostport, attrs, or extensions components, but the filter is mandatory,
366 e.g.
367 .RS
368 .TP
369 .B ldap:///OU=Accounts,DC=example,DC=com??one?(UID=$1)
370
371 .RE
372 The protocol portion of the URI must be strictly
373 .BR ldap .
374 Note that this search is subject to access controls.  Specifically,
375 the authentication identity must have "auth" access in the subject.
376
377 Multiple 
378 .B authz-regexp 
379 options can be given in the configuration file to allow for multiple matching 
380 and replacement patterns. The matching patterns are checked in the order they 
381 appear in the file, stopping at the first successful match.
382
383 .\".B Caution:
384 .\"Because the plus sign + is a character recognized by the regular expression engine,
385 .\"and it will appear in names that include a REALM, be careful to escape the
386 .\"plus sign with a backslash \\+ to remove the character's special meaning.
387 .RE
388 .TP
389 .B concurrency <integer>
390 Specify a desired level of concurrency.  Provided to the underlying
391 thread system as a hint.  The default is not to provide any hint.
392 .TP
393 .B conn_max_pending <integer>
394 Specify the maximum number of pending requests for an anonymous session.
395 If requests are submitted faster than the server can process them, they
396 will be queued up to this limit. If the limit is exceeded, the session
397 is closed. The default is 100.
398 .TP
399 .B conn_max_pending_auth <integer>
400 Specify the maximum number of pending requests for an authenticated session.
401 The default is 1000.
402 .TP
403 .B defaultsearchbase <dn>
404 Specify a default search base to use when client submits a
405 non-base search request with an empty base DN.
406 Base scoped search requests with an empty base DN are not affected.
407 .TP
408 .B disallow <features>
409 Specify a set of features (separated by white space) to
410 disallow (default none).
411 .B bind_anon
412 disables acceptance of anonymous bind requests.  Note that this setting
413 does not prohibit anonymous directory access (See "require authc").
414 .B bind_simple
415 disables simple (bind) authentication.
416 .B tls_2_anon
417 disables forcing session to anonymous status (see also
418 .BR tls_authc ) upon StartTLS operation receipt.
419 .B tls_authc
420 dissallow the StartTLS operation if authenticated (see also
421 .BR tls_2_anon ).
422 .HP
423 .hy 0
424 .B ditcontentrule "(\ <oid>\
425  [NAME\ <name>]\
426  [DESC\ <description>]\
427  [OBSOLETE]\
428  [AUX\ <oids>]\
429  [MUST\ <oids>]\
430  [MAY\ <oids>]\
431  [NOT\ <oids>]\ )"
432 .RS
433 Specify an DIT Content Rule using the LDAPv3 syntax defined in RFC 4512.
434 The slapd parser extends the RFC 4512 definition by allowing string
435 forms as well as numeric OIDs to be used for the attribute OID and
436 attribute syntax OID.
437 (See the
438 .B objectidentifier
439 description.) 
440 .RE
441 .TP
442 .B gentlehup { on | off }
443 A SIGHUP signal will only cause a 'gentle' shutdown-attempt:
444 .B Slapd
445 will stop listening for new connections, but will not close the
446 connections to the current clients.  Future write operations return
447 unwilling-to-perform, though.  Slapd terminates when all clients
448 have closed their connections (if they ever do), or \- as before \-
449 if it receives a SIGTERM signal.  This can be useful if you wish to
450 terminate the server and start a new
451 .B slapd
452 server
453 .B with another database,
454 without disrupting the currently active clients.
455 The default is off.  You may wish to use
456 .B idletimeout
457 along with this option.
458 .TP
459 .B idletimeout <integer>
460 Specify the number of seconds to wait before forcibly closing
461 an idle client connection.  A idletimeout of 0 disables this
462 feature.  The default is 0.
463 .TP
464 .B include <filename>
465 Read additional configuration information from the given file before
466 continuing with the next line of the current file.
467 .TP
468 .B index_substr_if_minlen <integer>
469 Specify the minimum length for subinitial and subfinal indices. An
470 attribute value must have at least this many characters in order to be
471 processed by the indexing functions. The default is 2.
472 .TP
473 .B index_substr_if_maxlen <integer>
474 Specify the maximum length for subinitial and subfinal indices. Only
475 this many characters of an attribute value will be processed by the
476 indexing functions; any excess characters are ignored. The default is 4.
477 .TP
478 .B index_substr_any_len <integer>
479 Specify the length used for subany indices. An attribute value must have
480 at least this many characters in order to be processed. Attribute values
481 longer than this length will be processed in segments of this length. The
482 default is 4. The subany index will also be used in subinitial and
483 subfinal index lookups when the filter string is longer than the
484 .I index_substr_if_maxlen
485 value.
486 .TP
487 .B index_substr_any_step <integer>
488 Specify the steps used in subany index lookups. This value sets the offset
489 for the segments of a filter string that are processed for a subany index
490 lookup. The default is 2. For example, with the default values, a search
491 using this filter "cn=*abcdefgh*" would generate index lookups for
492 "abcd", "cdef", and "efgh".
493
494 .\"-- NEW_LOGGING option --
495 .\".TP
496 .\".B logfile <filename>
497 .\"Specify a file for recording debug log messages. By default these messages
498 .\"only go to stderr and are not recorded anywhere else. Specifying a logfile
499 .\"copies messages to both stderr and the logfile.
500 .TP
501 .B localSSF <SSF>
502 Specifies the Security Strength Factor (SSF) to be given local LDAP sessions,
503 such as those to the ldapi:// listener.  For a description of SSF values,
504 see 
505 .BR sasl-secprops 's
506 .B minssf
507 option description.  The default is 71.
508 .TP
509 .B loglevel <integer> [...]
510 Specify the level at which debugging statements and operation 
511 statistics should be syslogged (currently logged to the
512 .BR syslogd (8) 
513 LOG_LOCAL4 facility).
514 They must be considered subsystems rather than increasingly verbose 
515 log levels.
516 Some messages with higher priority are logged regardless 
517 of the configured loglevel as soon as some logging is configured,
518 otherwise anything is logged at all.
519 Log levels are additive, and available levels are:
520 .RS
521 .RS
522 .PD 0
523 .TP
524 .B 1
525 .B (0x1 trace)
526 trace function calls
527 .TP
528 .B 2
529 .B (0x2 packets)
530 debug packet handling
531 .TP
532 .B 4
533 .B (0x4 args)
534 heavy trace debugging (function args)
535 .TP
536 .B 8
537 .B (0x8 conns)
538 connection management
539 .TP
540 .B 16
541 .B (0x10 BER)
542 print out packets sent and received
543 .TP
544 .B 32
545 .B (0x20 filter)
546 search filter processing
547 .TP
548 .B 64
549 .B (0x40 config)
550 configuration file processing
551 .TP
552 .B 128
553 .B (0x80 ACL)
554 access control list processing
555 .TP
556 .B 256
557 .B (0x100 stats)
558 stats log connections/operations/results
559 .TP
560 .B 512
561 .B (0x200 stats2)
562 stats log entries sent
563 .TP
564 .B 1024
565 .B (0x400 shell)
566 print communication with shell backends
567 .TP
568 .B 2048
569 .B (0x800 parse)
570 entry parsing
571 .TP
572 .B 4096
573 .B (0x1000 cache)
574 caching (unused)
575 .TP
576 .B 8192
577 .B (0x2000 index)
578 data indexing (unused)
579 .TP
580 .B 16384
581 .B (0x4000 sync)
582 LDAPSync replication
583 .TP
584 .B 32768
585 .B (0x8000 none)
586 only messages that get logged whatever log level is set
587 .PD
588 .RE
589 The desired log level can be input as a single integer that combines 
590 the (ORed) desired levels, both in decimal or in hexadecimal notation,
591 as a list of integers (that are ORed internally),
592 or as a list of the names that are shown between brackets, such that
593 .LP
594 .nf
595     loglevel 129
596     loglevel 0x81
597     loglevel 128 1
598     loglevel 0x80 0x1
599     loglevel acl trace
600 .fi
601 .LP
602 are equivalent.
603 The keyword 
604 .B any
605 can be used as a shortcut to enable logging at all levels (equivalent to -1).
606 The keyword
607 .BR none ,
608 or the equivalent integer representation, causes those messages
609 that are logged regardless of the configured loglevel to be logged.
610 In fact, if no loglevel (or a 0 level) is defined, no logging occurs, 
611 so at least the 
612 .B none
613 level is required to have high priority messages logged.
614 .RE
615 .TP
616 .B moduleload <filename>
617 Specify the name of a dynamically loadable module to load. The filename
618 may be an absolute path name or a simple filename. Non-absolute names
619 are searched for in the directories specified by the
620 .B modulepath
621 option. This option and the
622 .B modulepath
623 option are only usable if slapd was compiled with --enable-modules.
624 .TP
625 .B modulepath <pathspec>
626 Specify a list of directories to search for loadable modules. Typically
627 the path is colon-separated but this depends on the operating system.
628 .HP
629 .hy 0
630 .B objectclass "(\ <oid>\
631  [NAME\ <name>]\
632  [DESC\ <description>]\
633  [OBSOLETE]\
634  [SUP\ <oids>]\
635  [{ ABSTRACT | STRUCTURAL | AUXILIARY }]\
636  [MUST\ <oids>] [MAY\ <oids>] )"
637 .RS
638 Specify an objectclass using the LDAPv3 syntax defined in RFC 4512.
639 The slapd parser extends the RFC 4512 definition by allowing string
640 forms as well as numeric OIDs to be used for the object class OID.
641 (See the
642 .B
643 objectidentifier
644 description.)  Object classes are "STRUCTURAL" by default.
645 .RE
646 .TP
647 .B objectidentifier <name> "{ <oid> | <name>[:<suffix>] }"
648 Define a string name that equates to the given OID. The string can be used
649 in place of the numeric OID in objectclass and attribute definitions. The
650 name can also be used with a suffix of the form ":xx" in which case the
651 value "oid.xx" will be used.
652 .TP
653 .B password-hash <hash> [<hash>...]
654 This option configures one or more hashes to be used in generation of user
655 passwords stored in the userPassword attribute during processing of
656 LDAP Password Modify Extended Operations (RFC 3062).
657 The <hash> must be one of
658 .BR {SSHA} ,
659 .BR {SHA} ,
660 .BR {SMD5} ,
661 .BR {MD5} ,
662 .BR {CRYPT} ,
663 and
664 .BR {CLEARTEXT} .
665 The default is
666 .BR {SSHA} .
667
668 .B {SHA}
669 and
670 .B {SSHA}
671 use the SHA-1 algorithm (FIPS 160-1), the latter with a seed.
672
673 .B {MD5}
674 and
675 .B {SMD5}
676 use the MD5 algorithm (RFC 1321), the latter with a seed.
677
678 .B {CRYPT}
679 uses the
680 .BR crypt (3).
681
682 .B {CLEARTEXT}
683 indicates that the new password should be
684 added to userPassword as clear text.
685
686 Note that this option does not alter the normal user applications
687 handling of userPassword during LDAP Add, Modify, or other LDAP operations.
688 .TP
689 .B password\-crypt\-salt\-format <format>
690 Specify the format of the salt passed to
691 .BR crypt (3)
692 when generating {CRYPT} passwords (see
693 .BR password\-hash )
694 during processing of LDAP Password Modify Extended Operations (RFC 3062).
695
696 This string needs to be in
697 .BR sprintf (3)
698 format and may include one (and only one) %s conversion.
699 This conversion will be substituted with a string of random
700 characters from [A\-Za\-z0\-9./].  For example, "%.2s"
701 provides a two character salt and "$1$%.8s" tells some
702 versions of crypt(3) to use an MD5 algorithm and provides
703 8 random characters of salt.  The default is "%s", which
704 provides 31 characters of salt.
705 .TP
706 .B pidfile <filename>
707 The ( absolute ) name of a file that will hold the 
708 .B slapd
709 server's process ID ( see
710 .BR getpid (2)
711 ) if started without the debugging command line option.
712 .TP
713 .B referral <url>
714 Specify the referral to pass back when
715 .BR slapd (8)
716 cannot find a local database to handle a request.
717 If specified multiple times, each url is provided.
718 .TP
719 .B replica-argsfile
720 The ( absolute ) name of a file that will hold the 
721 .B slurpd
722 server's command line options
723 if started without the debugging command line option.
724 .TP
725 .B replica-pidfile
726 The ( absolute ) name of a file that will hold the 
727 .B slurpd
728 server's process ID ( see
729 .BR getpid (2)
730 ) if started without the debugging command line option.
731 .TP
732 .B replicationinterval
733 The number of seconds 
734 .B slurpd 
735 waits before checking the replogfile for changes.
736 .TP
737 .B require <conditions>
738 Specify a set of conditions (separated by white space) to
739 require (default none).
740 The directive may be specified globally and/or per-database;
741 databases inherit global conditions, so per-database specifications
742 are additive.
743 .B bind
744 requires bind operation prior to directory operations.
745 .B LDAPv3
746 requires session to be using LDAP version 3.
747 .B authc
748 requires authentication prior to directory operations.
749 .B SASL
750 requires SASL authentication prior to directory operations.
751 .B strong
752 requires strong authentication prior to directory operations.
753 The strong keyword allows protected "simple" authentication
754 as well as SASL authentication.
755 .B none
756 may be used to require no conditions (useful to clear out globally
757 set conditions within a particular database); it must occur first
758 in the list of conditions.
759 .TP
760 .B reverse-lookup on | off
761 Enable/disable client name unverified reverse lookup (default is 
762 .BR off 
763 if compiled with --enable-rlookups).
764 .TP
765 .B rootDSE <file>
766 Specify the name of an LDIF(5) file containing user defined attributes
767 for the root DSE.  These attributes are returned in addition to the
768 attributes normally produced by slapd.
769 .TP
770 .B sasl-host <fqdn>
771 Used to specify the fully qualified domain name used for SASL processing.
772 .TP
773 .B sasl-realm <realm>
774 Specify SASL realm.  Default is empty.
775 .TP
776 .B sasl-secprops <properties>
777 Used to specify Cyrus SASL security properties.
778 The
779 .B none
780 flag (without any other properties) causes the flag properties
781 default, "noanonymous,noplain", to be cleared.
782 The
783 .B noplain
784 flag disables mechanisms susceptible to simple passive attacks.
785 The
786 .B noactive
787 flag disables mechanisms susceptible to active attacks.
788 The
789 .B nodict
790 flag disables mechanisms susceptible to passive dictionary attacks.
791 The
792 .B noanonymous
793 flag disables mechanisms which support anonymous login.
794 The
795 .B forwardsec
796 flag require forward secrecy between sessions.
797 The
798 .B passcred
799 require mechanisms which pass client credentials (and allow
800 mechanisms which can pass credentials to do so).
801 The
802 .B minssf=<factor> 
803 property specifies the minimum acceptable
804 .I security strength factor
805 as an integer approximate to effective key length used for
806 encryption.  0 (zero) implies no protection, 1 implies integrity
807 protection only, 56 allows DES or other weak ciphers, 112
808 allows triple DES and other strong ciphers, 128 allows RC4,
809 Blowfish and other modern strong ciphers.  The default is 0.
810 The
811 .B maxssf=<factor> 
812 property specifies the maximum acceptable
813 .I security strength factor
814 as an integer (see minssf description).  The default is INT_MAX.
815 The
816 .B maxbufsize=<size> 
817 property specifies the maximum security layer receive buffer
818 size allowed.  0 disables security layers.  The default is 65536.
819 .TP
820 .B schemadn <dn>
821 Specify the distinguished name for the subschema subentry that
822 controls the entries on this server.  The default is "cn=Subschema".
823 .TP
824 .B security <factors>
825 Specify a set of security strength factors (separated by white space)
826 to require (see
827 .BR sasl-secprops 's
828 .B minssf
829 option for a description of security strength factors).
830 The directive may be specified globally and/or per-database.
831 .B ssf=<n>
832 specifies the overall security strength factor.
833 .B transport=<n>
834 specifies the transport security strength factor.
835 .B tls=<n>
836 specifies the TLS security strength factor.
837 .B sasl=<n>
838 specifies the SASL security strength factor.
839 .B update_ssf=<n>
840 specifies the overall security strength factor to require for
841 directory updates.
842 .B update_transport=<n>
843 specifies the transport security strength factor to require for
844 directory updates.
845 .B update_tls=<n>
846 specifies the TLS security strength factor to require for
847 directory updates.
848 .B update_sasl=<n>
849 specifies the SASL security strength factor to require for
850 directory updates.
851 .B simple_bind=<n>
852 specifies the security strength factor required for
853 .I simple
854 username/password authentication.
855 Note that the
856 .B transport
857 factor is measure of security provided by the underlying transport,
858 e.g. ldapi:// (and eventually IPSEC).  It is not normally used.
859 .TP
860 .B sizelimit {<integer>|unlimited}
861 .TP
862 .B sizelimit size[.{soft|hard|unchecked}]=<integer> [...]
863 Specify the maximum number of entries to return from a search operation.
864 The default size limit is 500.
865 Use
866 .B unlimited
867 to specify no limits.
868 The second format allows a fine grain setting of the size limits.
869 Extra args can be added on the same line.
870 See
871 .BR limits
872 for an explanation of the different flags.
873 .TP
874 .B sockbuf_max_incoming <integer>
875 Specify the maximum incoming LDAP PDU size for anonymous sessions.
876 The default is 262143.
877 .TP
878 .B sockbuf_max_incoming_auth <integer>
879 Specify the maximum incoming LDAP PDU size for authenticated sessions.
880 The default is 4194303.
881 .TP
882 .B threads <integer>
883 Specify the maximum size of the primary thread pool.
884 The default is 16; the minimum value is 2.
885 .TP
886 .B timelimit {<integer>|unlimited}
887 .TP
888 .B timelimit time[.{soft|hard}]=<integer> [...]
889 Specify the maximum number of seconds (in real time)
890 .B slapd
891 will spend answering a search request.  The default time limit is 3600.
892 Use
893 .B unlimited
894 to specify no limits.
895 The second format allows a fine grain setting of the time limits.
896 Extra args can be added on the same line.
897 See
898 .BR limits
899 for an explanation of the different flags.
900 .TP
901 .B tool-threads <integer>
902 Specify the maximum number of threads to use in tool mode.
903 This should not be greater than the number of CPUs in the system.
904 The default is 1.
905 .\"ucdata-path is obsolete / ignored...
906 .\".TP
907 .\".B ucdata-path <path>
908 .\"Specify the path to the directory containing the Unicode character
909 .\"tables. The default path is DATADIR/ucdata.
910 .SH TLS OPTIONS
911 If
912 .B slapd
913 is built with support for Transport Layer Security, there are more options
914 you can specify.
915 .TP
916 .B TLSCipherSuite <cipher-suite-spec>
917 Permits configuring what ciphers will be accepted and the preference order.
918 <cipher-suite-spec> should be a cipher specification for OpenSSL.  Example:
919
920 TLSCipherSuite HIGH:MEDIUM:+SSLv2
921
922 To check what ciphers a given spec selects, use:
923
924 openssl ciphers -v <cipher-suite-spec>
925 .TP
926 .B TLSCACertificateFile <filename>
927 Specifies the file that contains certificates for all of the Certificate
928 Authorities that
929 .B slapd
930 will recognize.
931 .TP
932 .B TLSCACertificatePath <path>
933 Specifies the path of a directory that contains Certificate Authority
934 certificates in separate individual files. Usually only one of this
935 or the TLSCACertificateFile is used.
936 .TP
937 .B TLSCertificateFile <filename>
938 Specifies the file that contains the
939 .B slapd
940 server certificate.
941 .TP
942 .B TLSCertificateKeyFile <filename>
943 Specifies the file that contains the
944 .B slapd
945 server private key that matches the certificate stored in the
946 .B TLSCertificateFile
947 file.  Currently, the private key must not be protected with a password, so
948 it is of critical importance that it is protected carefully. 
949 .TP
950 .B TLSDHParamFile <filename>
951 This directive specifies the file that contains parameters for Diffie-Hellman
952 ephemeral key exchange.  This is required in order to use a DSA certificate on
953 the server. If multiple sets of parameters are present in the file, all of
954 them will be processed.  Note that setting this option may also enable
955 Anonymous Diffie-Hellman key exchanges in certain non-default cipher suites.
956 You should append "!ADH" to your cipher suites if you have changed them
957 from the default, otherwise no certificate exchanges or verification will
958 be done.
959 .TP
960 .B TLSRandFile <filename>
961 Specifies the file to obtain random bits from when /dev/[u]random
962 is not available.  Generally set to the name of the EGD/PRNGD socket.
963 The environment variable RANDFILE can also be used to specify the filename.
964 .TP
965 .B TLSVerifyClient <level>
966 Specifies what checks to perform on client certificates in an
967 incoming TLS session, if any.
968 The
969 .B <level>
970 can be specified as one of the following keywords:
971 .RS
972 .TP
973 .B never
974 This is the default.
975 .B slapd
976 will not ask the client for a certificate.
977 .TP
978 .B allow
979 The client certificate is requested.  If no certificate is provided,
980 the session proceeds normally.  If a bad certificate is provided,
981 it will be ignored and the session proceeds normally.
982 .TP
983 .B try
984 The client certificate is requested.  If no certificate is provided,
985 the session proceeds normally.  If a bad certificate is provided,
986 the session is immediately terminated.
987 .TP
988 .B demand | hard | true
989 These keywords are all equivalent, for compatibility reasons.
990 The client certificate is requested.  If no certificate is provided,
991 or a bad certificate is provided, the session is immediately terminated.
992
993 Note that a valid client certificate is required in order to use the
994 SASL EXTERNAL authentication mechanism with a TLS session.  As such,
995 a non-default
996 .B TLSVerifyClient
997 setting must be chosen to enable SASL EXTERNAL authentication.
998 .RE
999 .TP
1000 .B TLSCRLCheck <level>
1001 Specifies if the Certificate Revocation List (CRL) of the CA should be 
1002 used to verify if the client certificates have not been revoked. This
1003 requires
1004 .B TLSCACertificatePath
1005 parameter to be set.
1006 .B <level>
1007 can be specified as one of the following keywords:
1008 .RS
1009 .TP
1010 .B none
1011 No CRL checks are performed
1012 .TP
1013 .B peer
1014 Check the CRL of the peer certificate
1015 .TP
1016 .B all
1017 Check the CRL for a whole certificate chain
1018 .RE
1019 .SH GENERAL BACKEND OPTIONS
1020 Options in this section only apply to the configuration file section
1021 for the specified backend.  They are supported by every
1022 type of backend.
1023 .TP
1024 .B backend <databasetype>
1025 Mark the beginning of a backend definition. <databasetype>
1026 should be one of
1027 .BR bdb ,
1028 .BR config ,
1029 .BR dnssrv ,
1030 .BR hdb ,
1031 .BR ldap ,
1032 .BR ldbm ,
1033 .BR ldif ,
1034 .BR meta ,
1035 .BR monitor ,
1036 .BR null ,
1037 .BR passwd ,
1038 .BR perl ,
1039 .BR relay ,
1040 .BR shell ,
1041 or
1042 .BR sql ,
1043 depending on which backend will serve the database.
1044
1045 .SH GENERAL DATABASE OPTIONS
1046 Options in this section only apply to the configuration file section
1047 for the database in which they are defined.  They are supported by every
1048 type of backend.  Note that the
1049 .B database
1050 and at least one
1051 .B suffix
1052 option are mandatory for each database.
1053 .TP
1054 .B database <databasetype>
1055 Mark the beginning of a new database instance definition. <databasetype>
1056 should be one of
1057 .BR bdb ,
1058 .BR config ,
1059 .BR dnssrv ,
1060 .BR hdb ,
1061 .BR ldap ,
1062 .BR ldbm ,
1063 .BR ldif ,
1064 .BR meta ,
1065 .BR monitor ,
1066 .BR null ,
1067 .BR passwd ,
1068 .BR perl ,
1069 .BR relay ,
1070 .BR shell ,
1071 or
1072 .BR sql ,
1073 depending on which backend will serve the database.
1074 .TP
1075 .B lastmod on | off
1076 Controls whether
1077 .B slapd
1078 will automatically maintain the 
1079 modifiersName, modifyTimestamp, creatorsName, and 
1080 createTimestamp attributes for entries. It also controls
1081 the entryCSN and entryUUID attributes, which are needed
1082 by the syncrepl provider. By default, lastmod is on.
1083 .TP
1084 .B limits <who> <limit> [<limit> [...]]
1085 Specify time and size limits based on who initiated an operation.
1086 The argument
1087 .B who
1088 can be any of
1089 .RS
1090 .RS
1091 .TP
1092 anonymous | users | [dn[.<style>]=]<pattern> | group[/oc[/at]]=<pattern>
1093
1094 .RE
1095 with
1096 .RS
1097 .TP
1098 <style> ::= exact | base | onelevel | subtree | children | regex | anonymous
1099
1100 .RE
1101 The term
1102 .B anonymous
1103 matches all unauthenticated clients.
1104 The term
1105 .B users
1106 matches all authenticated clients;
1107 otherwise an
1108 .B exact
1109 dn pattern is assumed unless otherwise specified by qualifying 
1110 the (optional) key string
1111 .B dn
1112 with 
1113 .B exact
1114 or
1115 .B base
1116 (which are synonyms), to require an exact match; with
1117 .BR onelevel , 
1118 to require exactly one level of depth match; with
1119 .BR subtree ,
1120 to allow any level of depth match, including the exact match; with
1121 .BR children ,
1122 to allow any level of depth match, not including the exact match;
1123 .BR regex
1124 explicitly requires the (default) match based on POSIX (''extended'')
1125 regular expression pattern.
1126 Finally,
1127 .B anonymous
1128 matches unbound operations; the 
1129 .B pattern
1130 field is ignored.
1131 The same behavior is obtained by using the 
1132 .B anonymous
1133 form of the
1134 .B who
1135 clause.
1136 The term
1137 .BR group ,
1138 with the optional objectClass
1139 .B oc
1140 and attributeType
1141 .B at
1142 fields, followed by
1143 .BR pattern ,
1144 sets the limits for any DN listed in the values of the
1145 .B at
1146 attribute (default
1147 .BR member )
1148 of the 
1149 .B oc
1150 group objectClass (default
1151 .BR groupOfNames )
1152 whose DN exactly matches
1153 .BR pattern .
1154
1155 The currently supported limits are 
1156 .B size
1157 and 
1158 .BR time .
1159
1160 The syntax for time limits is 
1161 .BR time[.{soft|hard}]=<integer> ,
1162 where 
1163 .I integer
1164 is the number of seconds slapd will spend answering a search request.
1165 If no time limit is explicitly requested by the client, the 
1166 .BR soft
1167 limit is used; if the requested time limit exceeds the
1168 .BR hard
1169 .\"limit, an
1170 .\".I "Administrative limit exceeded"
1171 .\"error is returned.
1172 limit, the value of the limit is used instead.
1173 If the
1174 .BR hard
1175 limit is set to the keyword 
1176 .IR soft ,
1177 the soft limit is used in either case; if it is set to the keyword 
1178 .IR unlimited , 
1179 no hard limit is enforced.
1180 Explicit requests for time limits smaller or equal to the
1181 .BR hard 
1182 limit are honored.
1183 If no limit specifier is set, the value is assigned to the 
1184 .BR soft 
1185 limit, and the
1186 .BR hard
1187 limit is set to
1188 .IR soft ,
1189 to preserve the original behavior.
1190
1191 The syntax for size limits is
1192 .BR size[.{soft|hard|unchecked}]=<integer> ,
1193 where
1194 .I integer
1195 is the maximum number of entries slapd will return answering a search 
1196 request.
1197 If no size limit is explicitly requested by the client, the
1198 .BR soft
1199 limit is used; if the requested size limit exceeds the
1200 .BR hard
1201 .\"limit, an 
1202 .\".I "Administrative limit exceeded"
1203 .\"error is returned.
1204 limit, the value of the limit is used instead.
1205 If the 
1206 .BR hard
1207 limit is set to the keyword 
1208 .IR soft , 
1209 the soft limit is used in either case; if it is set to the keyword
1210 .IR unlimited , 
1211 no hard limit is enforced.
1212 Explicit requests for size limits smaller or equal to the
1213 .BR hard
1214 limit are honored.
1215 The
1216 .BR unchecked
1217 specifier sets a limit on the number of candidates a search request is allowed
1218 to examine.
1219 The rationale behind it is that searches for non-properly indexed
1220 attributes may result in large sets of candidates, which must be 
1221 examined by
1222 .BR slapd (8)
1223 to determine whether they match the search filter or not.
1224 The
1225 .B unchecked
1226 limit provides a means to drop such operations before they are even 
1227 started.
1228 If the selected candidates exceed the 
1229 .BR unchecked
1230 limit, the search will abort with 
1231 .IR "Unwilling to perform" .
1232 If it is set to the keyword 
1233 .IR unlimited , 
1234 no limit is applied (the default).
1235 If it is set to
1236 .IR disable ,
1237 the search is not even performed; this can be used to disallow searches
1238 for a specific set of users.
1239 If no limit specifier is set, the value is assigned to the
1240 .BR soft 
1241 limit, and the
1242 .BR hard
1243 limit is set to
1244 .IR soft ,
1245 to preserve the original behavior.
1246
1247 In case of no match, the global limits are used.
1248 The default values are the same of
1249 .B sizelimit
1250 and
1251 .BR timelimit ;
1252 no limit is set on 
1253 .BR unchecked .
1254
1255 If 
1256 .B pagedResults
1257 control is requested, the 
1258 .B hard
1259 size limit is used by default, because the request of a specific page size
1260 is considered an explicit request for a limitation on the number
1261 of entries to be returned.
1262 However, the size limit applies to the total count of entries returned within
1263 the search, and not to a single page.
1264 Additional size limits may be enforced; the syntax is
1265 .BR size.pr={<integer>|noEstimate|unlimited} ,
1266 where
1267 .I integer
1268 is the max page size if no explicit limit is set; the keyword
1269 .I noEstimate
1270 inhibits the server from returning an estimate of the total number
1271 of entries that might be returned
1272 (note: the current implementation does not return any estimate).
1273 The keyword
1274 .I unlimited
1275 indicates that no limit is applied to the pagedResults control page size.
1276 The syntax
1277 .B size.prtotal={<integer>|unlimited|disabled}
1278 allows to set a limit on the total number of entries that a pagedResults
1279 control allows to return.
1280 By default it is set to the 
1281 .B hard
1282 limit.
1283 When set, 
1284 .I integer
1285 is the max number of entries that the whole search with pagedResults control
1286 can return.
1287 Use 
1288 .I unlimited
1289 to allow unlimited number of entries to be returned, e.g. to allow
1290 the use of the pagedResults control as a means to circumvent size 
1291 limitations on regular searches; the keyword
1292 .I disabled
1293 disables the control, i.e. no paged results can be returned.
1294 Note that the total number of entries returned when the pagedResults control 
1295 is requested cannot exceed the 
1296 .B hard 
1297 size limit of regular searches unless extended by the
1298 .B prtotal
1299 switch.
1300 .RE
1301 .TP
1302 .B maxderefdepth <depth>
1303 Specifies the maximum number of aliases to dereference when trying to
1304 resolve an entry, used to avoid infinite alias loops. The default is 1.
1305 .TP
1306 .B overlay <overlay-name>
1307 Add the specified overlay to this database. An overlay is a piece of
1308 code that intercepts database operations in order to extend or change
1309 them. Overlays are pushed onto
1310 a stack over the database, and so they will execute in the reverse
1311 of the order in which they were configured and the database itself
1312 will receive control last of all. Note that all of the database's
1313 regular settings should be configured before any overlay settings.
1314 .TP
1315 .B readonly on | off
1316 This option puts the database into "read-only" mode.  Any attempts to 
1317 modify the database will return an "unwilling to perform" error.  By
1318 default, readonly is off.
1319 .HP
1320 .hy 0
1321 .B replica uri=ldap[s]://<hostname>[:port]|host=<hostname>[:port] 
1322 .B [starttls=yes|critical]
1323 .B [suffix=<suffix> [...]]
1324 .B bindmethod=simple|sasl [binddn=<simple DN>] [credentials=<simple password>]
1325 .B [saslmech=<SASL mech>] [secprops=<properties>] [realm=<realm>]
1326 .B [authcId=<authentication ID>] [authzId=<authorization ID>]
1327 .B [attr[!]=<attr list>]
1328 .RS
1329 Specify a replication site for this database.  Refer to the "OpenLDAP 
1330 Administrator's Guide" for detailed information on setting up a replicated
1331 .B slapd
1332 directory service. Zero or more
1333 .B suffix
1334 instances can be used to select the subtrees that will be replicated
1335 (defaults to all the database). 
1336 .B host
1337 is deprecated in favor of the
1338 .B uri
1339 option.
1340 .B uri
1341 allows the replica LDAP server to be specified as an LDAP URI. 
1342 A
1343 .B bindmethod
1344 of
1345 .B simple
1346 requires the options
1347 .B binddn 
1348 and
1349 .B credentials  
1350 and should only be used when adequate security services 
1351 (e.g TLS or IPSEC) are in place. A
1352 .B bindmethod 
1353 of
1354 .B sasl 
1355 requires the option
1356 .B saslmech. 
1357 Specific security properties (as with the
1358 .B sasl-secprops
1359 keyword above) for a SASL bind can be set with the
1360 .B secprops
1361 option. A non-default SASL realm can be set with the
1362 .B realm
1363 option.
1364 If the 
1365 .B mechanism
1366 will use Kerberos, a kerberos instance should be given in 
1367 .B authcId.
1368 An
1369 .B attr list
1370 can be given after the 
1371 .B attr
1372 keyword to allow the selective replication of the listed attributes only;
1373 if the optional 
1374 .B !
1375 mark is used, the list is considered exclusive, i.e. the listed attributes
1376 are not replicated.
1377 If an objectClass is listed, all the related attributes
1378 are (are not) replicated.
1379 .RE
1380 .TP
1381 .B replogfile <filename>
1382 Specify the name of the replication log file to log changes to.  
1383 The replication log is typically written by
1384 .BR slapd (8)
1385 and read by
1386 .BR slurpd (8).
1387 See
1388 .BR slapd.replog (5)
1389 for more information.  The specified file should be located
1390 in a directory with limited read/write/execute access as the replication
1391 logs may contain sensitive information.
1392 .TP
1393 .B restrict <oplist>
1394 Specify a whitespace separated list of operations that are restricted.
1395 If defined inside a database specification, restrictions apply only
1396 to that database, otherwise they are global.
1397 Operations can be any of 
1398 .BR add ,
1399 .BR bind ,
1400 .BR compare ,
1401 .BR delete ,
1402 .BR extended[=<OID>] ,
1403 .BR modify ,
1404 .BR rename ,
1405 .BR search ,
1406 or the special pseudo-operations
1407 .B read
1408 and
1409 .BR write ,
1410 which respectively summarize read and write operations.
1411 The use of 
1412 .I restrict write
1413 is equivalent to 
1414 .I readonly on
1415 (see above).
1416 The 
1417 .B extended
1418 keyword allows to indicate the OID of the specific operation
1419 to be restricted.
1420 .TP
1421 .B rootdn <dn>
1422 Specify the distinguished name that is not subject to access control 
1423 or administrative limit restrictions for operations on this database.
1424 This DN may or may not be associated with an entry.  An empty root
1425 DN (the default) specifies no root access is to be granted.  It is
1426 recommended that the rootdn only be specified when needed (such as
1427 when initially populating a database).  If the rootdn is within
1428 a namingContext (suffix) of the database, a simple bind password
1429 may also be provided using the
1430 .B rootpw
1431 directive. Note that the rootdn is always needed when using syncrepl.
1432 .TP
1433 .B rootpw <password>
1434 Specify a password (or hash of the password) for the rootdn.  The
1435 password can only be set if the rootdn is within the namingContext
1436 (suffix) of the database.
1437 This option accepts all RFC 2307 userPassword formats known to
1438 the server (see 
1439 .B password-hash
1440 description) as well as cleartext.
1441 .BR slappasswd (8) 
1442 may be used to generate a hash of a password.  Cleartext
1443 and \fB{CRYPT}\fP passwords are not recommended.  If empty
1444 (the default), authentication of the root DN is by other means
1445 (e.g. SASL).  Use of SASL is encouraged.
1446 .TP
1447 .B suffix <dn suffix>
1448 Specify the DN suffix of queries that will be passed to this 
1449 backend database.  Multiple suffix lines can be given and at least one is 
1450 required for each database definition.
1451 If the suffix of one database is "inside" that of another, the database
1452 with the inner suffix must come first in the configuration file.
1453 .TP
1454 .B subordinate [advertise]
1455 Specify that the current backend database is a subordinate of another
1456 backend database. A subordinate  database may have only one suffix. This
1457 option may be used to glue multiple databases into a single namingContext.
1458 If the suffix of the current database is within the namingContext of a
1459 superior database, searches against the superior database will be
1460 propagated to the subordinate as well. All of the databases
1461 associated with a single namingContext should have identical rootdns.
1462 Behavior of other LDAP operations is unaffected by this setting. In
1463 particular, it is not possible to use moddn to move an entry from
1464 one subordinate to another subordinate within the namingContext.
1465
1466 If the optional \fBadvertise\fP flag is supplied, the naming context of
1467 this database is advertised in the root DSE. The default is to hide this
1468 database context, so that only the superior context is visible.
1469
1470 If the slap tools
1471 .BR slapcat (8),
1472 .BR slapadd (8),
1473 or
1474 .BR slapindex (8)
1475 are used on the superior database, any glued subordinates that support
1476 these tools are opened as well.
1477
1478 Databases that are glued together should usually be configured with the
1479 same indices (assuming they support indexing), even for attributes that
1480 only exist in some of these databases. In general, all of the glued
1481 databases should be configured as similarly as possible, since the intent
1482 is to provide the appearance of a single directory.
1483
1484 Note that the \fIsubordinate\fP functionality is implemented internally
1485 by the \fIglue\fP overlay and as such its behavior will interact with other
1486 overlays in use. By default, the glue overlay is automatically configured as
1487 the last overlay on the superior backend. Its position on the backend
1488 can be explicitly configured by setting an \fBoverlay glue\fP directive
1489 at the desired position. This explicit configuration is necessary e.g.
1490 when using the \fIsyncprov\fP overlay, which needs to follow \fIglue\fP
1491 in order to work over all of the glued databases. E.g.
1492 .RS
1493 .nf
1494         database bdb
1495         suffix dc=example,dc=com
1496         ...
1497         overlay glue
1498         overlay syncprov
1499 .fi
1500 .RE
1501 .HP
1502 .hy 0
1503 .B syncrepl rid=<replica ID>
1504 .B provider=ldap[s]://<hostname>[:port]
1505 .B [type=refreshOnly|refreshAndPersist]
1506 .B [interval=dd:hh:mm:ss]
1507 .B [retry=[<retry interval> <# of retries>]+]
1508 .B searchbase=<base DN>
1509 .B [filter=<filter str>]
1510 .B [scope=sub|one|base]
1511 .B [attrs=<attr list>]
1512 .B [attrsonly]
1513 .B [sizelimit=<limit>]
1514 .B [timelimit=<limit>]
1515 .B [schemachecking=on|off]
1516 .B [starttls=yes|critical]
1517 .B [bindmethod=simple|sasl]
1518 .B [binddn=<dn>]
1519 .B [saslmech=<mech>]
1520 .B [authcid=<identity>]
1521 .B [authzid=<identity>]
1522 .B [credentials=<passwd>]
1523 .B [realm=<realm>]
1524 .B [secprops=<properties>]
1525 .B [logbase=<base DN>]
1526 .B [logfilter=<filter str>]
1527 .B [syncdata=default|accesslog|changelog]
1528 .RS
1529 Specify the current database as a replica which is kept up-to-date with the 
1530 master content by establishing the current
1531 .BR slapd (8)
1532 as a replication consumer site running a
1533 .B syncrepl
1534 replication engine.
1535 The replica content is kept synchronized to the master content using
1536 the LDAP Content Synchronization protocol. Refer to the
1537 "OpenLDAP Administrator's Guide" for detailed information on
1538 setting up a replicated
1539 .B slapd
1540 directory service using the 
1541 .B syncrepl
1542 replication engine.
1543 .B rid
1544 identifies the current
1545 .B syncrepl
1546 directive within the replication consumer site.
1547 It is a non-negative integer having no more than three digits.
1548 .B provider
1549 specifies the replication provider site containing the master content
1550 as an LDAP URI. If <port> is not given, the standard LDAP port number
1551 (389 or 636) is used. The content of the
1552 .B syncrepl
1553 replica is defined using a search
1554 specification as its result set. The consumer
1555 .B slapd
1556 will send search requests to the provider
1557 .B slapd
1558 according to the search specification. The search specification includes
1559 .B searchbase, scope, filter, attrs, attrsonly, sizelimit,
1560 and
1561 .B timelimit
1562 parameters as in the normal search specification. 
1563 The \fBscope\fP defaults to \fBsub\fP, the \fBfilter\fP defaults to
1564 \fB(objectclass=*)\fP, and there is no default \fBsearchbase\fP. The
1565 \fBattrs\fP list defaults to \fB"*,+"\fP to return all user and operational
1566 attributes, and \fBattrsonly\fP is unset by default.
1567 The \fBsizelimit\fP and \fBtimelimit\fP only
1568 accept "unlimited" and positive integers, and both default to "unlimited".
1569 The LDAP Content Synchronization protocol has two operation types.
1570 In the
1571 .B refreshOnly
1572 operation, the next synchronization search operation
1573 is periodically rescheduled at an interval time (specified by 
1574 .B interval
1575 parameter; 1 day by default)
1576 after each synchronization operation finishes.
1577 In the
1578 .B refreshAndPersist
1579 operation, a synchronization search remains persistent in the provider slapd.
1580 Further updates to the master replica will generate
1581 .B searchResultEntry
1582 to the consumer slapd as the search responses to the persistent
1583 synchronization search.
1584 If an error occurs during replication, the consumer will attempt to
1585 reconnect according to the
1586 .B retry
1587 parameter which is a list of the <retry interval> and <# of retries> pairs.
1588 For example, retry="60 10 300 3" lets the consumer retry every 60 seconds
1589 for the first 10 times and then retry every 300 seconds for the next 3
1590 times before stop retrying. The `+' in <# of retries> means indefinite
1591 number of retries until success.
1592 The schema checking can be enforced at the LDAP Sync
1593 consumer site by turning on the
1594 .B schemachecking
1595 parameter. The default is off.
1596 The
1597 .B starttls
1598 parameter specifies use of the StartTLS extended operation
1599 to establish a TLS session before Binding to the provider. If the
1600 StartTLS request fails and the
1601 .B critical
1602 argument was used, the session will be aborted. Otherwise the syncrepl
1603 session continues without TLS.
1604 A
1605 .B bindmethod
1606 of 
1607 .B simple
1608 requires the options 
1609 .B binddn
1610 and 
1611 .B credentials
1612 and should only be used when adequate security services
1613 (e.g. TLS or IPSEC) are in place.
1614 .B REMEMBER: simple bind credentials must be in cleartext!
1615 A
1616 .B bindmethod
1617 of
1618 .B sasl
1619 requires the option
1620 .B saslmech.
1621 Depending on the mechanism, an authentication identity and/or
1622 credentials can be specified using
1623 .B authcid
1624 and
1625 .B credentials.
1626 The
1627 .B authzid
1628 parameter may be used to specify an authorization identity.
1629 Specific security properties (as with the
1630 .B sasl-secprops
1631 keyword above) for a SASL bind can be set with the
1632 .B secprops
1633 option. A non default SASL realm can be set with the
1634 .B realm 
1635 option.
1636
1637 Rather than replicating whole entries, the consumer can query logs of
1638 data modifications. This mode of operation is referred to as \fIdelta
1639 syncrepl\fP. In addition to the above parameters, the
1640 .B logbase
1641 and
1642 .B logfilter
1643 parameters must be set appropriately for the log that will be used. The
1644 .B syncdata
1645 parameter must be set to either "accesslog" if the log conforms to the
1646 .BR slapo-accesslog (5)
1647 log format, or "changelog" if the log conforms
1648 to the obsolete \fIchangelog\fP format. If the
1649 .B syncdata
1650 parameter is omitted or set to "default" then the log parameters are
1651 ignored.
1652 .RE
1653 .TP
1654 .B updatedn <dn>
1655 This option is only applicable in a slave
1656 database updated using
1657 .BR slurpd(8). 
1658 It specifies the DN permitted to update (subject to access controls)
1659 the replica (typically, this is the DN
1660 .BR slurpd (8)
1661 binds to update the replica).  Generally, this DN
1662 .I should not
1663 be the same as the
1664 .B rootdn 
1665 used at the master.
1666 .TP
1667 .B updateref <url>
1668 Specify the referral to pass back when
1669 .BR slapd (8)
1670 is asked to modify a replicated local database.
1671 If specified multiple times, each url is provided.
1672
1673 .SH DATABASE-SPECIFIC OPTIONS
1674 Each database may allow specific configuration options; they are
1675 documented separately in the backends' manual pages.
1676 .SH BACKENDS
1677 The following backends can be compiled into slapd.
1678 They are documented in the
1679 .BR slapd-<backend> (5)
1680 manual pages.
1681 .TP
1682 .B bdb
1683 This is the recommended primary backend for a normal slapd database.
1684 It takes care to configure it properly.
1685 It uses the transactional database interface of the Sleepycat Berkeley
1686 DB (BDB) package to store data.
1687 .TP
1688 .B config
1689 This backend is used to manage the configuration of slapd run-time.
1690 .TP
1691 .B dnssrv
1692 This backend is experimental.
1693 It serves up referrals based upon SRV resource records held in the
1694 Domain Name System.
1695 .TP
1696 .B hdb
1697 This is a variant of the BDB backend that uses a hierarchical database
1698 layout which supports subtree renames.
1699 .TP
1700 .B ldap
1701 This backend acts as a proxy to forward incoming requests to another
1702 LDAP server.
1703 .TP
1704 .B ldbm
1705 This is an easy-to-configure but obsolete database backend. It
1706 does not offer the data durability features of the BDB and HDB
1707 backends and hence is deprecated in favor of these robust backends.
1708 LDBM uses lightweight non-transactional DB interfaces,
1709 such as those providing by GDBM or Berkeley DB, to store data.
1710 .TP
1711 .B ldif
1712 This database uses the filesystem to build the tree structure
1713 of the database, using plain ascii files to store data.
1714 Its usage should be limited to very simple databases, where performance
1715 is not a requirement.
1716 .TP
1717 .B meta
1718 This backend performs basic LDAP proxying with respect to a set of
1719 remote LDAP servers. It is an enhancement of the ldap backend.
1720 .TP
1721 .B monitor
1722 This backend provides information about the running status of the slapd
1723 daemon.
1724 .TP
1725 .B null
1726 Operations in this backend succeed but do nothing.
1727 .TP
1728 .B passwd
1729 This backend is provided for demonstration purposes only.
1730 It serves up user account information from the system
1731 .BR passwd (5)
1732 file.
1733 .TP
1734 .B perl
1735 This backend embeds a
1736 .BR perl (1)
1737 interpreter into slapd.
1738 It runs Perl subroutines to implement LDAP operations.
1739 .TP
1740 .B relay
1741 This backend is experimental.
1742 It redirects LDAP operations to another database
1743 in the same server, based on the naming context of the request.
1744 Its use requires the 
1745 .B rwm
1746 overlay (see
1747 .BR slapo-rwm (5)
1748 for details) to rewrite the naming context of the request.
1749 It is primarily intended to implement virtual views on databases
1750 that actually store data.
1751 .TP
1752 .B shell
1753 This backend executes external programs to implement LDAP operations.
1754 It is primarily intended to be used in prototypes.
1755 .TP
1756 .B sql
1757 This backend is experimental.
1758 It services LDAP requests from an SQL database.
1759 .SH OVERLAYS
1760 The following overlays can be compiled into slapd.
1761 They are documented in the
1762 .BR slapo-<overlay> (5)
1763 manual pages.
1764 .TP
1765 .B accesslog
1766 Access Logging.
1767 This overlay can record accesses to a given backend database on another
1768 database.
1769 .TP
1770 .B auditlog
1771 Audit Logging.
1772 This overlay records changes on a given backend database to an LDIF log
1773 file.
1774 By default it is not built.
1775 .TP
1776 .B chain
1777 Chaining.
1778 This overlay allows automatic referral chasing when a referral would
1779 have been returned, either when configured by the server or when 
1780 requested by the client.
1781 .TP
1782 .B denyop
1783 Deny Operation.
1784 This overlay allows selected operations to be denied, similar to the
1785 \fBrestrict\fP option.
1786 .TP
1787 .B dyngroup
1788 Dynamic Group.
1789 This is a demo overlay which extends the Compare operation to detect
1790 members of a dynamic group.
1791 It has no effect on any other operations.
1792 .TP
1793 .B dynlist
1794 Dynamic List.
1795 This overlay allows expansion of dynamic groups and more.
1796 .TP
1797 .B lastmod
1798 Last Modification.
1799 This overlay maintains a service entry in the database with the DN,
1800 modification type, modifiersName and modifyTimestamp of the last write
1801 operation performed on that database.
1802 .TP
1803 .B pcache
1804 Proxycache.
1805 This overlay allows caching of LDAP search requests in a local database.
1806 It is most often used with the ldap or meta backends.
1807 .TP
1808 .B ppolicy
1809 Password Policy.
1810 This overlay provides a variety of password control mechanisms,
1811 e.g. password aging, password reuse and duplication control, mandatory
1812 password resets, etc.
1813 .TP
1814 .B refint
1815 Referential Integrity.
1816 This overlay can be used with a backend database such as
1817 .BR slapd-bdb (5)
1818 to maintain the cohesiveness of a schema which utilizes reference
1819 attributes.
1820 .TP
1821 .B retcode
1822 Return Code.
1823 This overlay is useful to test the behavior of clients when
1824 server-generated erroneous and/or unusual responses occur.
1825 .TP
1826 .B rwm
1827 Rewrite/remap.
1828 This overlay is experimental.
1829 It performs basic DN/data rewrite and
1830 objectClass/attributeType mapping.
1831 .TP
1832 .B syncprov
1833 Syncrepl Provider.
1834 This overlay implements the provider-side support for
1835 .B syncrepl
1836 replication, including persistent search functionality.
1837 .TP
1838 .B translucent
1839 Translucent Proxy.
1840 This overlay can be used with a backend database such as
1841 .BR slapd-bdb (5)
1842 to create a "translucent proxy".
1843 Content of entries retrieved from a remote LDAP server can be partially
1844 overridden by the database.
1845 .TP
1846 .B unique
1847 Attribute Uniqueness.
1848 This overlay can be used with a backend database such as
1849 .BR slapd-bdb (5)
1850 to enforce the uniqueness of some or all attributes within a subtree.
1851 .SH EXAMPLES
1852 .LP
1853 Here is a short example of a configuration file:
1854 .LP
1855 .RS
1856 .nf
1857 include   SYSCONFDIR/schema/core.schema
1858 pidfile   LOCALSTATEDIR/slapd.pid
1859
1860 # Subtypes of "name" (e.g. "cn" and "ou") with the
1861 # option ";x-hidden" can be searched for/compared,
1862 # but are not shown.  See \fBslapd.access\fP(5).
1863 attributeoptions x-hidden lang-
1864 access to attr=name;x-hidden by * =cs
1865
1866 # Protect passwords.  See \fBslapd.access\fP(5).
1867 access    to attrs=userPassword  by * auth
1868 # Read access to other attributes and entries.
1869 access    to *  by * read
1870
1871 database  bdb
1872 suffix    "dc=our-domain,dc=com"
1873 # The database directory MUST exist prior to
1874 # running slapd AND should only be accessible
1875 # by the slapd/tools. Mode 0700 recommended.
1876 directory LOCALSTATEDIR/openldap-data
1877 # Indices to maintain
1878 index     objectClass  eq
1879 index     cn,sn,mail   pres,eq,approx,sub
1880
1881 # We serve small clients that do not handle referrals,
1882 # so handle remote lookups on their behalf.
1883 database  ldap
1884 suffix    ""
1885 uri       ldap://ldap.some-server.com/
1886 lastmod   off
1887 .fi
1888 .RE
1889 .LP
1890 "OpenLDAP Administrator's Guide" contains a longer annotated
1891 example of a configuration file.
1892 The original ETCDIR/slapd.conf is another example.
1893 .SH FILES
1894 .TP
1895 ETCDIR/slapd.conf
1896 default slapd configuration file
1897 .SH SEE ALSO
1898 .BR ldap (3),
1899 .BR slapd\-bdb (5),
1900 .BR slapd\-dnssrv (5),
1901 .BR slapd\-hdb (5),
1902 .BR slapd\-ldap (5),
1903 .BR slapd\-ldbm (5),
1904 .BR slapd\-ldif (5),
1905 .BR slapd\-meta (5),
1906 .BR slapd\-monitor (5),
1907 .BR slapd\-null (5),
1908 .BR slapd\-passwd (5),
1909 .BR slapd\-perl (5),
1910 .BR slapd\-relay (5),
1911 .BR slapd\-shell (5),
1912 .BR slapd\-sql (5),
1913 .BR slapd.access (5),
1914 .BR slapd.plugin (5),
1915 .BR slapd.replog (5),
1916 .BR slapd (8),
1917 .BR slapacl (8),
1918 .BR slapadd (8),
1919 .BR slapauth (8),
1920 .BR slapcat (8),
1921 .BR slapdn (8),
1922 .BR slapindex (8),
1923 .BR slappasswd (8),
1924 .BR slaptest (8),
1925 .BR slurpd (8).
1926
1927 Known overlays are documented in
1928 .BR slapo\-accesslog (5),
1929 .BR slapo\-auditlog (5),
1930 .BR slapo\-chain (5),
1931 .BR slapo\-dynlist (5),
1932 .BR slapo\-lastmod (5),
1933 .BR slapo\-pcache (5),
1934 .BR slapo\-ppolicy (5),
1935 .BR slapo\-refint (5),
1936 .BR slapo\-retcode (5),
1937 .BR slapo\-rwm (5),
1938 .BR slapo\-syncprov (5),
1939 .BR slapo\-translucent (5),
1940 .BR slapo\-unique (5).
1941 .LP
1942 "OpenLDAP Administrator's Guide" (http://www.OpenLDAP.org/doc/admin/)
1943 .SH ACKNOWLEDGEMENTS
1944 .B OpenLDAP
1945 is developed and maintained by The OpenLDAP Project (http://www.openldap.org/).
1946 .B OpenLDAP
1947 is derived from University of Michigan LDAP 3.3 Release.