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