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