27 Feb
2001
27 Feb
'01
12:03 p.m.
On Monday 26 February 2001, at 11 h 27, the keyboard of Will Dennis <willd@p-wave.com> wrote:
I am wondering if someone has already written a Python script that will monitor Zope and do a stop/start if Zope is not responding (we are experiencing a problem with a customer's site in that Zope stops responding to GET/POST requests, but the Zope processes are still running.)
Why in Python? #!/bin/sh # http://echoping.sourceforge.net/ if ! echoping -h / www.mysite.org 2>&1 >/dev/null then cd /local/zope ./stop ./start fi