backend bdb Well, i'm kindof following with you guys. I'm sortof lost with the mysql store, but --
to fix the bdb issue:
I had to copy my sarge distro slapd binary (i was getting an error--ld: warning: cannot find entry symbol _start; defaulting to 000000000804c55c)
meanwhile, in the config file for slapd (at /opt/zimbra/openldap/etc/openldap/slapd.conf):
where it says Modulepath /usr/local/libexec whatever-
change it to:
modulepath /usr/lib/ldap
moduleload back_bdb
(note, i removed the .la that was originally there).
This is of course assuming you already have the debian openldap prereq's, which will put back_bdb.so in /usr/lib/ldap.
immediately after moduleload back_bdb, add the lines:
backend bdb
checkpoint 512 30
and slapd should start AOK. |