Posted by:
CyberSpatium
(---.hsd1.or.comcast.net)
IIS uses the same port as Apache. You need to make sure IIS is not running, or Apache will not start.
You can easily make Apache listen on a different port by editing the httpd.conf file. The default port used is 80. Other standard http ports are 81 and 8080.
Open httpd.conf and find this line:
Listen 80
To change it to port 81 use:
Listen 81
To change it to port 8080, use:
Listen 8080
Save the file, and start apache.
If that does not work, make sure you firewall allow Apache.