RE: SSL Ports 443 Kills Apache?
02-11-2015, 11:01 PM
(This post was last modified: 02-11-2015, 11:02 PM by Cantalupo.)
Yes, truth
Apache fails when:
The problem is when you add "Listen 443" in the httpd-vhosts.conf.
Solution?
Apache fails when:
Code:
root@host:~# sudo service apache2 restart
* Restarting web server apache2 (98)Address already in use: AH00072: make_sock: could not bind to address [::]:443
[fail]
* The apache2 instance did not start within 20 seconds. Please read the log files to discover problems
root@host:~#
The problem is when you add "Listen 443" in the httpd-vhosts.conf.
Code:
################################################################
# Apache VHOST configuration file
# Automatically generated by Sentora 1.0.0
# Generated on: 23:50 10th Feb 2015 BRST
#==== YOU MUST NOT EDIT THIS FILE : IT WILL BE OVERWRITTEN ====
# Use Sentora Menu -> Admin -> Module Admin -> Apache config
################################################################
Listen 80
Listen 443
Solution?