From owner-freebsd-questions Sat Jan 11 12:15:45 2003 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64BC437BDDF for ; Sat, 11 Jan 2003 12:15:43 -0800 (PST) Received: from mailout07.sul.t-online.com (mailout07.sul.t-online.com [194.25.134.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE3D643F13 for ; Sat, 11 Jan 2003 12:15:42 -0800 (PST) (envelope-from 520023893678-0001@t-online.de) Received: from fwd00.sul.t-online.de by mailout07.sul.t-online.com with smtp id 18XS2V-0006Cz-01; Sat, 11 Jan 2003 21:15:31 +0100 Received: from pD950C7A2.dip.t-dialin.net (520023893678-0001@[217.80.199.162]) by fwd00.sul.t-online.com with esmtp id 18XS2L-11bnQeC; Sat, 11 Jan 2003 21:15:21 +0100 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> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Sender: 520023893678-0001@t-dialin.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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