mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
2ab8810555
================ Written by Hallvard B. Furuseth and placed into the public domain. This software is not subject to any license of the University of Oslo. ================ Small changes: - Fix typo slapd_meta -> slapd-meta in slapd-meta(5). - Add slapd-dnssrv(5) to SEE ALSO in slapd.conf(5). - Add descriptions of the files in FILES sections. - Add $HOME/.udrc to FILES in ud(1) and ud.conf(5). - Add ldaprc (without ".") and ENVIRONMENT VARIABLES in ldap.conf(5). - Change manpage references to proper ".BR name (section)". Hallvard B. Furuseth <h.b.furuseth@usit.uio.no>, May 2002.
52 lines
1.1 KiB
Groff
52 lines
1.1 KiB
Groff
.TH SLAPD-NULL 5 "2 May 2002" "OpenLDAP LDVERSION"
|
|
.\" $OpenLDAP$
|
|
.SH NAME
|
|
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
|
|
- Binds fail unless the database option "bind on" is given.
|
|
.br
|
|
Inspired by the /dev/null device.
|
|
.SH CONFIGURATION
|
|
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>
|
|
Allow binds as DNs in this backend's suffix.
|
|
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
|
|
.SH FILES
|
|
.TP
|
|
ETCDIR/slapd.conf
|
|
default slapd configuration file
|
|
.SH SEE ALSO
|
|
.BR slapd.conf (5),
|
|
.BR slapd (8).
|