I have installed Apache 2.0.58 together with PHP 5.1.4. When I start the server using ./apachectl start
, I manage to get the server running to serve HTTP as well as PHP pages, but when I try to start SSL for HTTPS using ./apachectl startssl
, I get the error below:
(125)Address already in use: make_sock: could not bind to address [::]:54912
no listening sockets available, shutting down
Unable to open logs
When I run netstat -an | grep 54912
I don't see that port 54912 is being used at all. For reference, I hosted my HTTPS page on port 54912, and while in "httpd.conf" it already has the Listen 54912
directive, I also changed the file "ssl.conf" to Listen 54912
from the default Listen 443
for https.
Any idea how I can get my server to run and serve HTTPS?