]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapd-null.5
ee4272f38e513577131f8ad1c8bbdeb2b5ff6e8e
[openldap] / doc / man / man5 / slapd-null.5
1 .TH SLAPD-NULL 5 "RELEASEDATE" "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 .RS
39 .nf
40 database null
41 suffix   "cn=Nothing"
42 bind     on
43 .fi
44 .RE
45 .SH FILES
46 .TP
47 ETCDIR/slapd.conf
48 default slapd configuration file
49 .SH SEE ALSO
50 .BR slapd.conf (5),
51 .BR slapd (8).