From owner-freebsd-questions Fri Jul 14 23: 7:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.gmx.net (pop.gmx.net [194.221.183.20]) by hub.freebsd.org (Postfix) with SMTP id D4CEB37C22E for ; Fri, 14 Jul 2000 23:07:17 -0700 (PDT) (envelope-from sirabyss@gmx.net) Received: (qmail 14766 invoked by uid 0); 15 Jul 2000 06:07:13 -0000 Received: from p3ee05d0d.dip0.t-ipconnect.de (HELO abysstwo.abyssworld.de) (62.224.93.13) by mail.gmx.net with SMTP; 15 Jul 2000 06:07:13 -0000 Message-Id: <4.3.2.7.2.20000715074126.00a952a0@pop.gmx.net> X-Sender: 565549@pop.gmx.net X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Sat, 15 Jul 2000 08:14:33 +0200 To: Sam Carleton From: Daniel Haischt Subject: Re: Getting apache to start on bootup Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <396FE7F2.D7D8AE2A@miltonstreet.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hiya, if you installed apache from the ports collection, which is recommended, you should already have a startup script called apache.sh in /usr/local/etc/rc.d maybe it's not executable, so mark it as executable via chmod a+x apache.sh this should help. if you don't have such a script put the following lines into a newly created apache.sh file. #!/bin/sh [ -x /usr/local/sbin/apachectl ] && /usr/local/sbin/apachectl startssl > /dev/null && echo -n ' apache' note: if you don't have apache + mod_ssl replace the startssl with start! regards daniel haischt -- At 00:14 15.07.00 -0400, you wrote: >I have compiled and installed apache. What apprach do folks recommend >to getting apache to start on bootup? > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message