Date: Sat, 11 Jan 2003 21:15:00 +0000 (GMT) From: 520023893678-0001@t-online.de (P. U. Kruppa) To: freebsd-questions@FreeBSD.ORG Subject: Zope does not start on boot-up Message-ID: <20030111210350.C11310-100000@small.pukruppa.de>
next in thread | raw e-mail | index | archive | help
Hi, I just installed Zope on my -STABLE machine. Everything seems to be working fine, but I only can start it manually via # /usr/local/www/Zope/start The rc.d-script that came with the port does not do anything - neither manually - nor on boot-up (besides echoing " Zope"). Its permissions are -rwxr-x-- . Here it is: -------------------------------------- #!/bin/sh case "$1" in start) umask 077 nohup /usr/local/www/Zope/start \ -w 8080 \ -f 8021 \ -m '' \ -u www \ -p /usr/local/www/cgi-bin/Zope.cgi \ >> /usr/local/www/Zope/var/zope-output 2>&1 & echo -n " Zope" ;; stop) /usr/local/www/Zope/stop echo -n " Zope" ;; *) echo "Usage: `basename $0` {start|stop}" >&2 ;; esac exit 0 ------------------------------------ Any ideas what could be wrong with it? Regards and thanks, Uli. *-----------------------------------* * Peter Ulrich Kruppa * * - Wuppertal - * * Germany * *-----------------------------------* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030111210350.C11310-100000>