Hey geeks I need help. As the title indicates, I cannot run Apache on port 80. If I configure my httpd.conf to any other port (above 1024) it works perfectly. Here is my file :
#Make sure to only have this line once in your configuration
NameVirtualHost 127.0.1.1:80
# This is the configuration for your project
Listen 127.0.1.1:80
<VirtualHost 127.0.1.1:80>
ServerName www.mgcpictures.com.localhost
DocumentRoot "/var/www/MGC/web"
DirectoryIndex index.php
<Directory /var/www/MGC/web">
AllowOverride All
Allow from All
</Directory>
Alias /sf /var/www/MGC/lib/vendor/symfony/data/web/sf
<Directory "/var/www/MGC/lib/vendor/symfony/data/web/sf">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
When I try to run Apache, here's the error I get:
waiting (98)Address already in use: make_sock: could not bind to address 0.0.0.0:80
I don't think I have anything else listening on port 80.
Any idea?