After adding the port 443 entry in Virtualhost and restarting the apache server I got following error:
Starting httpd: httpd: Could not reliably determine the server’s fully qualified domain name, using localhost.localdomain for ServerName
[Tue Nov 01 11:49:10 2011] [warn] _default_ VirtualHost overlap on port 443, the first has precedence
(98)Address already in use: make_sock: could not bind to address [::]:443
I fixed above issue by changing the httpd.conf (apache configuration file)
just add the following line
NameVirtualHost *:443
After this just restart the apache server. This will solve the issue.
The post VirtualHost overlap on port 443, the first has precedence appeared first on DIG into CMS.