Hello zope users, What I have to do to start Zope automatically from /etc/rc.d/init.d? Thanks in advance -- Best regards, alienoid mailto:alienoid@is.lg.ua
better still: use daemontools, works like a treat! check out: http://www.lightwerk.com/zope/monitoring cheers, garry On 3 Jul 2002, at 14:43, alienoid wrote: From: alienoid <alienoid@is.lg.ua> Send reply to: alienoid <alienoid@is.lg.ua> To: zope@zope.org Subject: [Zope] Automatic Zope startup Date sent: Wed, 3 Jul 2002 14:43:24 +0300
Hello zope users,
What I have to do to start Zope automatically from /etc/rc.d/init.d? Thanks in advance
-- Best regards, alienoid mailto:alienoid@is.lg.ua
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
+-------------------------------------------+ Garry Steedman mailto:gs@styrax.com Styrax Associates http://www.styrax.com/ "The Good Man has no shape." +-------------------------------------------+
This works for me. === /etc/rc.d/init.d/zope == #!/bin/sh # ZOPEDIR=/usr/local/zope25 case $1 in start) ${ZOPEDIR}/start ;; stop) ${ZOPEDIR}/stop ;; restart) ${ZOPEDIR}/stop ${ZOPEDIR}/start ;; *) echo "Usage: $0 start|stop|restart" exit 1 ;; esac exit 0 ============= Depending on your system, you may create symlinks to this file in /etc/rc*.d/SXXzope and /etc/rc*.d/KXXzope. Generally putting symlinks in the default run level start directory is enough (see /etc/inittab for this) HTH --Gilles ----- Original Message ----- From: "alienoid" <alienoid@is.lg.ua> To: <zope@zope.org> Sent: Wednesday, July 03, 2002 1:43 PM Subject: [Zope] Automatic Zope startup
Hello zope users,
What I have to do to start Zope automatically from /etc/rc.d/init.d? Thanks in advance
-- Best regards, alienoid mailto:alienoid@is.lg.ua
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
participants (3)
-
alienoid -
Garry Steedman -
Gilles Lenfant