
August 30th, 2000, 03:16 PM
|
|
Junior Member
|
|
Join Date: Aug 2000
Posts: 3
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
I can't find my startup script(apachectl) on my RHat 6.2 box either.
This is what I use to start mine:
From .bash_profile:
<BLOCKQUOTE><font size="1" face="Verdana,Arial,Helvetica">code:</font><HR><pre>
HTTPD=/usr/bin
CONF=/etc/httpd
export HTTPD CONF
alias stopapache='kill -TERM `cat /var/run/httpd.pid`'
alias startapache='$HTTPD/httpd -f $CONF/conf/httpd.conf'
[/code]
|