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