I'm having a problem with one of my Zope instances where zopectl is failing oddly: $ ./zopectl start Traceback (most recent call last): File "/var/lib/zope/lib/python/Zope/Startup/zopectl.py", line 207, in ? main() File "/var/lib/zope/lib/python/Zope/Startup/zopectl.py", line 190, in main c.onecmd(" ".join(options.args)) File "/usr/lib/python2.3/cmd.py", line 210, in onecmd return func(arg) File "/var/lib/zope/lib/python/Zope/Startup/zopectl.py", line 134, in do_start ZDCmd.do_start(self, arg) File "/var/lib/zope/lib/python/zdaemon/zdctl.py", line 214, in do_start os.spawnvp(flag, args[0], args) File "/usr/lib/python2.3/os.py", line 543, in spawnvp return _spawnvef(mode, file, args, None, execvp) File "/usr/lib/python2.3/os.py", line 504, in _spawnvef wpid, sts = waitpid(pid, 0) OSError: [Errno 10] No child processes More oddly another Zope installation from the same source ball with the same arguments to `make` works just fine. Debugging hasn't lead me anywhere useful so far and while there must be differences between the two systems without tearing them apart byte by byte I'm not seeing much that might cause the problem. Anyone have any ideas? -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw@kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live.
Might be worth opening a collector entry, or asking on zope-dev@zope.org... Chris J C Lawrence wrote:
I'm having a problem with one of my Zope instances where zopectl is failing oddly:
$ ./zopectl start Traceback (most recent call last): File "/var/lib/zope/lib/python/Zope/Startup/zopectl.py", line 207, in ? main() File "/var/lib/zope/lib/python/Zope/Startup/zopectl.py", line 190, in main c.onecmd(" ".join(options.args)) File "/usr/lib/python2.3/cmd.py", line 210, in onecmd return func(arg) File "/var/lib/zope/lib/python/Zope/Startup/zopectl.py", line 134, in do_start ZDCmd.do_start(self, arg) File "/var/lib/zope/lib/python/zdaemon/zdctl.py", line 214, in do_start os.spawnvp(flag, args[0], args) File "/usr/lib/python2.3/os.py", line 543, in spawnvp return _spawnvef(mode, file, args, None, execvp) File "/usr/lib/python2.3/os.py", line 504, in _spawnvef wpid, sts = waitpid(pid, 0) OSError: [Errno 10] No child processes
More oddly another Zope installation from the same source ball with the same arguments to `make` works just fine. Debugging hasn't lead me anywhere useful so far and while there must be differences between the two systems without tearing them apart byte by byte I'm not seeing much that might cause the problem. Anyone have any ideas?
-- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw@kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. _______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
-- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk
J C Lawrence wrote at 2004-8-16 16:07 -0400:
I'm having a problem with one of my Zope instances where zopectl is failing oddly: ... File "/usr/lib/python2.3/os.py", line 504, in _spawnvef wpid, sts = waitpid(pid, 0) OSError: [Errno 10] No child processes
A problem that appears with Linux 2.6 kernels. Should be fixed in Zope 2.7.1. -- Dieter
participants (3)
-
Chris Withers -
Dieter Maurer -
J C Lawrence