what is your OS/Version?
Is is possible to see what is the current apache config for "Listen" directive.
recommendation from namol would cause Apache to start and would listen on 127.0.0.1 (loopback), which should work if you are working on the server itself. but if you are working a separate machine, then you may not be able to connect to apache.
by default the configuration should have:
Listen 80
which would cause apache to bind to port 80/tcp on all active network interfaces running tcp/ip.
cheers.
Main Topics
Browse All Topics





by: namolPosted on 2007-10-05 at 08:42:04ID: 20022786
The IP address 0.0.0.0 is telling us that apache is binding to all unassigned address at port 80. Try making the IP address 127.0.0.1 in your httpd.conf file and then restart apache. The line should be similiar to this: Listen 0.0.0.0:80 so you would change it to Listen 127.0.0.1:80