Esteban Tux's lil' helper
Joined: 23 Jan 2003 Posts: 77 Location: Paris
|
Posted: Fri Apr 16, 2004 9:23 pm Post subject: OPENLDAP and outlook (with labe) |
|
|
Hi,
I try to create a shared directory, to use mainly with outlook. I found a tool that seams great called labe, at http://www.savoirfairelinux.com/labe/.
This tool should setup openldap, by creating the good directory...
But, I have troubles using it...
My slapd.conf is :
Code: |
include /etc/openldap/schema/core.schema
include /etc/openldap/schema/cosine.schema
include /etc/openldap/schema/inetorgperson.schema
include /etc/openldap/schema/extension.schema
pidfile /var/run/openldap/slapd.pid
argsfile /var/run/openldap/slapd.args
database ldbm
suffix "dc=pia,dc=homelinux,dc=com"
rootdn "cn=Manager,dc=pia,dc=homelinux,dc=com"
directory /var/lib/openldap-ldbm
index objectClass eq
password-hash {crypt}
rootpw {MD5}A8VJDng8DqfOr+EsfApEKw==
allow bind_v2 |
My database is actually fully empty...
With Labe, I have a script called setup.sh, which should setup all. But it doesn't run well...
The script has problem doing this :
Code: |
ldapadd -x -h pia.homelinux.com -p 389 -D cn=Manager,dc=pia,dc=homelinux,dc=com
-W << EOF
dn: dc=pia,dc=homelinux,dc=com
objectclass: top
objectclass: dcObject
objectclass: organization
dc: pia
dn: cn=Manager,dc=pia,dc=homelinux,dc=com
objectclass: organizationalRole
cn: Manager
EOF |
When I manualy execute this part of code :
Code: |
Enter LDAP Password:
adding new entry "dc=pia,dc=homelinux,dc=com"
ldapadd: update failed: dc=pia,dc=homelinux,dc=com
ldap_add: Undefined attribute type (17)
additional info: dn: attribute type undefined |
Then, I tried to follow https://forums.gentoo.org/viewtopic.php?t=126278&highlight=openldap
The same problem...
Thanks for your help... |
|