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