[Zope] Redirect Console Output

Dieter Maurer dieter@handshake.de
Tue, 11 Jun 2002 22:31:29 +0200


Jim Kutter writes:
 > A few questions - 
 > 
 > a) I run zope on a remote server, and I would like to redirect it's console output to a log file. The standard "start [options] 2>&1 > console.log &" Doesn't work. Do I have to muck with the source of Z2.py?
Order for redirections is essential!

Try:

	... > console.log 2>&1 ....

 > b) Has anyone experienced stability problems with the current version 2.5.1 (binary release, linux). I've managed to have webdav problems and ftp server crashes. I've also tried with locally compiled Python 2.1.3 and the source release of 2.5.1. Would Running an earlier version mean it's more stable? I'm using RedHat 6.1.
I did not experience problems with 2.5.1.

But, we only rarely use FTP and did use WebDAV only for testing purposes.

For WebDAV, you almost surely use the most recent version you can get...


Dieter