죄송합니다. 이전 글에 댓글로 쓰려는건 아니었는데 너무 길어서
보기 불편하게 되어 이렇게 다시 올립니다.
ldapadd는 이제 잘 되는 것 같습니다. 그런데 search에서 문제가
생긴것 같습니다.
고수님들의 고견을 부탁드립니다.
[root@shlee openldap]# ldapadd -x -D
"cn=Manager,dc=my-domain,dc=com" -w secret << EOF
> dn:dc=test1,dc=my-domain,dc=com
> dc:test2
> objectclass:dcObject
> EOF
adding new entry "dc=test1,dc=my-domain,dc=com"
[root@shlee openldap]# ldapsearch
ldap_sasl_interactive_bind_s: No such attribute
[root@shlee openldap]# ldapsearch -x
version: 2
#
# filter: (objectclass=*)
# requesting: ALL
#
# search result
search: 2
result: 32 No such object
# numResponses: 1
위와 같이 입력은 잘 되었습니다만 ldapsearch에서는 이러한 결과가
나타납니다.
이유가 무엇인지 잘 모르겠습니다.
<slapd.conf> 파일 입니다.
# $OpenLDAP: pkg/ldap/servers/slapd/slapd.conf,v 1.8.8.7
2001/09/27 20:00:31 kurt Exp $
#
# See slapd.conf(5) for details on configuration options.
# This file should NOT be world readable.
#
include /etc/openldap/schema/core.schema
# Define global ACLs to disable default read access.
# Do not enable referrals until AFTER you have a working
directory
# service AND an understanding of referrals.
#referral ldap://root.openldap.org
pidfile /usr/local/openldap/var/slapd.pid
argsfile /usr/local/openldap/var/slapd.args
# Load dynamic backend modules:
# modulepath /usr/local/openldap/libexec/openldap
# moduleload back_ldap.la
# moduleload back_ldbm.la
# moduleload back_passwd.la
# moduleload back_shell.la
#
# Sample Access Control
# Allow read access of root DSE
# Allow self write access
# Allow authenticated users read access
# Allow anonymous users to authenticate
#
#access to dn="" by * read
#access to *
# by self write
# by users read
# by anonymous auth
#
# if no access controls are present, the default is:
# Allow read by all
#
# rootdn can always write!
#######################################################################
# ldbm database definitions
#######################################################################
database ldbm
suffix "dc=my-domain,dc=com"
#suffix "o=My Organization Name,c=US"
rootdn "cn=Manager,dc=my-domain,dc=com"
#rootdn "cn=Manager,o=My Organization Name,c=US"
# 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/tools. Mode 700
recommended.
directory /usr/local/openldap/var/openldap-ldbm
# Indices to maintain
index objectClass eq
|