I've installed zope 2.7 (gmake instance) on OpenBSD-current when I try to execute a "python lib/python/ZEO/start.py" I get the following error: $ python lib/python/ZEO/start.py Traceback (most recent call last): File "lib/python/ZEO/start.py", line 22, in ? import ThreadedAsync.LoopCallback ImportError: No module named ThreadedAsync.LoopCallback runzeo returns the following $ python lib/python/ZEO/runzeo.py Traceback (most recent call last): File "lib/python/ZEO/runzeo.py", line 41, in ? import ZConfig, ZConfig.datatypes ImportError: No module named ZConfig Any help would be greatly appreciated.
Behalf Of G. Clifford Williams Sent: Friday, April 16, 2004 1:04 AM Subject: [Zope] zope 2.7 && ZEO errors
I've installed zope 2.7 (gmake instance) on OpenBSD-current when I try to execute a "python lib/python/ZEO/start.py" I get the following error: [...]
AFAIR the ZEO make instance process was declared faulty. Anyway, you can create your own zeo instance by examining the source of lib/python/ZEO/mkzeoinst.py. I have the following layout and startup script (OpenBSD 3.4): $ pwd /zope/instances/zeo $ ls total 24 drwxrwx--- 6 zope zopeadm 512 Feb 12 18:26 ./ drwxrwx--- 6 zope zopeadm 512 Jan 26 17:38 ../ drwxrwx--- 2 zope zopeadm 512 Jan 19 11:46 bin/ drwxrwx--- 2 zope zopeadm 512 Apr 14 17:50 etc/ drwxrwx--- 2 zope zopeadm 512 Jan 19 10:54 log/ drwxrwx--- 2 zope zopeadm 512 Apr 14 17:51 var/ -------------------------------------------------- $ pwd /zope/instances/zeo/bin $ cat runzeo #! /bin/sh PYTHON=/zope/python23/bin/python INSTANCE_HOME=/zope/instances/zeo CONFIG_FILE=$INSTANCE_HOME/etc/zeo.conf SOFTWARE_HOME=/zope/zopestable/lib/python PYTHONPATH=$SOFTWARE_HOME ZEO_RUN=$SOFTWARE_HOME/ZEO/runzeo.py export PYTHONPATH exec "$PYTHON" "$ZEO_RUN" -C "$CONFIG_FILE" "$@" -------------------------------------------------- Regards, Sandor
I'm lost... are there not better docs on setting up ZEO than what is included with the zope 2.7 tgz or the ZEO 2.03b tgz? thanks for the response.... On Friday 16 April 2004 01:12 am, zope@netchan.cotse.net wrote:
Behalf Of G. Clifford Williams Sent: Friday, April 16, 2004 1:04 AM Subject: [Zope] zope 2.7 && ZEO errors
I've installed zope 2.7 (gmake instance) on OpenBSD-current when I try to execute a "python lib/python/ZEO/start.py" I get the following error:
[...]
AFAIR the ZEO make instance process was declared faulty. Anyway, you can create your own zeo instance by examining the source of lib/python/ZEO/mkzeoinst.py.
I have the following layout and startup script (OpenBSD 3.4):
$ pwd /zope/instances/zeo $ ls total 24 drwxrwx--- 6 zope zopeadm 512 Feb 12 18:26 ./ drwxrwx--- 6 zope zopeadm 512 Jan 26 17:38 ../ drwxrwx--- 2 zope zopeadm 512 Jan 19 11:46 bin/ drwxrwx--- 2 zope zopeadm 512 Apr 14 17:50 etc/ drwxrwx--- 2 zope zopeadm 512 Jan 19 10:54 log/ drwxrwx--- 2 zope zopeadm 512 Apr 14 17:51 var/ --------------------------------------------------
$ pwd /zope/instances/zeo/bin $ cat runzeo #! /bin/sh
PYTHON=/zope/python23/bin/python INSTANCE_HOME=/zope/instances/zeo CONFIG_FILE=$INSTANCE_HOME/etc/zeo.conf SOFTWARE_HOME=/zope/zopestable/lib/python PYTHONPATH=$SOFTWARE_HOME ZEO_RUN=$SOFTWARE_HOME/ZEO/runzeo.py
export PYTHONPATH
exec "$PYTHON" "$ZEO_RUN" -C "$CONFIG_FILE" "$@" --------------------------------------------------
Regards, Sandor
On Fri, Apr 16, 2004 at 05:37:59PM -0500, G. Clifford Williams wrote:
I'm lost... are there not better docs on setting up ZEO than what is included with the zope 2.7 tgz or the ZEO 2.03b tgz?
thanks for the response....
maybe this might help http://www.my-zope.org/Members/kedai/News_Item.2003-11-15.5611 hth
On Friday 16 April 2004 01:12 am, zope@netchan.cotse.net wrote:
Behalf Of G. Clifford Williams Sent: Friday, April 16, 2004 1:04 AM Subject: [Zope] zope 2.7 && ZEO errors
I've installed zope 2.7 (gmake instance) on OpenBSD-current when I try to execute a "python lib/python/ZEO/start.py" I get the following error:
[...]
AFAIR the ZEO make instance process was declared faulty. Anyway, you can create your own zeo instance by examining the source of lib/python/ZEO/mkzeoinst.py.
I have the following layout and startup script (OpenBSD 3.4):
$ pwd /zope/instances/zeo $ ls total 24 drwxrwx--- 6 zope zopeadm 512 Feb 12 18:26 ./ drwxrwx--- 6 zope zopeadm 512 Jan 26 17:38 ../ drwxrwx--- 2 zope zopeadm 512 Jan 19 11:46 bin/ drwxrwx--- 2 zope zopeadm 512 Apr 14 17:50 etc/ drwxrwx--- 2 zope zopeadm 512 Jan 19 10:54 log/ drwxrwx--- 2 zope zopeadm 512 Apr 14 17:51 var/ --------------------------------------------------
$ pwd /zope/instances/zeo/bin $ cat runzeo #! /bin/sh
PYTHON=/zope/python23/bin/python INSTANCE_HOME=/zope/instances/zeo CONFIG_FILE=$INSTANCE_HOME/etc/zeo.conf SOFTWARE_HOME=/zope/zopestable/lib/python PYTHONPATH=$SOFTWARE_HOME ZEO_RUN=$SOFTWARE_HOME/ZEO/runzeo.py
export PYTHONPATH
exec "$PYTHON" "$ZEO_RUN" -C "$CONFIG_FILE" "$@" --------------------------------------------------
Regards, Sandor
_______________________________________________ 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 )
I've installed zope 2.7 (gmake instance) on OpenBSD-current when I try to execute a "python lib/python/ZEO/start.py" I get the following error:
How Zope runs on OpenBSD? I've had same serious problems with Zope on FreeBSD and almost crashed my Data.fs. Is there similar problems on OpenBSD or is this just freebsd and python/zope? Under heavy loads? Thanks, Vahur
How Zope runs on OpenBSD?
Runs fine here. A few hints if you have a problem: http://marc.theaimsgroup.com/?l=zope&m=108024325701586&w=2 Regards, Sandor
thanks.. I got it all set up last night... Bit of maybe useful information: I had to use "balance" (http://sourceforge.net/projects/balance) instead of "pound" because I kept having problems with the ssl library on OpenBSD. I did get pound to compile without ssl support but it was buggy. Guess I should brush up on my coding skills. Again.. thanks for your help. On Friday 16 April 2004 10:03 pm, you wrote:
On Fri, Apr 16, 2004 at 05:37:59PM -0500, G. Clifford Williams wrote:
I'm lost... are there not better docs on setting up ZEO than what is included with the zope 2.7 tgz or the ZEO 2.03b tgz?
thanks for the response....
maybe this might help http://www.my-zope.org/Members/kedai/News_Item.2003-11-15.5611
hth
On Friday 16 April 2004 01:12 am, zope@netchan.cotse.net wrote:
Behalf Of G. Clifford Williams Sent: Friday, April 16, 2004 1:04 AM Subject: [Zope] zope 2.7 && ZEO errors
I've installed zope 2.7 (gmake instance) on OpenBSD-current when I try to execute a "python lib/python/ZEO/start.py" I get the following error:
[...]
AFAIR the ZEO make instance process was declared faulty. Anyway, you can create your own zeo instance by examining the source of lib/python/ZEO/mkzeoinst.py.
I have the following layout and startup script (OpenBSD 3.4):
$ pwd /zope/instances/zeo $ ls total 24 drwxrwx--- 6 zope zopeadm 512 Feb 12 18:26 ./ drwxrwx--- 6 zope zopeadm 512 Jan 26 17:38 ../ drwxrwx--- 2 zope zopeadm 512 Jan 19 11:46 bin/ drwxrwx--- 2 zope zopeadm 512 Apr 14 17:50 etc/ drwxrwx--- 2 zope zopeadm 512 Jan 19 10:54 log/ drwxrwx--- 2 zope zopeadm 512 Apr 14 17:51 var/ --------------------------------------------------
$ pwd /zope/instances/zeo/bin $ cat runzeo #! /bin/sh
PYTHON=/zope/python23/bin/python INSTANCE_HOME=/zope/instances/zeo CONFIG_FILE=$INSTANCE_HOME/etc/zeo.conf SOFTWARE_HOME=/zope/zopestable/lib/python PYTHONPATH=$SOFTWARE_HOME ZEO_RUN=$SOFTWARE_HOME/ZEO/runzeo.py
export PYTHONPATH
exec "$PYTHON" "$ZEO_RUN" -C "$CONFIG_FILE" "$@" --------------------------------------------------
Regards, Sandor
_______________________________________________ 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 )
participants (4)
-
Bakhtiar A Hamid -
G. Clifford Williams -
Vahur Rebas -
zope@netchan.cotse.net