]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapd.conf.5
Import experimental referral implementation from OPENLDAP_DEVEL_REFERRALS.
[openldap] / doc / man / man5 / slapd.conf.5
1 .TH SLAPD.CONF 5 "20 January 1999" "OpenLDAP LDVERSION"
2 .SH NAME
3 slapd.conf \- configuration file for slapd, the stand-alone LDAP daemon
4 .SH SYNOPSIS
5 ETCDIR/slapd.conf
6 .SH DESCRIPTION
7 The file
8 .B ETCDIR/slapd.conf
9 contains configuration information for the
10 .BR slapd (8)
11 daemon.  This configuration file is also used by the
12 .BR slurpd (8)
13 replication daemon and by the LDBM indexing utilities
14 .BR ldif2ldbm (8),
15 .BR ldif2index (8),
16 .BR ldif2id2entry (8),
17 and
18 .BR ldif2id2children (8).
19 .LP
20 The
21 .B slapd.conf
22 file consists of a series of global configuration options that apply to
23 .B slapd
24 as a whole (including all backends), followed by zero or more database
25 backend definitions that contain information specific to a backend
26 instance.
27 .LP
28 The general format of
29 .B slapd.conf
30 is as follows:
31 .LP
32 .nf
33     # comment - these options apply to every database
34     <global configuration options>
35     # first database definition & configuration options
36     database    <backend 1 type>
37     <configuration options specific to backend 1>
38     # subsequent database definitions & configuration options
39     ...
40 .fi
41 .LP
42 As many backend-specific sections as desired may be included.  Global
43 options can be overridden in a backend (for options that appear more
44 than once, the last appearance in the
45 .B slapd.conf
46 file is used).  Blank lines and comment lines beginning with a `#'
47 character are ignored. If a line begins with white space, it is
48 considered a continuation of the previous line.
49 .LP
50 Arguments on configuration lines are separated by white space. If an
51 argument contains white space, the argument should be enclosed in
52 double quotes.  If an argument contains a double quote (`"') or a
53 backslash character (`\\'), the character should be preceded by a
54 backslash character.
55 .LP
56 The specific configuration options available are discussed below in the
57 Global Configuration Options, General Backend Options, LDBM
58 Backend-Specific Options, Shell Backend-Specific Options, and Password
59 Backend-Specific Options sections.  Refer to "The SLAPD and SLURPD
60 Administrator's Guide" for more details on the slapd configuration
61 file.
62 .SH GLOBAL CONFIGURATION OPTIONS
63 Options described in this section apply to all backends, unless specifically 
64 overridden in a backend definition. Arguments that should be replaced by 
65 actual text are shown in brackets <>.
66 .TP
67 .B
68 access to <what> [ by <who> <accesslevel> ]+
69 Grant access (specified by <accesslevel>) to a set of entries and/or
70 attributes (specified by <what>) by one or more requestors (specified
71 by <who>).  Refer to "The SLAPD and SLURPD Administrator's Guide" for
72 information on using the
73 .B slapd
74 access-control mechanisms.
75 .TP
76 .B
77 attribute <name> [<name2>] { bin | ces | cis | tel | dn }
78 Associate a syntax with an attribute name. By default, an 
79 attribute is assumed to have syntax
80 .BR cis .
81 An optional alternate name can be 
82 given for an attribute. The possible syntaxes and their meanings are:
83 .RS
84 .RS
85 .PD 0
86 .TP
87 .B bin
88 binary
89 .TP
90 .B ces
91 case exact string
92 .TP
93 .B cis
94 case ignore string
95 .TP
96 .B tel
97 telephone number string
98 .TP
99 .B dn
100 distinguished name
101 .PD
102 .RE
103 .RE
104 .TP
105 .B
106 defaultaccess [self]{ none | compare | search | read | write }
107 Specify the default access to grant requestors not matched by 
108 any other access line.  The default behavior is to grant read access.
109 .TP
110 .B idletimeout <integer>
111 Specify the number of seconds to wait before forcibly closing
112 an idle client connections.  A idletimeout of 0 disables this
113 feature.  The default is 0.
114 .TP
115 .B include <filename>
116 Read additional configuration information from the given file before
117 continuing with the next line of the current file.
118 .TP
119 .B pidfile <filename>
120 The ( absolute ) name of a file that will hold the 
121 .B slapd
122 server's process ID ( see
123 .BR getpid (2)
124 ) if started without the debugging command line option.
125 .TP
126 .B argsfile <filename>
127 The ( absolute ) name of a file that will hold the 
128 .B slapd
129 server's command line options
130 if started without the debugging command line option.
131 .TP
132 .B
133 locale { <locale-name> | on | off }
134 Obey <locale-name>'s character classification and case conversion; i.e. the
135 .BR locale (5)
136 LC_CTYPE category.  See
137 .BR locale (5)
138 for details about locales.  "on" takes the locale from the environment,
139 typically $LANG or $LC_CTYPE, and will only work properly if slapd will
140 run with the same environment variables as when the database was
141 generated.  "off" (the default setting) resets to the initial "C" locale.
142 .TP
143 .B loglevel <integer>
144 Specify the level at which debugging statements and operation 
145 statistics should be syslogged (currently logged to the
146 .BR syslogd (8) 
147 LOG_LOCAL4 facility).  Log levels are additive, and available levels
148 are:
149 .RS
150 .RS
151 .PD 0
152 .TP
153 .B 1
154 trace function calls
155 .TP
156 .B 2
157 debug packet handling
158 .TP
159 .B 4
160 heavy trace debugging
161 .TP
162 .B 8
163 connection management
164 .TP
165 .B 16
166 print out packets sent and received
167 .TP
168 .B 32
169 search filter processing
170 .TP
171 .B 64
172 configuration file processing
173 .TP
174 .B 128
175 access control list processing
176 .TP
177 .B 256
178 stats log connections/operations/results
179 .TP
180 .B 512
181 stats log entries sent
182 .TP
183 .B 1024
184 print communication with shell backends
185 .TP
186 .B 2048
187 entry parsing
188 .PD
189 .RE
190 .RE
191 .TP
192 .B
193 objectclass <name> requires <attrs> allows <attrs>
194 Define the schema rules for the object class named <name>.  These are
195 used in conjunction with the schemacheck option.
196 .TP
197 .B referral <url>
198 Specify the referral to pass back when
199 .BR slapd (8)
200 cannot find a local database to handle a request.
201 If specified multiple times, each url is provided.
202 .TP
203 .B schemacheck { on | off }
204 Turn schema checking on or off. The default is on.
205 .TP
206 .B sizelimit <integer>
207 Specify the maximum number of entries to return from a search operation.
208 The default size limit is 500.
209 .TP
210 .B srvtab <filename>
211 Specify the srvtab file in which the kerberos keys necessary for
212 authenticating clients using kerberos can be found. This option is only
213 meaningful if you are using Kerberos authentication.
214 .TP
215 .B timelimit <integer>
216 Specify the maximum number of seconds (in real time)
217 .B slapd
218 will spend answering a search request.  The default time limit is 3600.
219 .SH GENERAL BACKEND OPTIONS
220 Options in this section only apply to the configuration file section
221 for the backend in which they are defined.  They are supported by every
222 type of backend.
223 .TP
224 .B database <databasetype>
225 Mark the beginning of a new database instance definition. <databasetype>
226 should be one of
227 .B ldbm,
228 .B shell,
229 or
230 .B passwd
231 depending on which backend will serve the database.
232 .TP
233 .B lastmod on | off
234 Controls whether
235 .B slapd
236 will automatically maintain the 
237 modifiersName, modifyTimestamp, creatorsName, and 
238 createTimestamp attributes for entries.  By default, lastmod is off.
239 .TP
240 .B readonly on | off
241 This option puts the database into "read-only" mode.  Any attempts to 
242 modify the database will return an "unwilling to perform" error.  By
243 default, readonly is off.
244 .TP
245 .B
246 replica host=<hostname>[:port] "binddn=<DN>" bindmethod=simple |
247 .B
248 kerberos [credentials=<password>] [srvtab=<filename>]
249 .br
250 Specify a replication site for this database.  Refer to "The SLAPD and
251 SLURPD Administrator's Guide" for detailed information on setting up
252 a replicated
253 .B slapd
254 directory service.
255 .TP
256 .B replogfile <filename>
257 Specify the name of the replication log file to log changes to.  
258 The replication log is typically written by
259 .BR slapd (8)
260 and read by
261 .BR slurpd (8).
262 See
263 .BR slapd.replog (5)
264 for more information.
265 .TP
266 .B rootdn <dn>
267 Specify the DN of an entry that is not subject to access control 
268 or administrative limit restrictions for operations on this database.
269 .TP
270 .B rootpw <password>
271 Specify a password (or hash of the password) for the rootdn.
272 This option accepts all password formats known to the server
273 including \fB{SHA}\fP, \fB{MD5}\fP, \fB{CRYPT}\fP, and cleartext.  
274 Cleartext passwords are not recommended.
275 .TP
276 .B suffix <dn suffix>
277 Specify the DN suffix of queries that will be passed to this 
278 backend database.  Multiple suffix lines can be given and at least one is 
279 required for each database definition.
280 .TP
281 .B updatedn <dn>
282 This option is only applicable in a slave
283 .B slapd.
284 It specifies the DN allowed to make changes to the replica (typically,
285 this is the DN
286 .BR slurpd (8)
287 binds as when making changes to the replica).
288 .TP
289 .B updateref <url>
290 Specify the referral to pass back when
291 .BR slapd (8)
292 is asked to modify a replicated local database.
293 If specified multiple times, each url is provided.
294 .SH LDBM BACKEND-SPECIFIC OPTIONS
295 Options in this category only apply to the LDBM backend database. That is,
296 they must follow a "database ldbm" line and come before any subsequent
297 "database" lines.  The LDBM backend is a high-performance database that
298 makes extensive use of indexing and caching to speed data access. 
299 .TP
300 .B cachesize <integer>
301 Specify the size in entries of the in-memory cache maintained 
302 by the LDBM backend database instance.  The default is 1000 entries.
303 .TP
304 .B dbcachesize <integer>
305 Specify the size in bytes of the in-memory cache associated 
306 with each open index file. If not supported by the underlying database 
307 method, this option is ignored without comment.  The default is 100000 bytes.
308 .TP
309 .B dbcachenowsync
310 Specify that database writes should not be immediately synchronized
311 with in memory changes.  Enabling this option may improve performance
312 at the expense of data security.
313 .TP
314 .B directory <directory>
315 Specify the directory where the LDBM files containing the database and
316 associated indexes live.  The default is
317 .B /usr/tmp.
318 .TP
319 .B
320 index { <attrlist> | default } [ pres,eq,approx,sub,none ]
321 Specify the indexes to maintain for the given attribute. If only 
322 an <attr> is given, all possible indexes are maintained.
323 .TP
324 .B mode <integer>
325 Specify the file protection mode that newly created database 
326 index files should have.  The default is 0600.
327 .SH SHELL BACKEND-SPECIFIC OPTIONS
328 Options in this category only apply to the SHELL backend database. That is,
329 they must follow a "database shell" line and come before any subsequent
330 "database" lines.  The Shell backend executes external programs to
331 implement operations, and is designed to make it easy to tie an existing
332 database to the
333 .B slapd
334 front-end.
335 .TP
336 .B bind <pathname>
337 .TP
338 .B unbind <pathname>
339 .TP
340 .B search <pathname>
341 .TP
342 .B compare <pathname>
343 .TP
344 .B modify <pathname>
345 .TP
346 .B modrdn <pathname>
347 .TP
348 .B add <pathname>
349 .TP
350 .B delete <pathname>
351 .TP
352 .B abandon <pathname>
353 These options specify the pathname of the command to execute in response 
354 to the given LDAP operation. The command given should understand and 
355 follow the input/output conventions described in Appendix B of "The SLAPD
356 and SLURPD Administrator's Guide."
357 .LP
358 Note that you need only supply configuration lines for those commands you
359 want the backend to handle. Operations for which a command is not
360 supplied will be refused with an "unwilling to perform" error.
361 .SH PASSWORD BACKEND-SPECIFIC OPTIONS
362 Options in this category only apply to the PASSWD backend database.
363 That is, they must follow a "database passwd" line and come before any
364 subsequent "database" lines.  The PASSWD database serves up the user
365 account information listed in the system
366 .BR passwd (5)
367 file.
368 .TP
369 .B file <filename>
370 Specifies an alternate passwd file to use.  The default is
371 .B /etc/passwd.
372 .SH EXAMPLE
373 "The SLAPD and SLURPD Administrator's Guide" contains an annotated
374 example of a configuration file.
375 .SH FILES
376 ETCDIR/slapd.conf
377 .SH SEE ALSO
378 .BR ldap (3),
379 .BR slapd.replog (5),
380 .BR locale (5),
381 .BR passwd (5),
382 .BR slapd (8),
383 .BR slurpd (8),
384 .LP
385 "The SLAPD and SLURPD Administrator's Guide"
386 .SH ACKNOWLEDGEMENTS
387 .B      OpenLDAP
388 is developed and maintained by The OpenLDAP Project (http://www.openldap.org/).
389 .B      OpenLDAP
390 is derived from University of Michigan LDAP 3.3 Release.