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