]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapd.conf.5
Clarify LDIF
[openldap] / doc / man / man5 / slapd.conf.5
1 .TH SLAPD.CONF 5 "20 August 2000" "OpenLDAP LDVERSION"
2 .\" $OpenLDAP$
3 .\" Copyright 1998-2000 The OpenLDAP Foundation All Rights Reserved.
4 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
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).  Blank lines and comment lines beginning with a `#'
49 character are ignored. If a line begins with white space, it is
50 considered a continuation of the previous line.
51 .LP
52 Arguments on configuration lines are separated by white space. If an
53 argument contains white space, the argument should be enclosed in
54 double quotes.  If an argument contains a double quote (`"') or a
55 backslash character (`\\'), the character should be preceded by a
56 backslash character.
57 .LP
58 The specific configuration options available are discussed below in the
59 Global Configuration Options, General Backend Options, LDBM
60 Backend-Specific Options, Shell Backend-Specific Options, and Password
61 Backend-Specific Options sections.  Refer to the "OpenLDAP
62 Administrator's Guide" for more details on the slapd configuration
63 file.
64 .SH GLOBAL CONFIGURATION OPTIONS
65 Options described in this section apply to all backends, unless specifically 
66 overridden in a backend definition. Arguments that should be replaced by 
67 actual text are shown in brackets <>.
68 .TP
69 .B access to <what> [ by <who> <access> <control> ]+
70 Grant access (specified by <access>) to a set of entries and/or
71 attributes (specified by <what>) by one or more requestors (specified
72 by <who>).
73 See the "OpenLDAP's Administrator's Guide" for details.
74 .TP
75 .B argsfile <filename>
76 The ( absolute ) name of a file that will hold the 
77 .B slapd
78 server's command line options
79 if started without the debugging command line option.
80 .HP
81 .hy 0
82 .B attributetype (\ <oid> [NAME\ <name>] [OBSOLETE]\
83  [DESC\ <description>]\
84  [SUP\ <oid>] [EQUALITY\ <oid>] [ORDERING\ <oid>]\
85  [SUBSTR\ <oid>] [SYNTAX\ <oidlen>] [SINGLE\-VALUE] [COLLECTIVE]\
86  [NO\-USER\-MODIFICATION] [USAGE\ <attributeUsage>]\ )
87 .RS
88 Specify an attribute type using the LDAPv3 syntax defined in RFC 2252.
89 The slapd parser extends the RFC 2252 definition by allowing string
90 forms as well as numeric OIDs to be used for the attribute OID and
91 attribute syntax OID.
92 (See the
93 .B objectidentifier
94 description.) Currently the syntax name parser is case-sensitive.
95 The known syntax names are:
96 .RS
97 .RS
98 .PD 0
99 AttributeTypeDescription Audio Binary BitString Certificate CertificateList
100 CertificatePair DN DeliveryMethod DirectoryString DITContentRuleDescription
101 DITStructureRuleDescription EnhancedGuide FacsimileTelephoneNumber
102 GeneralizedTime Guide IA5String Integer MatchingRuleDescription
103 MatchingRuleUseDescription MailPreference NameAndOptionalUUID
104 NameFormDescription NumericString ObjectClassDescription OID
105 OtherMailbox OctetString PostalAddress ProtocolInformation
106 PresentationAddress PrintableString SupportedAlgorithm TelephoneNumber
107 TeletexTerminalIdentifier TelexNumber UTCTime LDAPSyntaxDescription
108 SubstringAssertion NISnetgrouptriple Bootparameter
109 .PD
110 .RE
111 .RE
112 .RE
113 .TP
114 .B concurrency <integer>
115 Specify a desired level of concurrency.  Provided to the underlying
116 thread system as a hint.  The default is not to provdide any hint.
117 .HP
118 .B defaultaccess { none | auth | compare | search | read | write }
119 .RS
120 Specify the default access level to grant requestors when
121 no access directives were provided for the database.
122 The default behavior is to grant 'read' access.  It is
123 recommended that
124 .B access
125 directives be used instead.
126 .RE
127 .TP
128 .B idletimeout <integer>
129 Specify the number of seconds to wait before forcibly closing
130 an idle client connections.  A idletimeout of 0 disables this
131 feature.  The default is 0.
132 .TP
133 .B include <filename>
134 Read additional configuration information from the given file before
135 continuing with the next line of the current file.
136 .TP
137 .B loglevel <integer>
138 Specify the level at which debugging statements and operation 
139 statistics should be syslogged (currently logged to the
140 .BR syslogd (8) 
141 LOG_LOCAL4 facility).  Log levels are additive, and available levels
142 are:
143 .RS
144 .RS
145 .PD 0
146 .TP
147 .B 1
148 trace function calls
149 .TP
150 .B 2
151 debug packet handling
152 .TP
153 .B 4
154 heavy trace debugging
155 .TP
156 .B 8
157 connection management
158 .TP
159 .B 16
160 print out packets sent and received
161 .TP
162 .B 32
163 search filter processing
164 .TP
165 .B 64
166 configuration file processing
167 .TP
168 .B 128
169 access control list processing
170 .TP
171 .B 256
172 stats log connections/operations/results
173 .TP
174 .B 512
175 stats log entries sent
176 .TP
177 .B 1024
178 print communication with shell backends
179 .TP
180 .B 2048
181 entry parsing
182 .PD
183 .RE
184 .RE
185 .HP
186 .B objectclass ( <oid> [NAME <name>] [DESC <description] [OBSOLETE]\
187  [SUP <oids>] [{ ABSTRACT | STRUCTURAL | AUXILIARY }] [MUST <oids>]\
188  [MAY <oids>] )
189 .RS
190 Specify an objectclass using the LDAPv3 syntax defined in RFC 2252.
191 The slapd parser extends the RFC 2252 definition by allowing string
192 forms as well as numeric OIDs to be used for the object class OID.
193 (See the
194 .B
195 objectidentifier
196 description.)  Object classes are "STRUCTURAL" by default.
197 .RE
198 .TP
199 .B objectidentifier <name> { <oid> | <name>[:<suffix>] }
200 Define a string name that equates to the given OID. The string can be used
201 in place of the numeric OID in objectclass and attribute definitions. The
202 name can also be used with a suffix of the form ":xx" in which case the
203 value "oid.xx" will be used.
204 .TP
205 .B pidfile <filename>
206 The ( absolute ) name of a file that will hold the 
207 .B slapd
208 server's process ID ( see
209 .BR getpid (2)
210 ) if started without the debugging command line option.
211 .TP
212 .B password-hash <hash>
213 The <hash> to use for userPassword generation.  One of
214 .BR {SSHA} ,
215 .BR {SHA} ,
216 .BR {SMD5} ,
217 .BR {MD5} ,
218 .BR {CRYPT} ,
219 .BR {KERBEROS} ,
220 .BR {SASL} ,
221 and
222 .BR {UNIX} .
223 The default is
224 .BR {SSHA} .
225 .TP
226 .B referral <url>
227 Specify the referral to pass back when
228 .BR slapd (8)
229 cannot find a local database to handle a request.
230 If specified multiple times, each url is provided.
231 .TP
232 .B sasl-realm <string>
233 Used to specify Cyrus SASL realm.
234 .TP
235 .B sasl-secprops <string>
236 Used to specify Cyrus SASL security properties.
237 .TP
238 .B schemacheck { on | off }
239 Turn schema checking on or off. The default is on.
240 .TP
241 .B sizelimit <integer>
242 Specify the maximum number of entries to return from a search operation.
243 The default size limit is 500.
244 .TP
245 .B srvtab <filename>
246 Specify the srvtab file in which the kerberos keys necessary for
247 authenticating clients using kerberos can be found. This option is only
248 meaningful if you are using Kerberos authentication.
249 .TP
250 .B timelimit <integer>
251 Specify the maximum number of seconds (in real time)
252 .B slapd
253 will spend answering a search request.  The default time limit is 3600.
254 .SH TLS OPTIONS
255 If
256 .B slapd
257 is build with support for Transport Layer Security, there are more options
258 you can specify.
259 .TP
260 .B TLSCipherSuite <cipher-suite-spec>
261 Permits configuring what ciphers will be accepted and the preference order.
262 <cipher-suite-spec> should be a cipher specification for OpenSSL.  Example:
263
264 TLSCipherSuite HIGH:MEDIUM:+SSLv2
265
266 To check what ciphers a given spec selects, use:
267
268 openssl ciphers -v <cipher-suite-spec>
269 .TP
270 .B TLSCertificateFile <filename>
271 Specifies the file that contains the
272 .B slapd
273 server certificate.
274 .TP
275 .B TLSCertificateKeyFile <filename>
276 Specifies the file that contains the
277 .B slapd
278 server private key that matches the certificate stored in the
279 .B TLSCertificateFile
280 file.  Currently, the private key must not be protected with a password, so
281 it is of critical importance that it is protected carefully. 
282 .SH GENERAL BACKEND OPTIONS
283 Options in this section only apply to the configuration file section
284 for the backend in which they are defined.  They are supported by every
285 type of backend.
286 .TP
287 .B database <databasetype>
288 Mark the beginning of a new database instance definition. <databasetype>
289 should be one of
290 .B ldbm,
291 .B shell,
292 or
293 .B passwd
294 depending on which backend will serve the database.
295 .TP
296 .B lastmod on | off
297 Controls whether
298 .B slapd
299 will automatically maintain the 
300 modifiersName, modifyTimestamp, creatorsName, and 
301 createTimestamp attributes for entries.  By default, lastmod is on.
302 .TP
303 .B readonly on | off
304 This option puts the database into "read-only" mode.  Any attempts to 
305 modify the database will return an "unwilling to perform" error.  By
306 default, readonly is off.
307 .HP
308 .B replica host=<hostname>[:port] bindmethod=simple|sasl
309 .B [binddn=<simple DN>] [credentials=<simple password>]
310 .B [saslmech=<SASL mech>] [authcId=<authentication ID>]
311 .RS
312 Specify a replication site for this database.  Refer to the "OpenLDAP 
313 Administrator's Guide" for detailed information on setting up a replicated
314 .B slapd
315 directory service. A
316 .B bindmethod
317 of
318 .B simple
319 requires the options
320 .B binddn 
321 and
322 .B credentials  
323 and should only be used when adequate security services 
324 (e.g TLS or IPSEC) are in place. A
325 .B bindmethod 
326 of
327 .B sasl 
328 requires the option
329 .B saslmech. 
330 If the 
331 .B mechanism
332 will use Kerberos, a kerberos instance should be given in 
333 .B authcId.
334 .RE
335 .TP
336 .B replogfile <filename>
337 Specify the name of the replication log file to log changes to.  
338 The replication log is typically written by
339 .BR slapd (8)
340 and read by
341 .BR slurpd (8).
342 See
343 .BR slapd.replog (5)
344 for more information.
345 .TP
346 .B rootdn <dn>
347 Specify the distinguished name that is not subject to access control 
348 or administrative limit restrictions for operations on this database.
349 This DN may or may not be associated with an entry.  An empty root
350 DN, the default, specifies no root access is to be granted.
351 .TP
352 .B rootpw <password>
353 Specify a password (or hash of the password) for the rootdn.
354 This option accepts all RFC 2307 userPassword formats known to
355 the server (see 
356 .B password-hash
357 desription) as well as cleartext.
358 .BR slappasswd (8) 
359 may be used to generate a hash of a password.  Cleartext
360 and \fB{CRYPT}\fP passwords are not recommended.  The default
361 is empty imply authentication of the root DN is by other means
362 (e.g. SASL).  Use of SASL is encouraged.
363 .TP
364 .B suffix <dn suffix>
365 Specify the DN suffix of queries that will be passed to this 
366 backend database.  Multiple suffix lines can be given and at least one is 
367 required for each database definition.
368 .TP
369 .B updatedn <dn>
370 This option is only applicable in a slave
371 .B slapd.
372 It specifies the DN allowed to make changes to the replica (typically,
373 this is the DN
374 .BR slurpd (8)
375 binds as when making changes to the replica).
376 .TP
377 .B updateref <url>
378 Specify the referral to pass back when
379 .BR slapd (8)
380 is asked to modify a replicated local database.
381 If specified multiple times, each url is provided.
382 .SH LDBM BACKEND-SPECIFIC OPTIONS
383 Options in this category only apply to the LDBM backend database. That is,
384 they must follow a "database ldbm" line and come before any subsequent
385 "database" lines.  The LDBM backend is a high-performance database that
386 makes extensive use of indexing and caching to speed data access. 
387 .TP
388 .B cachesize <integer>
389 Specify the size in entries of the in-memory cache maintained 
390 by the LDBM backend database instance.  The default is 1000 entries.
391 .TP
392 .B dbcachesize <integer>
393 Specify the size in bytes of the in-memory cache associated 
394 with each open index file. If not supported by the underlying database 
395 method, this option is ignored without comment.  The default is 100000 bytes.
396 .TP
397 .B dbnolocking
398 Specify that no database locking should be performed.  
399 Enabling this option may improve performance at the expense of data security.
400 .B dbnosync
401 Specify that on-disk database contents should not be immediately
402 synchronized with in memory changes.  Enabling this option may improve
403 performance at the expense of data security.
404 .TP
405 .B directory <directory>
406 Specify the directory where the LDBM files containing this database and
407 associated indexes live.  A separate directory must be specified for
408 each database.  The default is
409 .BR LOCALSTATEDIR/openldap-ldbm .
410 .TP
411 .B
412 index { <attrlist> | default } [ pres,eq,approx,sub,none ]
413 Specify the indexes to maintain for the given attribute. If only 
414 an <attr> is given, the indices specified for \fBdefault\fR
415 are maintained.
416 .TP
417 .B mode <integer>
418 Specify the file protection mode that newly created database 
419 index files should have.  The default is 0600.
420 .SH SHELL BACKEND-SPECIFIC OPTIONS
421 Options in this category only apply to the SHELL backend database. That is,
422 they must follow a "database shell" line and come before any subsequent
423 "database" lines.  The Shell backend executes external programs to
424 implement operations, and is designed to make it easy to tie an existing
425 database to the
426 .B slapd
427 front-end.
428 .TP
429 .B bind <pathname>
430 .TP
431 .B unbind <pathname>
432 .TP
433 .B search <pathname>
434 .TP
435 .B compare <pathname>
436 .TP
437 .B modify <pathname>
438 .TP
439 .B modrdn <pathname>
440 .TP
441 .B add <pathname>
442 .TP
443 .B delete <pathname>
444 .TP
445 .B abandon <pathname>
446 These options specify the pathname of the command to execute in response 
447 to the given LDAP operation.
448 .LP
449 Note that you need only supply configuration lines for those commands you
450 want the backend to handle. Operations for which a command is not
451 supplied will be refused with an "unwilling to perform" error.
452 .SH PASSWORD BACKEND-SPECIFIC OPTIONS
453 Options in this category only apply to the PASSWD backend database.
454 That is, they must follow a "database passwd" line and come before any
455 subsequent "database" lines.  The PASSWD database serves up the user
456 account information listed in the system
457 .BR passwd (5)
458 file.
459 .TP
460 .B file <filename>
461 Specifies an alternate passwd file to use.  The default is
462 .B /etc/passwd.
463 .SH EXAMPLE
464 "OpenLDAP Administrator's Guide" contains an annotated
465 example of a configuration file.
466 .SH FILES
467 ETCDIR/slapd.conf
468 .SH SEE ALSO
469 .BR ldap (3),
470 .BR slapd.replog (5),
471 .BR locale (5),
472 .BR passwd (5),
473 .BR slapd (8),
474 .BR slapadd (8),
475 .BR slapcat (8),
476 .BR slapindex (8),
477 .BR slappassword (8),
478 .BR slurpd (8),
479 .LP
480 "OpenLDAP Administrator's Guide"
481 .SH ACKNOWLEDGEMENTS
482 .B      OpenLDAP
483 is developed and maintained by The OpenLDAP Project (http://www.openldap.org/).
484 .B      OpenLDAP
485 is derived from University of Michigan LDAP 3.3 Release.