| 123456789101112131415161718192021222324252627282930 | # See slapd.conf(5) for details on configuration options.# This file should NOT be world readable.#include		/etc/openldap/schema/core.schemapidfile		/var/run/slapd.pidargsfile	/var/run/slapd.args# Load dynamic backend modules:# modulepath	/usr/sbin/openldap# moduleload	back_bdb.la# moduleload	back_hdb.la# moduleload	back_ldap.la######################################################################## BDB database definitions#######################################################################database	bdbsuffix		"dc=my-domain,dc=com"rootdn		"cn=Manager,dc=my-domain,dc=com"# Cleartext passwords, especially for the rootdn, should# be avoid.  See slappasswd(8) and slapd.conf(5) for details.# Use of strong authentication encouraged.rootpw		secret# The database directory MUST exist prior to running slapd AND # should only be accessible by the slapd and slap tools.# Mode 700 recommended.directory	/var/openldap-data# Indices to maintainindex	objectClass	eq
 |