[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Re: slapd stops working when machine becomes CPU bound (ITS#3149)
It's unclear from the information you provide whether the behavior you
describe is due to a bug in OpenLDAP Software or due to some other
problem (a bug elsewhere, or a configuration problem).
I suggest you try to isolate the problem. I suggest you start by
using OpenLDAP clients (e.g., ldapsearch(1)) to reproduce the behavior
instead of involving non-OpenLDAP clients.
This issue will be moved to Feedback state pending details which
more clearly shows the behavior is due to a bug in OpenLDAP Software.
Kurt
At 12:40 PM 5/18/2004, jblack@inframix.com wrote:
>Full_Name: James Blackwell
>Version: 2.1.29
>OS: Debian GNU
>URL: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=245014
>Submission from: (NULL) (209.173.6.55)
>
>
>On my Debian GNU/sid machine, slapd stops serving if any user runs the
>following:
>
>$ renice 19 $$; while [ 1==1 ]; do echo -n ""; done
>
>The result of this command, run by *any* user logged in, is that nobody else can
>log in.
>
>A better example is that if a user compiles and runs the following code, nobody
>can log in:
>
>int main() { while(1) {} return 0; }