July 11, 201213 yr Apache will not start on my Ubuntu Server. Everytime I try and start Apache I get the following error message (98)Address already in use: make_sock: could not bind to address Any ideas?
July 11, 201213 yr Moderators Check your apache config by running sudo apache2ctl -S Also check to see what else might be listening on port 80 by running sudo netstat -A inet -lnp[/code]You can check for what you have installed as far as Apache goes by running ''.str_replace('', '', 'dpkg --list apache*').''
July 11, 201213 yr Check the following file out to make sure you don't have duplicate entries with the same port. You can only specify on Listen statement per port sudo nano /etc/apache2/ports.conf[/code]
July 11, 201213 yr Author That was my issue. I had one listing that just stated Listen 80 And I had another listing under that which stated Listen 10.6.56.244:80 I removed the second listing and Apache started right up THANK YOU
Create an account or sign in to comment