[Zope] RE:SOLVED: Why my Zope kept dying

seb bacon seb@jamkit.com
07 Mar 2002 16:41:43 +0000


On Thu, 2002-03-07 at 15:49, Mike Renfro wrote:
> Two safe solutions:
> 
> - Redirect *all* standard output and standard error text into a file,
>   or into /dev/null -- something line './start 2>&1 > /somefile &'
> 
> - Run your Zope script inside a 'screen' session. See
>   http://www.linuxgazette.com/issue32/tag_detach.html for some details
>   on this program.

Or:

 - Use the nohup command, e.g. 'nohup ./start'