Zope and System V init
Hello, my Linuxbox is not running 24/7. Normally it is booted once a day. My database (Oracle) is started with an System V init script at boottime. Is there such a script for Zope? So long Ulli PS: Wouldn't that be a wonderful How-To? -- ----------------- Die Website Effizienzer ------------------ luna-park Bravo Sanchez, Vollmert, Wisser GbR Ulrich Wisser mailto:u.wisser@luna-park.de Alter Schlachthof, Immenburgstr. 20 Tel +49-228-9654055 D-53121 Bonn Fax +49-228-9654057 ------------------http://www.luna-park.de ------------------
Monday, September 27, 1999, 4:55:43 PM, Ulrich wrote:
my Linuxbox is not running 24/7. Normally it is booted once a day. My database (Oracle) is started with an System V init script at boottime. Is there such a script for Zope?
I've created a g&d one for SuSE 6.2. -------------------------------------------------------------- #! /bin/sh # # /sbin/init.d/zope # . /etc/rc.config return=$rc_done case "$1" in start) echo -n "Starting Zope" /usr/local/Zope-2.0.1-src/start >> /var/log/zope 2>&1 & echo -e "$return" ;; stop) echo -n "Shutting down Zope" /usr/local/Zope-2.0.1-src/stop echo -e "$return" ;; *) echo "Usage: $0 {start|stop}" exit 1 esac exit 0 -------------------------------------------------------------- Sven -- PGP-Key-ID: 0x881BF222
participants (2)
-
Sven Kirmess -
Ulrich Wisser