]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapd-null.5
second round at ITS#1749
[openldap] / doc / man / man5 / slapd-null.5
1 .TH SLAPD-NULL 5 "30 April 2002" "OpenLDAP LDVERSION"
2 .\" $OpenLDAP$
3 .SH NAME
4 slapd-null \- Null backend to slapd
5 .SH SYNOPSIS
6 ETCDIR/slapd.conf
7 .SH DESCRIPTION
8 The Null backend to
9 .BR slapd (8)
10 is surely the most useful part of
11 .BR slapd :
12 .br
13 - Searches return success but no entries.
14 .br
15 - Compares return compareFalse.
16 .br
17 - Updates return success (unless readonly is on) but do nothing.
18 .br
19 - Binds fail unless the database option "bind on" is given.
20 .br
21 Inspired by the /dev/null device.
22 .SH CONFIGURATION
23 This
24 .B slapd.conf
25 option applies to the NULL backend database.
26 That is, it must follow a "database null" line and come before
27 any subsequent "database" lines.
28 Other database options are described in the
29 .BR slapd.conf (5)
30 manual page.
31 .TP
32 .B bind <on/off>
33 Allow binds as DNs in this backend's suffix.
34 The default is "off".
35 .SH EXAMPLE
36 Here is a possible slapd.conf extract using the Null backend:
37 .LP
38 .nf
39   database null
40   suffix   "cn=Nothing"
41   bind     on
42 .fi
43 .SH FILES
44 ETCDIR/slapd.conf
45 .SH SEE ALSO
46 .BR slapd.conf (5),
47 .BR slapd (8).