]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapd.conf.5
f3b652c7609ee287984c802c24f246bc538396ea
[openldap] / doc / man / man5 / slapd.conf.5
1 .TH SLAPD.CONF 5 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" Copyright 1998-2004 The OpenLDAP Foundation All Rights Reserved.
3 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
4 .\" $OpenLDAP$
5 .SH NAME
6 slapd.conf \- configuration file for slapd, the stand-alone LDAP daemon
7 .SH SYNOPSIS
8 ETCDIR/slapd.conf
9 .SH DESCRIPTION
10 The file
11 .B ETCDIR/slapd.conf
12 contains configuration information for the
13 .BR slapd (8)
14 daemon.  This configuration file is also used by the
15 .BR slurpd (8)
16 replication daemon and by the SLAPD tools
17 .BR slapadd (8),
18 .BR slapcat (8),
19 and
20 .BR slapindex (8).
21 .LP
22 The
23 .B slapd.conf
24 file consists of a series of global configuration options that apply to
25 .B slapd
26 as a whole (including all backends), followed by zero or more database
27 backend definitions that contain information specific to a backend
28 instance.
29 .LP
30 The general format of
31 .B slapd.conf
32 is as follows:
33 .LP
34 .nf
35     # comment - these options apply to every database
36     <global configuration options>
37     # first database definition & configuration options
38     database <backend 1 type>
39     <configuration options specific to backend 1>
40     # subsequent database definitions & configuration options
41     ...
42 .fi
43 .LP
44 As many backend-specific sections as desired may be included.  Global
45 options can be overridden in a backend (for options that appear more
46 than once, the last appearance in the
47 .B slapd.conf
48 file is used).
49 .LP
50 If a line begins with white space, it is considered a continuation
51 of the previous line.  Blank lines and comment lines beginning with
52 a `#' character are ignored.  (Note: continuation lines are unwrapped
53 before comment processing is applied.)
54 .LP
55 Arguments on configuration lines are separated by white space. If an
56 argument contains white space, the argument should be enclosed in
57 double quotes.  If an argument contains a double quote (`"') or a
58 backslash character (`\\'), the character should be preceded by a
59 backslash character.
60 .LP
61 The specific configuration options available are discussed below in the
62 Global Configuration Options, General Backend Options, and General Database
63 Options.  Backend-specific options are discussed in the
64 .B slapd-<backend>(5)
65 manual pages.  Refer to the "OpenLDAP Administrator's Guide" for more
66 details on the slapd configuration file.
67 .SH GLOBAL CONFIGURATION OPTIONS
68 Options described in this section apply to all backends, unless specifically 
69 overridden in a backend definition. Arguments that should be replaced by 
70 actual text are shown in brackets <>.
71 .TP
72 .B access to <what> "[ by <who> <access> <control> ]+"
73 Grant access (specified by <access>) to a set of entries and/or
74 attributes (specified by <what>) by one or more requestors (specified
75 by <who>).
76 See
77 .BR slapd.access (5)
78 and the "OpenLDAP's Administrator's Guide" for details.
79 .TP
80 .B allow <features>
81 Specify a set of features (separated by white space) to
82 allow (default none).
83 .B bind_v2
84 allows acceptance of LDAPv2 bind requests.  Note that
85 .BR slapd (8)
86 does not truly implement LDAPv2 (RFC 1777), now Historic (RFC 3494).
87 .B bind_anon_cred
88 allows anonymous bind when credentials are not empty (e.g.
89 when DN is empty).
90 .B bind_anon_dn
91 allows unauthenticated (anonymous) bind when DN is not empty.
92 .B update_anon
93 allow unauthenticated (anonymous) update operations to be processed
94 (subject to access controls and other administrative limits).
95 .TP
96 .B argsfile <filename>
97 The ( absolute ) name of a file that will hold the 
98 .B slapd
99 server's command line options
100 if started without the debugging command line option.
101 .TP
102 .B attributeoptions [option-name]...
103 Define tagging attribute options or option tag/range prefixes.
104 Options must not end with `-', prefixes must end with `-'.
105 The `lang-' prefix is predefined.
106 If you use the
107 .B attributeoptions
108 directive, `lang-' will no longer be defined and you must specify it
109 explicitly if you want it defined.
110
111 An attribute description with a tagging option is a subtype of that
112 attribute description without the option.
113 Except for that, options defined this way have no special semantics.
114 Prefixes defined this way work like the `lang-' options:
115 They define a prefix for tagging options starting with the prefix.
116 That is, if you define the prefix `x-foo-', you can use the option
117 `x-foo-bar'.
118 Furthermore, in a search or compare, a prefix or range name (with
119 a trailing `-') matches all options starting with that name, as well
120 as the option with the range name sans the trailing `-'.
121 That is, `x-foo-bar-' matches `x-foo-bar' and `x-foo-bar-baz'.
122
123 RFC 2251 reserves options beginning with `x-' for private experiments.
124 Other options should be registered with IANA, see RFC 3383 section 3.4.
125 OpenLDAP also has the `binary' option built in, but this is a transfer
126 option, not a tagging option.
127 .HP
128 .hy 0
129 .B attributetype "(\ <oid>\
130  [NAME\ <name>]\
131  [DESC\ <description>]\
132  [OBSOLETE]\
133  [SUP\ <oid>]\
134  [EQUALITY\ <oid>]\
135  [ORDERING\ <oid>]\
136  [SUBSTR\ <oid>]\
137  [SYNTAX\ <oidlen>]\
138  [SINGLE\-VALUE]\
139  [COLLECTIVE]\
140  [NO\-USER\-MODIFICATION]\
141  [USAGE\ <attributeUsage>]\ )"
142 .RS
143 Specify an attribute type using the LDAPv3 syntax defined in RFC 2252.
144 The slapd parser extends the RFC 2252 definition by allowing string
145 forms as well as numeric OIDs to be used for the attribute OID and
146 attribute syntax OID.
147 (See the
148 .B objectidentifier
149 description.) 
150 .RE
151 .TP
152 .B concurrency <integer>
153 Specify a desired level of concurrency.  Provided to the underlying
154 thread system as a hint.  The default is not to provide any hint.
155 .TP
156 .B conn_max_pending <integer>
157 Specify the maximum number of pending requests for an anonymous session.
158 If requests are submitted faster than the server can process them, they
159 will be queued up to this limit. If the limit is exceeded, the session
160 is closed. The default is 100.
161 .TP
162 .B conn_max_pending_auth <integer>
163 Specify the maximum number of pending requests for an authenticated session.
164 The default is 1000.
165 .\"-- NEW_LOGGING option --
166 .\".TP
167 .\".B debug <subsys> <level>
168 .\"Specify a logging level for a particular subsystem.  The subsystems include
169 .\".B global
170 .\"a global level for all subsystems,
171 .\".B acl
172 .\"the ACL engine,
173 .\".B backend
174 .\"the backend databases,
175 .\".B cache
176 .\"the entry cache manager,
177 .\".B config
178 .\"the config file reader,
179 .\".B connection
180 .\"the connection manager,
181 .\".B cyrus
182 .\"the Cyrus SASL library interface,
183 .\".B filter
184 .\"the search filter processor,
185 .\".B getdn
186 .\"the DN normalization library,
187 .\".B index
188 .\"the database indexer,
189 .\".B liblber
190 .\"the ASN.1 BER library,
191 .\".B module
192 .\"the dynamic module loader,
193 .\".B operation
194 .\"the LDAP operation processors,
195 .\".B sasl
196 .\"the SASL authentication subsystem,
197 .\".B schema
198 .\"the schema processor, and
199 .\".B tls
200 .\"the TLS library interface. This is not an exhaustive list; there are many
201 .\"other subsystems and more are added over time.
202 .\"
203 .\"The levels are, in order of decreasing priority:
204 .\".B emergency, alert, critical, error, warning, notice, information, entry,
205 .\".B args, results, detail1, detail2
206 .\"An integer may be used instead, with 0 corresponding to
207 .\".B emergency
208 .\"up to 11 for
209 .\".BR detail2 .
210 .\"The
211 .\".B entry
212 .\"level logs function entry points,
213 .\".B args
214 .\"adds function call parameters, and
215 .\".B results
216 .\"adds the function results to the logs.
217 .\"The
218 .\".B detail1
219 .\"and
220 .\".B detail2
221 .\"levels add even more low level detail from individual functions.
222 .TP
223 .B defaultsearchbase <dn>
224 Specify a default search base to use when client submits a
225 non-base search request with an empty base DN.
226 .TP
227 .B disallow <features>
228 Specify a set of features (separated by white space) to
229 disallow (default none).
230 .B bind_anon
231 disables acceptance of anonymous bind requests.
232 .B bind_simple
233 disables simple (bind) authentication.
234 .B bind_krbv4
235 disables Kerberos V4 (bind) authentication.
236 .B tls_2_anon
237 disables Start TLS from forcing session to anonymous status (see also
238 .BR tls_authc ).
239 .B tls_authc
240 disables StartTLS if authenticated (see also
241 .BR tls_2_anon ).
242 .HP
243 .hy 0
244 .B ditcontentrule "(\ <oid>\
245  [NAME\ <name>]\
246  [DESC\ <description>]\
247  [OBSOLETE]\
248  [AUX\ <oids>]\
249  [MUST\ <oids>]\
250  [MAY\ <oids>]\
251  [NOT\ <oids>]\ )"
252 .RS
253 Specify an DIT Content Rule using the LDAPv3 syntax defined in RFC 2252.
254 The slapd parser extends the RFC 2252 definition by allowing string
255 forms as well as numeric OIDs to be used for the attribute OID and
256 attribute syntax OID.
257 (See the
258 .B objectidentifier
259 description.) 
260 .RE
261 .TP
262 .B gentlehup { on | off }
263 A SIGHUP signal will only cause a 'gentle' shutdown-attempt:
264 .B Slapd
265 will stop listening for new connections, but will not close the
266 connections to the current clients.  Future write operations return
267 unwilling-to-perform, though.  Slapd terminates when all clients
268 have closed their connections (if they ever do), or \- as before \-
269 if it receives a SIGTERM signal.  This can be useful if you wish to
270 terminate the server and start a new
271 .B slapd
272 server
273 .B with another database,
274 without disrupting the currently active clients.
275 The default is off.  You may wish to use
276 .B idletimeout
277 along with this option.
278 .TP
279 .B idletimeout <integer>
280 Specify the number of seconds to wait before forcibly closing
281 an idle client connection.  A idletimeout of 0 disables this
282 feature.  The default is 0.
283 .TP
284 .B include <filename>
285 Read additional configuration information from the given file before
286 continuing with the next line of the current file.
287 .TP
288 .B limits <who> <limit> [<limit> [...]]
289 Specify time and size limits based on who initiated an operation.
290 The argument
291 .B who
292 can be any of
293 .RS
294 .RS
295 .TP
296 anonymous | users | [dn[.<style>]=]<pattern> | group[/oc[/at]]=<pattern>
297
298 .RE
299 with
300 .RS
301 .TP
302 <style> ::= exact | base | onelevel | subtree | children | regex | anonymous
303
304 .RE
305 The term
306 .B anonymous
307 matches all unauthenticated clients.
308 The term
309 .B users
310 matches all authenticated clients;
311 otherwise an
312 .B exact
313 dn pattern is assumed unless otherwise specified by qualifying 
314 the (optional) key string
315 .B dn
316 with 
317 .B exact
318 or
319 .B base
320 (which are synonyms), to require an exact match; with
321 .BR onelevel , 
322 to require exactly one level of depth match; with
323 .BR subtree ,
324 to allow any level of depth match, including the exact match; with
325 .BR children ,
326 to allow any level of depth match, not including the exact match;
327 .BR regex
328 explicitly requires the (default) match based on regular expression
329 pattern, as detailed in
330 .BR regex (7).
331 Finally,
332 .B anonymous
333 matches unbound operations; the 
334 .B pattern
335 field is ignored.
336 The same behavior is obtained by using the 
337 .B anonymous
338 form of the
339 .B who
340 clause.
341 The term
342 .BR group ,
343 with the optional objectClass
344 .B oc
345 and attributeType
346 .B at
347 fields, followed by
348 .BR pattern ,
349 sets the limits for any DN listed in the values of the
350 .B at
351 attribute (default
352 .BR member )
353 of the 
354 .B oc
355 group objectClass (default
356 .BR groupOfNames )
357 whose DN exactly matches
358 .BR pattern .
359
360 The currently supported limits are 
361 .B size
362 and 
363 .BR time .
364
365 The syntax for time limits is 
366 .BR time[.{soft|hard}]=<integer> ,
367 where 
368 .BR integer
369 is the number of seconds slapd will spend answering a search request.
370 If no time limit is explicitly requested by the client, the 
371 .BR soft
372 limit is used; if the requested time limit exceeds the
373 .BR hard
374 limit, an
375 .I \"Administrative limit exceeded\"
376 is returned.
377 If the
378 .BR hard
379 limit is set to 0 or to the keyword 
380 .IR soft ,
381 the soft limit is used in either case; if it is set to 
382 .I -1 
383 or to the keyword 
384 .IR none , 
385 no hard limit is enforced.
386 Explicit requests for time limits smaller or equal to the
387 .BR hard 
388 limit are honored.
389 If no flag is set, the value is assigned to the 
390 .BR soft 
391 limit, and the
392 .BR hard
393 limit is set to zero, to preserve the original behavior.
394
395 The syntax for size limits is
396 .BR size[.{soft|hard|unchecked}]=<integer> ,
397 where
398 .BR integer
399 is the maximum number of entries slapd will return answering a search 
400 request.
401 If no size limit is explicitly requested by the client, the
402 .BR soft
403 limit is used; if the requested size limit exceeds the
404 .BR hard
405 limit, an 
406 .I \"Administrative limit exceeded\"
407 is returned.
408 If the 
409 .BR hard
410 limit is set to 0 or to the keyword 
411 .IR soft , 
412 the soft limit is used in either case; if it is set to 
413 .I -1 
414 or to the keyword
415 .IR none , 
416 no hard limit is enforced.
417 Explicit requests for size limits smaller or equal to the
418 .BR hard
419 limit are honored.
420 The
421 .BR unchecked
422 flag sets a limit on the number of candidates a search request is allowed
423 to examine.
424 If the selected candidates exceed the 
425 .BR unchecked
426 limit, the search will abort with 
427 .IR \"Unwilling to perform\" .
428 If it is set to
429 .I -1 
430 or to the keyword 
431 .IR none , 
432 no limit is applied (the default).
433 If no flag is set, the value is assigned to the
434 .BR soft 
435 limit, and the
436 .BR hard
437 limit is set to zero, to preserve the original behavior.
438
439 In case of no match, the global limits are used.
440 The default values are the same of
441 .B sizelimit
442 and
443 .BR timelimit ;
444 no limit is set on 
445 .BR unchecked .
446
447 If 
448 .B pagedResults
449 control is defined, additional size limits may be enforced; the syntax is
450 .BR size.pr={<integer>|noEstimate} ,
451 where
452 .BR integer
453 is the max page size if no explicit limit is set; the keyword
454 .IR noEstimate
455 inhibits the server to return an estimate of the total number
456 of entries that will be returned.
457 .RE
458 .\"-- NEW_LOGGING option --
459 .\".TP
460 .\".B logfile <filename>
461 .\"Specify a file for recording debug log messages. By default these messages
462 .\"only go to stderr and are not recorded anywhere else. Specifying a logfile
463 .\"copies messages to both stderr and the logfile.
464 .TP
465 .B loglevel <integer>
466 Specify the level at which debugging statements and operation 
467 statistics should be syslogged (currently logged to the
468 .BR syslogd (8) 
469 LOG_LOCAL4 facility).  Log levels are additive, and available levels
470 are:
471 .RS
472 .RS
473 .PD 0
474 .TP
475 .B 1
476 trace function calls
477 .TP
478 .B 2
479 debug packet handling
480 .TP
481 .B 4
482 heavy trace debugging
483 .TP
484 .B 8
485 connection management
486 .TP
487 .B 16
488 print out packets sent and received
489 .TP
490 .B 32
491 search filter processing
492 .TP
493 .B 64
494 configuration file processing
495 .TP
496 .B 128
497 access control list processing
498 .TP
499 .B 256
500 stats log connections/operations/results
501 .TP
502 .B 512
503 stats log entries sent
504 .TP
505 .B 1024
506 print communication with shell backends
507 .TP
508 .B 2048
509 entry parsing
510 .PD
511 .RE
512 .RE
513 .TP
514 .B moduleload <filename>
515 Specify the name of a dynamically loadable module to load. The filename
516 may be an absolute path name or a simple filename. Non-absolute names
517 are searched for in the directories specified by the
518 .B modulepath
519 option. This option and the
520 .B modulepath
521 option are only usable if slapd was compiled with --enable-modules.
522 .TP
523 .B modulepath <pathspec>
524 Specify a list of directories to search for loadable modules. Typically
525 the path is colon-separated but this depends on the operating system.
526 .HP
527 .hy 0
528 .B objectclass "(\ <oid>\
529  [NAME\ <name>]\
530  [DESC\ <description]\
531  [OBSOLETE]\
532  [SUP\ <oids>]\
533  [{ ABSTRACT | STRUCTURAL | AUXILIARY }]\
534  [MUST\ <oids>] [MAY\ <oids>] )"
535 .RS
536 Specify an objectclass using the LDAPv3 syntax defined in RFC 2252.
537 The slapd parser extends the RFC 2252 definition by allowing string
538 forms as well as numeric OIDs to be used for the object class OID.
539 (See the
540 .B
541 objectidentifier
542 description.)  Object classes are "STRUCTURAL" by default.
543 .RE
544 .TP
545 .B objectidentifier <name> "{ <oid> | <name>[:<suffix>] }"
546 Define a string name that equates to the given OID. The string can be used
547 in place of the numeric OID in objectclass and attribute definitions. The
548 name can also be used with a suffix of the form ":xx" in which case the
549 value "oid.xx" will be used.
550 .TP
551 .B password-hash <hash> [<hash>...]
552 This option configures one or more hashes to be used in generation of user
553 passwords stored in the userPassword attribute during processing of
554 LDAP Password Modify Extended Operations (RFC 3062).
555 The <hash> must be one of
556 .BR {SSHA} ,
557 .BR {SHA} ,
558 .BR {SMD5} ,
559 .BR {MD5} ,
560 .BR {CRYPT} ,
561 and
562 .BR {CLEARTEXT} .
563 The default is
564 .BR {SSHA} .
565
566 .B {SHA}
567 and
568 .B {SSHA}
569 use the SHA-1 algorithm (FIPS 160-1), the latter with a seed.
570
571 .B {MD5}
572 and
573 .B {SMD5}
574 use the MD5 algorithm (RFC 1321), the latter with a seed.
575
576 .B {CRYPT}
577 uses the
578 .BR crypt (3).
579
580 .B {CLEARTEXT}
581 indicates that the new password should be
582 added to userPassword as clear text.
583
584 Note that this option does not alter the normal user applications
585 handling of userPassword during LDAP Add, Modify, or other LDAP operations.
586 .TP
587 .B password\-crypt\-salt\-format <format>
588 Specify the format of the salt passed to
589 .BR crypt (3)
590 when generating {CRYPT} passwords (see
591 .BR password\-hash )
592 during processing of LDAP Password Modify Extended Operations (RFC 3062).
593
594 This string needs to be in
595 .BR sprintf (3)
596 format and may include one (and only one) %s conversion.
597 This conversion will be substituted with a string random
598 characters from [A\-Za\-z0\-9./].  For example, "%.2s"
599 provides a two character salt and "$1$%.8s" tells some
600 versions of crypt(3) to use an MD5 algorithm and provides
601 8 random characters of salt.  The default is "%s", which
602 provides 31 characters of salt.
603 .TP
604 .B pidfile <filename>
605 The ( absolute ) name of a file that will hold the 
606 .B slapd
607 server's process ID ( see
608 .BR getpid (2)
609 ) if started without the debugging command line option.
610 .TP
611 .B referral <url>
612 Specify the referral to pass back when
613 .BR slapd (8)
614 cannot find a local database to handle a request.
615 If specified multiple times, each url is provided.
616 .TP
617 .B replica-argsfile
618 The ( absolute ) name of a file that will hold the 
619 .B slurpd
620 server's command line options
621 if started without the debugging command line option.
622 .TP
623 .B replica-pidfile
624 The ( absolute ) name of a file that will hold the 
625 .B slurpd
626 server's process ID ( see
627 .BR getpid (2)
628 ) if started without the debugging command line option.
629 .TP
630 .B replicationinterval
631 The number of seconds 
632 .B slurpd 
633 waits before checking the replogfile for changes.
634 .TP
635 .B require <conditions>
636 Specify a set of conditions (separated by white space) to
637 require (default none).
638 The directive may be specified globally and/or per-database.
639 .B bind
640 requires bind operation prior to directory operations.
641 .B LDAPv3
642 requires session to be using LDAP version 3.
643 .B authc
644 requires authentication prior to directory operations.
645 .B SASL
646 requires SASL authentication prior to directory operations.
647 .B strong
648 requires strong authentication prior to directory operations.
649 The strong keyword allows protected "simple" authentication
650 as well as SASL authentication.
651 .B none
652 may be used to require no conditions (useful for clearly globally
653 set conditions within a particular database).
654 .TP
655 .B reverse-lookup on | off
656 Enable/disable client name unverified reverse lookup (default is 
657 .BR off 
658 if compiled with --enable-rlookups).
659 .TP
660 .B rootDSE <file>
661 Specify the name of an LDIF(5) file containing user defined attributes
662 for the root DSE.  These attributes are returned in addition to the
663 attributes normally produced by slapd.
664 .TP
665 .B sasl-authz-policy <policy>
666 Used to specify which rules to use for SASL Proxy Authorization. Proxy
667 authorization allows a client to authenticate to the server using one
668 user's credentials, but specify a different identity to use for authorization
669 and access control purposes. It essentially allows user A to login as user
670 B, using user A's password.
671 The
672 .B none
673 flag disables proxy authorization. This is the default setting.
674 The
675 .B from
676 flag will use rules in the
677 .I saslAuthzFrom
678 attribute of the authorization DN.
679 The
680 .B to
681 flag will use rules in the
682 .I saslAuthzTo
683 attribute of the authentication DN.
684 The
685 .B any
686 flag, an alias for the deprecated value of
687 .BR both ,
688 will allow any of the above, whatever succeeds first (checked in
689 .BR to ,
690 .B from
691 sequence.
692 The
693 .B all
694 flag requires both authorizations to succeed.
695 The rules are simply regular expressions specifying which DNs are allowed 
696 to perform proxy authorization.
697 The
698 .I saslAuthzFrom
699 attribute in an entry specifies which other users
700 are allowed to proxy login to this entry. The
701 .I saslAuthzTo
702 attribute in
703 an entry specifies which other users this user can authorize as.  Use of
704 .I saslAuthzTo
705 rules can be easily
706 abused if users are allowed to write arbitrary values to this attribute.
707 In general the
708 .I saslAuthzTo
709 attribute must be protected with ACLs such that
710 only privileged users can modify it.
711 The value of
712 .I saslAuthzFrom
713 and
714 .I saslAuthzTo
715 describes an 
716 .B identity 
717 or a set of identities; it can take three forms:
718 .RS
719 .RS
720 .TP
721 .B ldap:///<base>??[<scope>]?<filter>
722 .RE
723 .RS
724 .B dn[.<dnstyle>]:<pattern>
725 .RE
726 .RS
727 .B u[<mech>[<realm>]]:<pattern>
728 .RE
729 .RS
730 .B <pattern>
731 .RE
732 .RS
733
734 .B <dnstyle>:={exact|onelevel|children|subtree|regex}
735
736 .RE
737 The first form is a valid LDAP
738 .B uri
739 where the 
740 .IR <host>:<port> ,
741 the
742 .I <attrs>
743 and the
744 .I <extensions>
745 portions must be absent, so that the search occurs locally on either
746 .I saslAuthzFrom
747 or 
748 .IR saslAuthzTo .
749 The second form is a 
750 .BR DN ,
751 with the optional style modifiers
752 .IR exact ,
753 .IR onelevel ,
754 .IR children ,
755 and
756 .I subtree
757 for exact, onelevel, children and subtree matches, which cause 
758 .I <pattern>
759 to be normalized according to the DN normalization rules, or the special
760 .I regex
761 style, which causes
762 .I <pattern>
763 to be compiled according to 
764 .BR regex (7).
765 The third form is a SASL
766 .BR id ,
767 with the optional fields
768 .I <mech>
769 and
770 .I <realm>
771 that allow to specify a SASL
772 .BR mechanism ,
773 and eventually a SASL
774 .BR realm ,
775 for those mechanisms that support one.
776 The need to allow the specification of a mechanism is still debated, 
777 and users are strongly discouraged to rely on this possibility.
778 For backwards compatibility, if no identity type is provided, i.e. only
779 .B <pattern>
780 is present, an
781 .I exact DN
782 is assumed; as a consequence, 
783 .B <pattern>
784 is subjected to DN normalization.
785 Since the interpretation of
786 .I saslAuthzFrom
787 and
788 .I saslAuthzTo
789 can impact security, users are strongly encouraged 
790 to explicitly set the type of identity specification that is being used.
791 .RE
792 .TP
793 .B sasl-host <fqdn>
794 Used to specify the fully qualified domain name used for SASL processing.
795 .TP
796 .B sasl-realm <realm>
797 Specify SASL realm.  Default is empty.
798 .TP
799 .B sasl-regexp <match> <replace>
800 Used by the SASL mechanism to convert a SASL authenticated 
801 username to an LDAP DN used for authorization purposes.  Note that
802 the resultant DN need not refer to an existing entry to be considered
803 valid.  When an authorization request is received, the SASL 
804 .B USERNAME, REALM, 
805 and
806 .B MECHANISM
807 are taken, when available, and combined into a SASL name of the 
808 form
809 .RS
810 .RS
811 .TP
812 .B UID=<username>[[,CN=<realm>],CN=<mechanism>,]CN=auth
813
814 .RE
815 This SASL name is then compared against the
816 .B match
817 regular expression, and if the match is successful, the SASL name is
818 replaced with the
819 .B replace
820 string. If there are wildcard strings in the 
821 .B match
822 regular expression that are enclosed in parenthesis, e.g. 
823 .RS
824 .TP
825 .B UID=([^,]*),CN=.*
826
827 .RE
828 then the portion of the SASL name that matched the wildcard will be stored
829 in the numbered placeholder variable $1. If there are other wildcard strings
830 in parenthesis, the matching strings will be in $2, $3, etc. up to $9. The 
831 placeholders can then be used in the 
832 .B replace
833 string, e.g. 
834 .RS
835 .TP
836 .B UID=$1,OU=Accounts,DC=example,DC=com 
837
838 .RE
839 The replaced SASL name can be either a DN or an LDAP URI. If the
840 latter, the server will use the URI to search its own database(s)
841 and, if the search returns exactly one entry, the SASL name is
842 replaced by the DN of that entry.   The LDAP URI must have no
843 hostport, attrs, or extensions components, e.g.
844 .RS
845 .TP
846 .B ldap:///OU=Accounts,DC=example,DC=com??one?(UID=$1)
847
848 .RE
849 Multiple 
850 .B sasl-regexp 
851 options can be given in the configuration file to allow for multiple matching 
852 and replacement patterns. The matching patterns are checked in the order they 
853 appear in the file, stopping at the first successful match.
854
855 .\".B Caution:
856 .\"Because the plus sign + is a character recognized by the regular expression engine,
857 .\"and it will appear in SASL names that include a REALM, be careful to escape the
858 .\"plus sign with a backslash \\+ to remove the character's special meaning.
859 .RE
860 .TP
861 .B sasl-secprops <properties>
862 Used to specify Cyrus SASL security properties.
863 The
864 .B none
865 flag (without any other properties) causes the flag properties
866 default, "noanonymous,noplain", to be cleared.
867 The
868 .B noplain
869 flag disables mechanisms susceptible to simple passive attacks.
870 The
871 .B noactive
872 flag disables mechanisms susceptible to active attacks.
873 The
874 .B nodict
875 flag disables mechanisms susceptible to passive dictionary attacks.
876 The
877 .B noanonymous
878 flag disables mechanisms which support anonymous login.
879 The
880 .B forwardsec
881 flag require forward secrecy between sessions.
882 The
883 .B passcred
884 require mechanisms which pass client credentials (and allow
885 mechanisms which can pass credentials to do so).
886 The
887 .B minssf=<factor> 
888 property specifies the minimum acceptable
889 .I security strength factor
890 as an integer approximate to effective key length used for
891 encryption.  0 (zero) implies no protection, 1 implies integrity
892 protection only, 56 allows DES or other weak ciphers, 112
893 allows triple DES and other strong ciphers, 128 allows RC4,
894 Blowfish and other modern strong ciphers.  The default is 0.
895 The
896 .B maxssf=<factor> 
897 property specifies the maximum acceptable
898 .I security strength factor
899 as an integer (see minssf description).  The default is INT_MAX.
900 The
901 .B maxbufsize=<size> 
902 property specifies the maximum security layer receive buffer
903 size allowed.  0 disables security layers.  The default is 65536.
904 .TP
905 .B schemadn <dn>
906 Specify the distinguished name for the subschema subentry that
907 controls the entries on this server.  The default is "cn=Subschema".
908 .TP
909 .B security <factors>
910 Specify a set of factors (separated by white space) to require.
911 An integer value is associated with each factor and is roughly
912 equivalent of the encryption key length to require.  A value
913 of 112 is equivalent to 3DES, 128 to Blowfish, etc..
914 The directive may be specified globally and/or per-database.
915 .B ssf=<n>
916 specifies the overall security strength factor.
917 .B transport=<n>
918 specifies the transport security strength factor.
919 .B tls=<n>
920 specifies the TLS security strength factor.
921 .B sasl=<n>
922 specifies the SASL security strength factor.
923 .B update_ssf=<n>
924 specifies the overall security strength factor to require for
925 directory updates.
926 .B update_transport=<n>
927 specifies the transport security strength factor to require for
928 directory updates.
929 .B update_tls=<n>
930 specifies the TLS security strength factor to require for
931 directory updates.
932 .B update_sasl=<n>
933 specifies the SASL security strength factor to require for
934 directory updates.
935 .B simple_bind=<n>
936 specifies the security strength factor required for
937 .I simple
938 username/password authentication.
939 Note that the
940 .B transport
941 factor is measure of security provided by the underlying transport,
942 e.g. ldapi:// (and eventually IPSEC).  It is not normally used.
943 .TP
944 .B sizelimit {<integer>|unlimited}
945 .TP
946 .B sizelimit size[.{soft|hard|unchecked}]=<integer> [...]
947 Specify the maximum number of entries to return from a search operation.
948 The default size limit is 500.
949 Use
950 .B -1
951 or 
952 .B unlimited
953 to specify no limits.
954 The second format allows a fine grain setting of the size limits.
955 Extra args can be added on the same line.
956 See
957 .BR limits
958 for an explanation of the different flags.
959 .TP
960 .B sockbuf_max_incoming <integer>
961 Specify the maximum incoming LDAP PDU size for anonymous sessions.
962 The default is 262143.
963 .TP
964 .B sockbuf_max_incoming_auth <integer>
965 Specify the maximum incoming LDAP PDU size for authenticated sessions.
966 The default is 4194303.
967 .TP
968 .B srvtab <filename>
969 Specify the srvtab file in which the kerberos keys necessary for
970 authenticating clients using kerberos can be found. This option is only
971 meaningful if you are using Kerberos authentication.
972 .TP
973 .B threads <integer>
974 Specify the maximum size of the primary thread pool.
975 The default is 16.
976 .TP
977 .B timelimit {<integer>|unlimited}
978 .TP
979 .B timelimit time[.{soft|hard}]=<integer> [...]
980 Specify the maximum number of seconds (in real time)
981 .B slapd
982 will spend answering a search request.  The default time limit is 3600.
983 Use
984 .B -1
985 or 
986 .B unlimited
987 to specify no limits.
988 The second format allows a fine grain setting of the time limits.
989 Extra args can be added on the same line.
990 See
991 .BR limits
992 for an explanation of the different flags.
993 .TP
994 .B ucdata-path <path>
995 Specify the path to the directory containing the Unicode character
996 tables. The default path is DATADIR/ucdata.
997 .SH TLS OPTIONS
998 If
999 .B slapd
1000 is built with support for Transport Layer Security, there are more options
1001 you can specify.
1002 .TP
1003 .B TLSCipherSuite <cipher-suite-spec>
1004 Permits configuring what ciphers will be accepted and the preference order.
1005 <cipher-suite-spec> should be a cipher specification for OpenSSL.  Example:
1006
1007 TLSCipherSuite HIGH:MEDIUM:+SSLv2
1008
1009 To check what ciphers a given spec selects, use:
1010
1011 openssl ciphers -v <cipher-suite-spec>
1012 .TP
1013 .B TLSCACertificateFile <filename>
1014 Specifies the file that contains certificates for all of the Certificate
1015 Authorities that
1016 .B slapd
1017 will recognize.
1018 .TP
1019 .B TLSCACertificatePath <path>
1020 Specifies the path of a directory that contains Certificate Authority
1021 certificates in separate individual files. Usually only one of this
1022 or the TLSCACertificateFile is used.
1023 .TP
1024 .B TLSCertificateFile <filename>
1025 Specifies the file that contains the
1026 .B slapd
1027 server certificate.
1028 .TP
1029 .B TLSCertificateKeyFile <filename>
1030 Specifies the file that contains the
1031 .B slapd
1032 server private key that matches the certificate stored in the
1033 .B TLSCertificateFile
1034 file.  Currently, the private key must not be protected with a password, so
1035 it is of critical importance that it is protected carefully. 
1036 .TP
1037 .B TLSRandFile <filename>
1038 Specifies the file to obtain random bits from when /dev/[u]random
1039 is not available.  Generally set to the name of the EGD/PRNGD socket.
1040 The environment variable RANDFILE can also be used to specify the filename.
1041 .TP
1042 .B TLSVerifyClient <level>
1043 Specifies what checks to perform on client certificates in an
1044 incoming TLS session, if any.
1045 The
1046 .B <level>
1047 can be specified as one of the following keywords:
1048 .RS
1049 .TP
1050 .B never
1051 This is the default.
1052 .B slapd
1053 will not ask the client for a certificate.
1054 .TP
1055 .B allow
1056 The client certificate is requested.  If no certificate is provided,
1057 the session proceeds normally.  If a bad certificate is provided,
1058 it will be ignored and the session proceeds normally.
1059 .TP
1060 .B try
1061 The client certificate is requested.  If no certificate is provided,
1062 the session proceeds normally.  If a bad certificate is provided,
1063 the session is immediately terminated.
1064 .TP
1065 .B demand | hard | true
1066 These keywords are all equivalent, for compatibility reasons.
1067 The client certificate is requested.  If no certificate is provided,
1068 or a bad certificate is provided, the session is immediately terminated.
1069
1070 Note that a valid client certificate is required in order to use the
1071 SASL EXTERNAL authentication mechanism with a TLS session.  As such,
1072 a non-default
1073 .B TLSVerifyClient
1074 setting must be chosen to enable SASL EXTERNAL authentication.
1075 .RE
1076 .SH GENERAL BACKEND OPTIONS
1077 Options in this section only apply to the configuration file section
1078 for the specified backend.  They are supported by every
1079 type of backend.
1080 .TP
1081 .B backend <databasetype>
1082 Mark the beginning of a backend definition. <databasetype>
1083 should be one of
1084 .B bdb,
1085 .B dnssrv,
1086 .B ldap,
1087 .B ldbm,
1088 .B meta,
1089 .B monitor,
1090 .B null,
1091 .B passwd,
1092 .B perl,
1093 .B shell,
1094 .B sql,
1095 or
1096 .B tcl,
1097 depending on which backend will serve the database.
1098
1099 .SH GENERAL DATABASE OPTIONS
1100 Options in this section only apply to the configuration file section
1101 for the database in which they are defined.  They are supported by every
1102 type of backend.  Note that the
1103 .B database
1104 and at least one
1105 .B suffix
1106 option are mandatory for each database.
1107 .TP
1108 .B database <databasetype>
1109 Mark the beginning of a new database instance definition. <databasetype>
1110 should be one of
1111 .B bdb,
1112 .B dnssrv,
1113 .B ldap,
1114 .B ldbm,
1115 .B meta,
1116 .B monitor,
1117 .B null,
1118 .B passwd,
1119 .B perl,
1120 .B shell,
1121 .B sql,
1122 or
1123 .B tcl,
1124 depending on which backend will serve the database.
1125 .TP
1126 .B lastmod on | off
1127 Controls whether
1128 .B slapd
1129 will automatically maintain the 
1130 modifiersName, modifyTimestamp, creatorsName, and 
1131 createTimestamp attributes for entries.  By default, lastmod is on.
1132 .TP
1133 .B maxderefdepth <depth>
1134 Specifies the maximum number of aliases to dereference when trying to
1135 resolve an entry, used to avoid infinite alias loops. The default is 1.
1136 .TP
1137 .B overlay <overlay-name>
1138 Add the specified overlay to this database. An overlay is a piece of
1139 code that intercepts database operations in order to extend or change
1140 them. Overlays are pushed onto
1141 a stack over the database, and so they will execute in the reverse
1142 of the order in which they were configured and the database itself
1143 will receive control last of all.
1144 .TP
1145 .B readonly on | off
1146 This option puts the database into "read-only" mode.  Any attempts to 
1147 modify the database will return an "unwilling to perform" error.  By
1148 default, readonly is off.
1149 .HP
1150 .hy 0
1151 .B replica uri=ldap[s]://<hostname>[:port]|host=<hostname>[:port] 
1152 .B [starttls=yes|critical]
1153 .B [suffix=<suffix> [...]]
1154 .B bindmethod=simple|sasl [binddn=<simple DN>] [credentials=<simple password>]
1155 .B [saslmech=<SASL mech>] [secprops=<properties>] [realm=<realm>]
1156 .B [authcId=<authentication ID>] [authzId=<authorization ID>]
1157 .B [attr[!]=<attr list>]
1158 .RS
1159 Specify a replication site for this database.  Refer to the "OpenLDAP 
1160 Administrator's Guide" for detailed information on setting up a replicated
1161 .B slapd
1162 directory service. Zero or more
1163 .B suffix
1164 instances can be used to select the subtrees that will be replicated
1165 (defaults to all the database). 
1166 .B host
1167 is deprecated in favor of the
1168 .B uri
1169 option.
1170 .B uri
1171 allows the replica LDAP server to be specified as an LDAP URI. 
1172 A
1173 .B bindmethod
1174 of
1175 .B simple
1176 requires the options
1177 .B binddn 
1178 and
1179 .B credentials  
1180 and should only be used when adequate security services 
1181 (e.g TLS or IPSEC) are in place. A
1182 .B bindmethod 
1183 of
1184 .B sasl 
1185 requires the option
1186 .B saslmech. 
1187 Specific security properties (as with the
1188 .B sasl-secprops
1189 keyword above) for a SASL bind can be set with the
1190 .B secprops
1191 option. A non-default SASL realm can be set with the
1192 .B realm
1193 option.
1194 If the 
1195 .B mechanism
1196 will use Kerberos, a kerberos instance should be given in 
1197 .B authcId.
1198 An
1199 .B attr list
1200 can be given after the 
1201 .B attr
1202 keyword to allow the selective replication of the listed attributes only;
1203 if the optional 
1204 .B !
1205 mark is used, the list is considered exclusive, i.e. the listed attributes
1206 are not replicated.
1207 If an objectClass is listed, all the related attributes
1208 are (are not) replicated.
1209 .RE
1210 .TP
1211 .B replogfile <filename>
1212 Specify the name of the replication log file to log changes to.  
1213 The replication log is typically written by
1214 .BR slapd (8)
1215 and read by
1216 .BR slurpd (8).
1217 See
1218 .BR slapd.replog (5)
1219 for more information.  The specified file should be located
1220 in a directory with limited read/write/execute access as the replication
1221 logs may contain sensitive information.
1222 .TP
1223 .B rootdn <dn>
1224 Specify the distinguished name that is not subject to access control 
1225 or administrative limit restrictions for operations on this database.
1226 This DN may or may not be associated with an entry.  An empty root
1227 DN (the default) specifies no root access is to be granted.  It is
1228 recommended that the rootdn only be specified when needed (such as
1229 when initially populating a database).  If the rootdn is within
1230 a namingContext (suffix) of the database, a simple bind password
1231 may also be provided using the
1232 .B rootpw
1233 directive.
1234 .TP
1235 .B rootpw <password>
1236 Specify a password (or hash of the password) for the rootdn.  The
1237 password can only be set if the rootdn is within the namingContext
1238 (suffix) of the database.
1239 This option accepts all RFC 2307 userPassword formats known to
1240 the server (see 
1241 .B password-hash
1242 description) as well as cleartext.
1243 .BR slappasswd (8) 
1244 may be used to generate a hash of a password.  Cleartext
1245 and \fB{CRYPT}\fP passwords are not recommended.  If empty
1246 (the default), authentication of the root DN is by other means
1247 (e.g. SASL).  Use of SASL is encouraged.
1248 .TP
1249 .B suffix <dn suffix>
1250 Specify the DN suffix of queries that will be passed to this 
1251 backend database.  Multiple suffix lines can be given and at least one is 
1252 required for each database definition.
1253 If the suffix of one database is "inside" that of another, the database
1254 with the inner suffix must come first in the configuration file.
1255 .TP
1256 .B subordinate
1257 Specify that the current backend database is a subordinate of another
1258 backend database. A subordinate database may have only one suffix. This
1259 option may be used to glue multiple databases into a single namingContext.
1260 If the suffix of the current database is within the namingContext of a
1261 superior database, searches against the superior database will be
1262 propagated to the subordinate as well. All of the databases
1263 associated with a single namingContext should have identical rootdns.
1264 Behavior of other LDAP operations is unaffected by this setting. In
1265 particular, it is not possible to use moddn to move an entry from
1266 one subordinate to another subordinate within the namingContext.
1267 .HP
1268 .hy 0
1269 .B syncrepl rid=<replica ID>
1270 .B provider=ldap[s]://<hostname>[:port]
1271 .B [type=refreshOnly|refreshAndPersist]
1272 .B [interval=dd:hh:mm:ss]
1273 .B [searchbase=<base DN>]
1274 .B [filter=<filter str>]
1275 .B [scope=sub|one|base]
1276 .B [attrs=<attr list>]
1277 .B [attrsonly]
1278 .B [sizelimit=<limit>]
1279 .B [timelimit=<limit>]
1280 .B [schemachecking=on|off]
1281 .B [updatedn=<dn>]
1282 .B [bindmethod=simple|sasl]
1283 .B [binddn=<dn>]
1284 .B [saslmech=<mech>]
1285 .B [authcid=<identity>]
1286 .B [authzid=<identity>]
1287 .B [credentials=<passwd>]
1288 .B [realm=<realm>]
1289 .B [secprops=<properties>]
1290 .RS
1291 Specify the current database as a replica which is kept up-to-date with the 
1292 master content by establishing the current
1293 .BR slapd (8)
1294 as a replication consumer site running a
1295 .B syncrepl
1296 replication engine.
1297 The replica content is kept synchronized to the master content using
1298 the LDAP Content Synchronization protocol. Refer to the
1299 "OpenLDAP Administrator's Guide" for detailed information on
1300 setting up a replicated
1301 .B slapd
1302 directory service using the 
1303 .B syncrepl
1304 replication engine.
1305 .B rid
1306 identifies the current
1307 .B syncrepl
1308 directive within the replication consumer site.
1309 It is a non-negative integer having no more than three digits.
1310 .B provider
1311 specifies the replication provider site containing the master content
1312 as an LDAP URI. If <port> is not given, the standard LDAP port number
1313 (389 or 636) is used. The content of the
1314 .B syncrepl
1315 replica is defined using a search
1316 specification as its result set. The consumer
1317 .B slapd
1318 will send search requests to the provider
1319 .B slapd
1320 according to the search specification. The search specification includes
1321 .B searchbase, scope, filter, attrs, attrsonly, sizelimit,
1322 and
1323 .B timelimit
1324 parameters as in the normal search specification.
1325 The search specification for the LDAP Content Synchronization operation
1326 has the same value syntax and the same default values as in the
1327 .BR ldapsearch (1)
1328 client search tool.
1329 The LDAP Content Synchronization protocol has two operation types.
1330 In the
1331 .B refreshOnly
1332 operation, the next synchronization search operation
1333 is periodically rescheduled at an interval time (specified by 
1334 .B interval
1335 parameter; 1 day by default)
1336 after each synchronization operation finishes.
1337 In the
1338 .B refreshAndPersist
1339 operation, a synchronization search remains persistent in the provider slapd.
1340 Further updates to the master replica will generate
1341 .B searchResultEntry
1342 to the consumer slapd as the search responses to the persistent
1343 synchronization search. The schema checking can be enforced at the LDAP Sync
1344 consumer site by turning on the
1345 .B schemachecking
1346 parameter. The default is off.
1347 The
1348 .B updatedn
1349 parameter specifies the DN in the consumer site
1350 which is allowed to make changes to the replica.
1351 The DN should have read/write access to the replica database.
1352 Generally, this DN
1353 .I should not
1354 be the same as the
1355 .B rootdn
1356 of the master database.
1357 A
1358 .B bindmethod
1359 of 
1360 .B simple
1361 requires the options 
1362 .B binddn
1363 and 
1364 .B credentials
1365 and should only be used when adequate security services
1366 (e.g. TLS or IPSEC) are in place.
1367 A
1368 .B bindmethod
1369 of
1370 .B sasl
1371 requires the option
1372 .B saslmech.
1373 Depending on the mechanism, an authentication identity and/or
1374 credentials can be specified using
1375 .B authcid
1376 and
1377 .B credentials.
1378 The
1379 .B authzid
1380 parameter may be used to specify an authorization identity.
1381 Specific security properties (as with the
1382 .B sasl-secprops
1383 keyword above) for a SASL bind can be set with the
1384 .B secprops
1385 option. A non default SASL realm can be set with the
1386 .B realm 
1387 option.
1388 .RE
1389 .TP
1390 .B updatedn <dn>
1391 This option is only applicable in a slave
1392 database updated using
1393 .BR slurpd(8). 
1394 It specifies the DN permitted to update (subject to access controls)
1395 the replica (typically, this is the DN
1396 .BR slurpd (8)
1397 binds to update the replica).  Generally, this DN
1398 .I should not
1399 be the same as the
1400 .B rootdn 
1401 used at the master.
1402 .TP
1403 .B updateref <url>
1404 Specify the referral to pass back when
1405 .BR slapd (8)
1406 is asked to modify a replicated local database.
1407 If specified multiple times, each url is provided.
1408
1409 .SH DATABASE-SPECIFIC OPTIONS
1410 Each database may allow specific configuration options; they are
1411 documented separately in the backends' manual pages.
1412 .SH BACKENDS
1413 The following backends can be compiled into slapd.
1414 They are documented in the
1415 .BR slapd-<backend> (5)
1416 manual pages.
1417 .TP
1418 .B bdb
1419 This is the recommended backend for a normal slapd database.
1420 However, it takes more care than with the LDBM backend to configure
1421 it properly.
1422 It uses the Sleepycat Berkeley DB (BDB) package to store data.
1423 .TP
1424 .B ldbm
1425 This is the database backend which is easiest to configure.
1426 However, it does not offer the data durability features of the BDB
1427 backend.
1428 It uses Berkeley DB or GDBM to store data.
1429 .TP
1430 .B dnssrv
1431 This backend is experimental.
1432 It serves up referrals based upon SRV resource records held in the
1433 Domain Name System.
1434 .TP
1435 .B ldap
1436 This backend acts as a proxy to forward incoming requests to another
1437 LDAP server.
1438 .TP
1439 .B meta
1440 This backend performs basic LDAP proxying with respect to a set of
1441 remote LDAP servers. It is an enhancement of the ldap backend. The
1442 proxy cache extension of meta backend provides answering of search
1443 requests from the proxy using results of previously cached requests.
1444 .TP
1445 .B monitor
1446 This backend provides information about the running status of the slapd
1447 daemon.
1448 .TP
1449 .B null
1450 Operations in this backend succeed but do nothing.
1451 .TP
1452 .B passwd
1453 This backend is provided for demonstration purposes only.
1454 It serves up user account information from the system
1455 .BR passwd (5)
1456 file.
1457 .TP
1458 .B perl
1459 This backend embeds a
1460 .BR perl (1)
1461 interpreter into slapd.
1462 It runs Perl subroutines to implement LDAP operations.
1463 .TP
1464 .B shell
1465 This backend executes external programs to implement LDAP operations.
1466 It is is primarily intended to be used in prototypes.
1467 .TP
1468 .B sql
1469 This backend is experimental.
1470 It services LDAP requests from an SQL database.
1471 .TP
1472 .B tcl
1473 This backend is experimental.
1474 It embeds a
1475 .BR Tcl (3tcl)
1476 interpreter into slapd.
1477 It runs Tcl commands to implement LDAP operations.
1478 .SH EXAMPLES
1479 .LP
1480 Here is a short example of a configuration file:
1481 .LP
1482 .RS
1483 .nf
1484 include   SYSCONFDIR/schema/core.schema
1485 pidfile   LOCALSTATEDIR/slapd.pid
1486
1487 # Subtypes of "name" (e.g. "cn" and "ou") with the
1488 # option ";x-hidden" can be searched for/compared,
1489 # but are not shown.  See \fBslapd.access\fP(5).
1490 attributeoptions x-hidden lang-
1491 access to attr=name;x-hidden by * =cs
1492
1493 database  bdb
1494 suffix    "dc=our-domain,dc=com"
1495 # The database directory MUST exist prior to
1496 # running slapd AND should only be accessible
1497 # by the slapd/tools. Mode 0700 recommended.
1498 directory LOCALSTATEDIR/openldap-data
1499 # Indices to maintain
1500 index     objectClass  eq
1501 index     cn,sn,mail   pres,eq,approx,sub
1502
1503 # We serve small clients that do not handle referrals,
1504 # so handle remote lookups on their behalf.
1505 database  ldap
1506 suffix    ""
1507 uri       ldap://ldap.some-server.com/
1508 lastmod   off
1509 .fi
1510 .RE
1511 .LP
1512 "OpenLDAP Administrator's Guide" contains a longer annotated
1513 example of a configuration file.
1514 The original ETCDIR/slapd.conf is another example.
1515 .SH FILES
1516 .TP
1517 ETCDIR/slapd.conf
1518 default slapd configuration file
1519 .SH SEE ALSO
1520 .BR ldap (3),
1521 .BR slapd-bdb (5),
1522 .BR slapd-dnssrv (5),
1523 .BR slapd-ldap (5),
1524 .BR slapd-ldbm (5),
1525 .BR slapd-meta (5),
1526 .BR slapd-monitor (5),
1527 .BR slapd-null (5),
1528 .BR slapd-passwd (5),
1529 .BR slapd-perl (5),
1530 .BR slapd-shell (5),
1531 .BR slapd-sql (5),
1532 .BR slapd-tcl (5),
1533 .BR slapd.access (5),
1534 .BR slapd.plugin (5),
1535 .BR slapd.replog (5),
1536 .BR slapd (8),
1537 .BR slapadd (8),
1538 .BR slapcat (8),
1539 .BR slapindex (8),
1540 .BR slappasswd (8),
1541 .BR slurpd (8),
1542 .LP
1543 "OpenLDAP Administrator's Guide" (http://www.OpenLDAP.org/doc/admin/)
1544 .SH ACKNOWLEDGEMENTS
1545 .B OpenLDAP
1546 is developed and maintained by The OpenLDAP Project (http://www.openldap.org/).
1547 .B OpenLDAP
1548 is derived from University of Michigan LDAP 3.3 Release.