ssl apache

Starting web server (apache2)...(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80 no listening sockets available, shutting down Unable to open logs failed!

I’ve just enabled ssl on a virtual host but when I re/start apache i get this error. What’s the problem?
This virtual host has a private ip.

Thanks<br><br>Post edited by: Maurizio1230, at: 2008/11/02 08:21

It sounds like there might be a copy of Apache running that shouldn’t be.

If you log in from the command line, you could type:

/etc/init.d/httpd stop (or "/etc/init.d/apache2 stop" on Ubuntu/Debian)

Then run this to see if there are any other copies of Apache running:

ps auxw | grep httpd (or "ps auxw | grep apache2" on Ubuntu/Debian)

And if you see any, kill those processes, then try starting Apache back up.
-Eric

Also make sure that ssl is running on port 443. This may be obvious but I had it once per accident on port 80 also and ran into issues