Re: [Zope-dev] More signal 11 restarts....

2001-12-08 Thread Joseph Wayne Norton
Daniel - I have **not** tried this myself yet, but I plan to check this week. Please take a look at the following URL: http://www.humanfactor.com/cgi-bin/cgi-delegate/apache-ML/nh/1998/Oct/0130.html This mail is related to apache but the same analysis might apply to zope. I believe the

With Oracle as well Re: [Zope-dev] More signal 11 restarts....

2001-12-07 Thread Dario Lopez-Kästen
Matt Kromer wrote: We have not been able to reproduce this problem in any deterministic way -- and the only people who seem to have it are those who are heavy MySQL users; it makes me think there is something in the adapter which is not behaving the same way under Python 2.1 than it did

Re: With Oracle as well Re: [Zope-dev] More signal 11 restarts....

2001-12-07 Thread Matthew T. Kromer
Dario Lopez-Kästen wrote: Well, sorry to disapoint everybody, but we have the same signal 11 restarts here. Oh sure, go spoil my blame it on the other guy theory. We are using DCO2 latest from CVS and have _very_ high Oracle database usage. We have yesterday changed from our solaris box to

Re: With Oracle as well Re: [Zope-dev] More signal 11 restarts....

2001-12-07 Thread Dario Lopez-Kästen
Well, that means the browser user clicked 'stop' -- Medusa is just telling you the channel went away on it. Thats normal when the browser chops the tcp connection. *looong sigh of relief* /dario ___ Zope-Dev maillist - [EMAIL

Re: [Zope-dev] More signal 11 restarts....

2001-12-06 Thread Gilles Lavaux
Hello Which config/tool make that your zope restart automatically??? Gilles -Original Message- From: Leonardo Rochael Almeida [EMAIL PROTECTED] To: zope-dev [EMAIL PROTECTED] Date: Wednesday, December 05, 2001 20:07 Subject: Re: [Zope-dev] More signal 11 restarts Hi Harald

Re: [Zope-dev] More signal 11 restarts....

2001-12-06 Thread Leonardo Rochael Almeida
On Thu, 2001-12-06 at 08:43, Gilles Lavaux wrote: Hello Which config/tool make that your zope restart automatically??? Zope itself. Here is a snipet of Z2.py help text for your amusement :-) -Z path Unix only! This option is ignored on windows. If this option is specified, a

Re: hooking up gdb (was Re: [Zope-dev] More signal 11 restarts....)

2001-12-06 Thread Andy Dustman
On Wed, 2001-12-05 at 15:41, Matthew T. Kromer wrote: Leonardo Rochael Almeida wrote: We aren't getting any core files, even after setting ulimit correctly (although we could be setting it uncorrectly. I'll look into that further). Anyway, someone else in this list said that core dumps for

Re: hooking up gdb (was Re: [Zope-dev] More signal 11 restarts....)

2001-12-06 Thread Matthew T. Kromer
Andy Dustman wrote: If you don't think a core dump is going to be useful, gdb isn't going to be either. Well, the problem is on Linux, the core file is from the process that received the SIG11, not the one that caused it, in most cases (due to the way Linux implements threads). To the best

Re: [Zope-dev] More signal 11 restarts....

2001-12-05 Thread Harald Koschinski
Daniel Duclos wrote: I have a zope that is dumping signal 11 every 40 minutes or so. I have tried recompile python 2.1.1 with-threads without-pymalloc, recompile Zope with it, recompile ZPAtterns, recompile and instal MYSQL for Python 0.9.1, upgraded to Zope 2.4.3, all this on a Debian

Re: [Zope-dev] More signal 11 restarts....

2001-12-05 Thread Chris McDonough
-dev [EMAIL PROTECTED] Sent: Wednesday, December 05, 2001 11:32 AM Subject: Re: [Zope-dev] More signal 11 restarts Daniel Duclos wrote: I have a zope that is dumping signal 11 every 40 minutes or so. I have tried recompile python 2.1.1 with-threads without-pymalloc, recompile Zope

Re: [Zope-dev] More signal 11 restarts....

2001-12-05 Thread Leonardo Rochael Almeida
Hi Harald, On Wed, 2001-12-05 at 14:32, Harald Koschinski wrote: Daniel Duclos wrote: I have a zope that is dumping signal 11 every 40 minutes or so. I have tried recompile python 2.1.1 with-threads without-pymalloc, recompile Zope with it, recompile ZPAtterns, recompile and instal

Re: [Zope-dev] More signal 11 restarts....

2001-12-05 Thread Leonardo Rochael Almeida
Sorry, I made an incorrect statement. see below. On Wed, 2001-12-05 at 17:26, Leonardo Rochael Almeida wrote: Hi Harald, On Wed, 2001-12-05 at 14:32, Harald Koschinski wrote: Daniel Duclos wrote: I have a zope that is dumping signal 11 every 40 minutes or so. I have tried

Re: [Zope-dev] More signal 11 restarts....

2001-12-05 Thread Matthew T. Kromer
Leonardo Rochael Almeida wrote: It's not fixed, but we managed to make it bearable so as not to lose the client. by replacing LoginManager with exUserFolder we managed to bring down the zope restart time from 5 min (we have a HUGE Data.fs) to 20 secs, and by installing ZEO we brought down the

hooking up gdb (was Re: [Zope-dev] More signal 11 restarts....)

2001-12-05 Thread Leonardo Rochael Almeida
Well, one of the things I was going to ask next was for some help doing postmortem. We aren't getting any core files, even after setting ulimit correctly (although we could be setting it uncorrectly. I'll look into that further). Anyway, someone else in this list said that core dumps for

Re: hooking up gdb (was Re: [Zope-dev] More signal 11 restarts....)

2001-12-05 Thread Matthew T. Kromer
Leonardo Rochael Almeida wrote: Well, one of the things I was going to ask next was for some help doing postmortem. We aren't getting any core files, even after setting ulimit correctly (although we could be setting it uncorrectly. I'll look into that further). Anyway, someone else in this list

Re: hooking up gdb (was Re: [Zope-dev] More signal 11 restarts....)

2001-12-05 Thread Dieter Maurer
Matthew T. Kromer writes: ... Well largely, ALL I want is the backtrace -- and I'm wondering if I could cobble something together that could get it. The problem is it needs to look at the symbol table, and I dont know how to get at that via C -- ie, gdb doesnt have an interface that

Re: [Zope-dev] More signal 11 restarts....

2001-11-27 Thread Matthew T. Kromer
The only real suggestion I have is to attach the debugger to a running thread and hope it hits the fault while the debugger is attached. Linux core files are difficult to impossible to debug when threading is active. The 2.4 kernels may have addressed this some but I dont know that gdb has

Re: [Zope-dev] More signal 11 restarts....

2001-11-27 Thread Dieter Maurer
Daniel Duclos writes: I have a zope that is dumping signal 11 every 40 minutes or so. I have tried recompile python 2.1.1 with-threads without-pymalloc, recompile Zope with it, recompile ZPAtterns, recompile and instal MYSQL for Python 0.9.1, upgraded to Zope 2.4.3, all this on a