Kevin O'Gorman wrote: > As of today, my apache2 web server seems to refuse to start. I've tried > a system reboot, to no avail -- > connections are refused on port 80.
I think that apache will try to create listener on address:port, which have already created (because it is possibly defined that). After this fail apache will die and you can't see any active listener on this port in netstat -l, thats correct. Try to check for twice definition of the same listener. Or, example, if you have listener for 0.0.0.0:80 and you trying to create listener for 1.2.3.4.80. ...or dubble include of the same configuration file? I don't know, if is it possible... Regards, Tomas Krasnican