1# master slapd config -- for testing
2# OpenLDAP: pkg/ldap/tests/data/slapd-sql.conf,v 1.15.2.5 2010/04/13 20:23:55 kurt Exp
3## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4##
5## Copyright 1998-2010 The OpenLDAP Foundation.
6## All rights reserved.
7##
8## Redistribution and use in source and binary forms, with or without
9## modification, are permitted only as authorized by the OpenLDAP
10## Public License.
11##
12## A copy of this license is available in the file LICENSE in the
13## top-level directory of the distribution or, alternatively, at
14## <http://www.OpenLDAP.org/license.html>.
15
16#ucdata-path	./ucdata
17include		@SCHEMADIR@/core.schema
18include		@SCHEMADIR@/cosine.schema
19include		@SCHEMADIR@/inetorgperson.schema
20include		@SCHEMADIR@/openldap.schema
21include		@SCHEMADIR@/nis.schema
22pidfile		@TESTDIR@/slapd.1.pid
23argsfile	@TESTDIR@/slapd.1.args
24
25#sqlmod#modulepath ../servers/slapd/back-sql/
26#sqlmod#moduleload back_sql.la
27#monitormod#modulepath ../servers/slapd/back-monitor/
28#monitormod#moduleload back_monitor.la
29
30#
31# normal installations should protect root dse,
32# cn=monitor, cn=schema, and cn=config
33#
34
35access to attrs=userpassword
36	by self =w
37	by anonymous =x
38
39access to *
40	by * read
41
42#######################################################################
43# sql database definitions
44#######################################################################
45
46database        sql
47suffix          "dc=example,dc=com"
48rootdn		"cn=Manager,dc=example,dc=com"
49rootpw          secret
50dbname          example
51dbuser          manager
52dbpasswd        secret
53
54#
55# rdbms specific directives
56#
57# IBM db2
58#ibmdb2#upper_func      	"ucase"
59#ibmdb2#upper_needs_cast	"yes"
60#ibmdb2#concat_pattern  	"?||?"
61#ibmdb2#children_cond		"ucase(ldap_entries.dn)=ucase(cast(? as varchar(255)))"
62#ibmdb2#create_needs_select	"yes"
63#ibmdb2#insentry_stmt		"insert into ldap_entries (id,dn,oc_map_id,parent,keyval) values ((select case when max(id) is null then 1 else max(id) + 1 end from ldap_entries),?,?,?,?)"
64#
65# PostgreSQL
66#pgsql#insentry_stmt		"insert into ldap_entries (id,dn,oc_map_id,parent,keyval) values ((select case when max(id) is null then 1 else max(id) + 1 end from ldap_entries),?,?,?,?)"
67#pgsql#upper_func		"upper"
68#pgsql#strcast_func		"text"
69#pgsql#concat_pattern	"?||?"
70#
71# MySQL
72#mysql#concat_pattern	"concat(?,?)"
73
74has_ldapinfo_dn_ru      no
75
76#monitor#database monitor
77