Bevan C. Bennett wrote: > However, something is still wrong. Still approximately once per week > (possibly corresponding with open files exceeding 1024), my slapd now > appears to be failing in the same manner, only silently (no syslog > messages). A brief look at the slapd binary reveals that it uses select() instead of poll(). This means it is bound to the size of __FD_SETSIZE which is 1024. The change in slapd should be fairly simple. The fact that you only see this after some time might suggest that the daemon is leaking file descriptors. This should probably be investigated, too. -- â Ulrich Drepper â Red Hat, Inc. â 444 Castro St â Mountain View, CA â