[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Configuring OpenLDAP on Ubuntu 9.10.Need help!
- To: openldap-technical <openldap-technical@openldap.org>
- Subject: Configuring OpenLDAP on Ubuntu 9.10.Need help!
- From: Shamika Joshi <shamika.joshi@gmail.com>
- Date: Tue, 30 Mar 2010 14:34:46 +0530
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:received:message-id :subject:from:to:content-type; bh=8B5dOYhifjnjV18zhsSePnjGU7xoctU/Xer/sNSI350=; b=UeU6t7R9yqwC+Q9zrmUlsyHl2mYhlla3VFIpPxGHsvVEbX2Vn1/XuY/JDTSJUK21Tg TSntnXZqT/SIfjzZ2egfcS8hv+eEbEtc7l62Hdec3nVmctnBQhxMMOeHwp7yjo/90p9k c3viI5VRt0pAZjwANiLhGQHEOW4lH6JG5R+Rw=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=DBRBp+PyMRiyHTZ63tMXyBr4uRtGXB8qDkIw1mrTUpXTU/XgDikkx9FceirILZlbVo iI95MHbASUVUkUeM9IpPy2YVngj5+eDmwKHp/Q1vwDHHcnZqAegjtj1jSSASqy/zIrZi fE5qk/S4QfhRt7KISU0eM82lu9BVle34LXNdA=
I have followed following article to install/configure OpenLDAP on Ubuntu Server 9.10
https://help.ubuntu.com/9.10/serverguide/C/openldap-server.html
There is no slapd.conf in picture here instead running "dpkg-reconfigure slapd" should come up with following Wizard (got this after running through numerous articles on this)
Wizard steps:
- omit openldap server configuration? – no
- dns domain name? vm.example.org
- organization name? myCompany
- database backend to use? hdb
- do you want the database to be removed when slapd is purged? yes
- may be the question: move old database? yes
- administrator password? the same one as entered during installation
- confirm password? see last step
- allow LDAPv2 protocol? no
However in my installation wizards asks
Omit OpenLDAP server configuration? No
Do you want the database to be removed when slapd is purged? No
Allow LDAPv2 protocol? No
Creating initial slapd configuration... done.
Starting OpenLDAP: slapd.
Has anyone attempted this before? What I'm missing here? Could someone like to pitch in for some help?
So when I run "ldapsearch -x" it gives me following output
admins@x6:/etc/ldap$ ldapsearch -x
# extended LDIF
#
# LDAPv3
# base <> (default) with scope subtree
# filter: (objectclass=*)
# requesting: ALL
#
# search result
search: 2
result: 32 No such object
# numResponses: 1
where is should give the output like
# extended LDIF
#
# LDAPv3
# base (default) with scope subtree
# filter: (objectclass=*)
# requesting: ALL
#
# vm.example.org
dn: dc=vm,dc=example,dc=org
objectClass: top
objectClass: dcObject
objectClass: organization
o: myCompany
dc: vm
# admin, vm.example.org
dn: cn=admin,dc=vm,dc=example,dc=org
objectClass: simpleSecurityObject
objectClass: organizationalRole
cn: admin
description: LDAP administrator
# search result
search: 2
result: 0 Success
# numResponses: 3
# numEntries: 2
Thanks
Shamika