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