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