]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapd-null.5
5164a7c4599f2447c4c44c42aa0dd4d41f7d5f91
[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 ACCESS CONTROL
46 The
47 .B null
48 backend does not honor any of the access control semantics described in
49 .BR slapd.access (5).
50 .SH FILES
51 .TP
52 ETCDIR/slapd.conf
53 default slapd configuration file
54 .SH SEE ALSO
55 .BR slapd.conf (5),
56 .BR slapd (8).