ssl issue
Just for the people have error (98)Address already in use: make_sock: could not bind to address [::]:443
my suggestion:
I had this problem on centos 6.4
1)close Listom *443 in /etc/httpd/conf.d/ssl.conf
2)put the following self-certificate at the end of ssl.conf:
SSLCertificateFile /etc/pki/tls/certs/ca.crt
SSLCertificateKeyFile /etc/pki/tls/private/ca.key
3)Then add the following to httpd.conf file
NameVirtualHost *:443
<VirtualHost 192.168.0.12:443>
SSLEngine on
SSLCertificateFile /etc/pki/tls/certs/ca.crt
SSLCertificateKeyFile /etc/pki/tls/private/ca.key
DocumentRoot /usr/share/phpMyAdmin
<Directory "/usr/share/phpMyAdmin">
AllowOverride All
</Directory>
ServerName yourdomain
</VirtualHost>
4)Restat apache
|