RE24 and BDB 4.7.25p1 hanging
by Michael Ströder
HI!
I'm trying to run current RE24 with BDB 4.7.25p1. It hangs in test-001
and it hangs (probably when doing a bind). Is that combination really
stable?
Ciao, Michael.
14 years, 6 months
RE24 testing
by Quanah Gibson-Mount
Please test RE24.
Thanks!
--Quanah
--
Quanah Gibson-Mount
Principal Software Engineer
Zimbra, Inc
--------------------
Zimbra :: the leader in open source messaging and collaboration
14 years, 6 months
test050-syncrepl-multimaster failures
by Rein Tollevik
Like others have reported, I have seen failures with this test after
upgrading to the recent RE_24. I have only seen it when running the
test on a multi-cpu linux system tough, it works find on a single-cpu
solaris.
When it fails it is always syncrepl in the two first servers that fails
to bind to the third. In the logs they complains repeatedly like:
slap_client_connect: URI=ldap://localhost:9013/ DN="cn=config"
ldap_sasl_bind_s failed (-5)
I.e, the bind timed out. Server3 logs the bind request, but first after
the unbind that follows.. Modifying the source with some more debug
output that prints the time it shows that the bind request is sent and
times out (after 3 seconds) before server3 logs accept of the
connection. Some race condition that kicks in if two servers tries to
connect and bind at the same time? Btw, I've only tested with back-bdb.
Well, that's how far I've had time to look at it. I have plenty of logs
available if anyone care to look at them.
Rein
14 years, 6 months
Re: RE24 testing
by ghenry@OpenLDAP.org
----- "Quanah Gibson-Mount" <quanah(a)zimbra.com> wrote:
> --On Monday, September 15, 2008 10:53 PM +0100 ghenry(a)OpenLDAP.org
> wrote:
>
> > I've added --disable-ndb and I'm using our normal build_openldap.sh
> with
> > bdb 4.7.25.NC:
> >
> > config.status: creating servers/slapd/back-meta/Makefile
> > config.status: creating servers/slapd/back-monitor/Makefile
> > config.status: creating servers/slapd/back-ndb/Makefile
> > config.status: error: cannot find input file:
> > servers/slapd/back-ndb/Makefile.in Making depend in
cvs up -d would help, as configure wasn't completing.
> Works for me... :P
Me too now ;-)
--
Kind Regards,
Gavin Henry.
OpenLDAP Engineering Team.
E ghenry(a)OpenLDAP.org
Community developed LDAP software.
http://www.openldap.org/project/
14 years, 6 months
Re: commit: ldap/build openldap.m4
by Howard Chu
hyc(a)OpenLDAP.org wrote:
> Update of /repo/OpenLDAP/pkg/ldap/build
>
> Modified Files:
> openldap.m4 1.167 -> 1.168
>
> Log Message:
> Updated BerkeleyDB version tests
The only question here is whether we need an explicit "-o -" on the CPP
invocation to force output to stdout. For most systems, that's the default
behavior. Let me know if you find something that behaves differently...
--
-- Howard Chu
CTO, Symas Corp. http://www.symas.com
Director, Highland Sun http://highlandsun.com/hyc/
Chief Architect, OpenLDAP http://www.openldap.org/project/
14 years, 6 months
Re: RE24 testing
by ghenry@OpenLDAP.org
I've added --disable-ndb and I'm using our normal build_openldap.sh with bdb 4.7.25.NC:
config.status: creating servers/slapd/back-meta/Makefile
config.status: creating servers/slapd/back-monitor/Makefile
config.status: creating servers/slapd/back-ndb/Makefile
config.status: error: cannot find input file: servers/slapd/back-ndb/Makefile.in
Making depend in /anything/src/openldap/RE_2_4
Entering subdirectory include
make[1]: Entering directory `/anything/src/openldap/RE_2_4/include'
Making ldap_config.h
make[1]: Leaving directory `/anything/src/openldap/RE_2_4/include'
Entering subdirectory libraries
make[1]: Entering directory `/anything/src/openldap/RE_2_4/libraries'
Making depend in /anything/src/openldap/RE_2_4/libraries
Entering subdirectory liblutil
make[2]: Entering directory `/anything/src/openldap/RE_2_4/libraries/liblutil'
../../build/mkdep -d "." -c "gcc" -m "-M" -I../../include -I../../include -I/usr/local/BerkeleyDB.4.7/include base64.c csn.c entropy.c sasl.c signal.c hash.c passfile.c md5.c passwd.c sha1.c getpass.c lockf.c utils.c uuid.c sockpair.c avl.c tavl.c ldif.c fetch.c testavl.c setproctitle.c getpeereid.c detach.c
base64.c:38:22: error: portable.h: No such file or directory
csn.c:44:22: error: portable.h: No such file or directory
entropy.c:22:22: error: portable.h: No such file or directory
sasl.c:16:22: error: portable.h: No such file or directory
signal.c:16:22: error: portable.h: No such file or directory
--
Kind Regards,
Gavin Henry.
OpenLDAP Engineering Team.
E ghenry(a)OpenLDAP.org
Community developed LDAP software.
http://www.openldap.org/project/
14 years, 6 months
slapd fails an assertion
by Emmanuel Dreyfus
Hello
I have a setup where slapd regularly fails and assertion and exits:
assertion "SLAP_SOCK_IS_ACTIVE( s )" failed: file "daemon.c", line 931, function "slapd_clr_write"
I don't have epoll(4), nor /dev/poll, neitheram I running on win32, so
the right definition for me is
# define SLAP_SOCK_IS_ACTIVE(fd) FD_ISSET((fd), &slap_daemon.sd_actives)
Any hint? This is OpenLDAP-2.4.9 on NetBSD-4.0. Is it possible that this
problem be fixed in a later OpenLDAP version?
--
Emmanuel Dreyfus
manu(a)netbsd.org
14 years, 6 months
Re: commit: ldap/servers/slapd/back-bdb init.c
by Ralf Haferkamp
On Freitag, 12. September 2008, ralf(a)openldap.org wrote:
> Update of /repo/OpenLDAP/pkg/ldap/servers/slapd/back-bdb
>
> Modified Files:
> init.c 1.293 -> 1.294
>
> Log Message:
> stop and remove checkpoint task in _db_destroy (ITS#5698)
Generally I'd think that this would better fit into the bdb_db_close()
function, but the _db_close hooks are not called from
backend_destroy_one() (which is what config_add_internal() calls when
it fails). Is there a special reason for that?
--
Ralf
14 years, 6 months
changes to distributed collect.c overlay
by Brett @Google
In the event somebody may find this useful, attached is a patch to
HEAD to allow a simple form of attribute inheritance.
It has also been contributed as ITS#5659.. (the patch in ftp /incoming
is newer than the one in the tarball)
If anyone wants to try it out, please do and let me know if there are
any issues..
(this is a simple change to a demo overlay Howard Chu did some time
ago, which is not built by default)
14 years, 6 months