>
> Well if you kill all the existing Apache processes (find the parent
> pid using 'ps axfw | grep httpd' and 'kill -15 nnnn' where nnnn is the
> parent process id) then repeat the command I gave without the '-t'
> switch your Apache should run OK.
ok
[root@panda sbin]# ps axfw | grep httpd
901 pts/0 S 0:00 \_ grep httpd
676 ? S 0:00 /usr/sbin/httpd -D HAVE_PERL -D HAVE_PROXY -D
HAVE_SS
[root@panda sbin]# kill -15 676
[root@panda sbin]# ./httpd -t -f/etc/httpd/conf/httpd.conf
Syntax OK
[root@panda sbin]#
[root@panda sbin]# ps auxww | grep httpd
root 910 0.1 0.7 3328 1516 ? S 17:06 0:00 httpd
apache 911 0.0 0.8 3528 1620 ? S 17:06 0:00 httpd
apache 912 0.0 0.8 3528 1620 ? S 17:06 0:00 httpd
apache 913 0.0 0.8 3528 1620 ? S 17:06 0:00 httpd
apache 914 0.0 0.8 3528 1620 ? S 17:06 0:00 httpd
apache 915 0.0 0.8 3528 1620 ? S 17:06 0:00 httpd
apache 916 0.0 0.8 3528 1620 ? S 17:06 0:00 httpd
apache 917 0.0 0.8 3528 1620 ? S 17:06 0:00 httpd
apache 918 0.0 0.8 3528 1620 ? S 17:06 0:00 httpd
root 922 0.0 0.3 1516 580 pts/0 R 17:06 0:00 grep httpd
[root@panda sbin]#
whoa!!!!!!!!!
Ged thanks so much!
wow.
>
> You looked at the Guide lately?
pardon my ignorance....what?
a little background:
i am a html/dhtml/javascript/flash guy who had a little linux experience.
my boss found this out and told me to setup two servers with linux 7.0 and
get qmail and ezmlm and going. and then get ezmlm-web.cgi going. i got
lucky with the first two, but the last one opened up a whole nasty suid
issue. apparently linux doesn't like suid scripts by default without some
major tweaking. so i have been tweaking the hell out of httpd to try and
get get a workaround. the only way i got it to work was by having httpd
run as the same user as the cgi file.
but that is half-ass. from what i read i have to compile suexec
appropiately. but i am not sure about that either.
thanks again,
matt
>
>
> 73,
> Ged.