openldap/doc/man/man5/slapd-null.5

68 lines
1.5 KiB
Groff
Raw Normal View History

2002-06-13 11:59:10 +08:00
.TH SLAPD-NULL 5 "RELEASEDATE" "OpenLDAP LDVERSION"
2012-01-01 23:07:45 +08:00
.\" Copyright 2002-2012 The OpenLDAP Foundation. All Rights Reserved.
2005-07-04 20:50:57 +08:00
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
.\" $OpenLDAP$
.SH NAME
2009-06-03 08:43:44 +08:00
slapd\-null \- Null backend to slapd
.SH SYNOPSIS
ETCDIR/slapd.conf
.SH DESCRIPTION
The Null backend to
.BR slapd (8)
is surely the most useful part of
.BR slapd :
.br
- Searches return success but no entries.
.br
- Compares return compareFalse.
.br
- Updates return success (unless readonly is on) but do nothing.
.br
2006-04-28 00:12:59 +08:00
- Binds other than as the rootdn fail unless the database option "bind
on" is given.
.br
- The
.BR slapadd (8)
and
.BR slapcat (8)
tools are equally exciting.
.br
Inspired by the /dev/null device.
.SH CONFIGURATION
2002-05-02 00:38:30 +08:00
This
.B slapd.conf
option applies to the NULL backend database.
That is, it must follow a "database null" line and come before
any subsequent "database" lines.
Other database options are described in the
.BR slapd.conf (5)
manual page.
.TP
.B bind <on/off>
2007-05-17 07:23:48 +08:00
Allow binds as any DN in this backend's suffix, with any password.
The default is "off".
.SH EXAMPLE
Here is a possible slapd.conf extract using the Null backend:
.LP
.RS
.nf
database null
suffix "cn=Nothing"
bind on
.fi
.RE
2005-04-09 08:44:17 +08:00
.SH ACCESS CONTROL
The
.B null
backend does not honor any of the access control semantics described in
.BR slapd.access (5).
2002-05-02 00:38:30 +08:00
.SH FILES
.TP
2002-05-02 00:38:30 +08:00
ETCDIR/slapd.conf
default slapd configuration file
.SH SEE ALSO
.BR slapd.conf (5),
.BR slapd (8),
.BR slapadd (8),
.BR slapcat (8).