Hello, I'd like to understand what exactly the errors mean that Zope writes to its stupid_log. There are mainly two messages that I find.. First: 2002-02-15T08:07:24 PROBLEM(100) Script (Python) Object "somePythonScript" needs to be recompiled. It seems that everytime a "Script (Python)" object is run, Zope generates this message. Is this normal or is there a real problem that I should be aware of? Second: 2002-02-15T08:07:26 ERROR(200) zdaemon zdaemon: Fri Feb 15 02:07:26 2002: Aiieee! 2945 exited with error code: 11 ------ 2002-02-15T08:07:26 INFO(0) zdaemon zdaemon: Fri Feb 15 02:07:26 2002: Houston, we have forked ------ 2002-02-15T08:07:26 INFO(0) zdaemon zdaemon: Fri Feb 15 02:07:26 2002: Hi, I just forked off a kid: 3309 ------ 2002-02-15T08:07:26 INFO(0) zdaemon zdaemon: Fri Feb 15 02:07:26 2002: Houston, we have forked This one is less common but it seems to be more drastic. What causes it? Does it cause Zope to restart everytime it occurs? Thanks in advanced, Micah ---------------------------------------------------------------------------- -- Micah Martin Software Engineer Object Mentor, Inc. micah@objectmentor.com www.objectmentor.com, www.xprogramming.com www.pairprogramming.com, www.junit.org
Micah Martin writes:
I'd like to understand what exactly the errors mean that Zope writes to its stupid_log. There are mainly two messages that I find..
First: 2002-02-15T08:07:24 PROBLEM(100) Script (Python) Object "somePythonScript" needs to be recompiled.
It seems that everytime a "Script (Python)" object is run, Zope generates this message. Is this normal or is there a real problem that I should be aware of? These are Python Scripts from an older installation. Search Google for "recompile_ps" to recompile all your Python scripts...
Second: 2002-02-15T08:07:26 ERROR(200) zdaemon zdaemon: Fri Feb 15 02:07:26 2002: Aiieee! 2945 exited with error code: 11 That's serious!
Zope died from a signal 11 (SIGSEGV, segmentation violation, general protection error). You may consider upgrading to Python 2.1.2 and Zope 2.4.4/Zope 2.5 as earlier versions are known to cause such crashes... Dieter
participants (2)
-
Dieter Maurer -
Micah Martin