Date: Sat, 15 Jul 2000 08:14:33 +0200 From: Daniel Haischt <sirabyss@gmx.net> To: Sam Carleton <scarleton@miltonstreet.com> Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Getting apache to start on bootup Message-ID: <4.3.2.7.2.20000715074126.00a952a0@pop.gmx.net> In-Reply-To: <396FE7F2.D7D8AE2A@miltonstreet.com>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4.3.2.7.2.20000715074126.00a952a0>