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