quote:
Originally posted by bazoukas [The F*en Linux Militant]:
Nothing. Still same crap.
VoidMan you didnt even put your Ip address in the configuration dialogue?
I take it back, I must have edited the httpd.conf file. I do it out of habit after a fresh install. The first thing I do is make httpd work. But I definitely did not use the graphical configuration tool. From what I can tell the only thing I changed in the httpd.conf file from default is the "ServerName" tag. Mine looks like this:
ServerName voidsmachine.voidsdomain.home:80
You have to be able to resolve the server from the client using the hostname you define here and if you use a name the server itself must know that the name is associated with it's ethernet interface (I have a DNS server with an entry for my RedHat 8.0 machine which resolves voidsmachine.voidsdomain.home to the eth0 IP address on that box).
Also make sure the server is up and running:
$ su -
# service httpd status
Make sure http sockets are in listen state:
# netstat -a | grep http
The above command on my machine returns:
Can the RedHat server ping outside of its local subnet?
Can you telnet to port 80?
# telnet xxx.xxx.xxx.xxx 80
type a few chars and press enter.
Also before doing *anything* check the /etc/httpd/logs/error_log file.