Re: Can't start apache on port 80
Is it repeatable? Sometimes you have to wait a while for the port to become free after a previous service has crashed.
Try and see if something is listening on the http port using lsof
lsof -i | grep :http
Try and see if some other apache is running:
ps ax | grep httpd
|