Whoa! Installing SSL Cert Blew Up Apache

I have been trying to reinstall a SSL cert on my server and it caused Apache to fail.

Here is the last thing I did:
Type the following command to generate a private key that is file encrypted. You will be prompted for the password to access the file and also when starting your webserver: Warning: If you lose or forget the passphrase, you must purchase another certificate.
openssl genrsa -des3 -out domainname.key 1024

You could also create a private key without file encryption:

openssl genrsa -out domainname.key 1024

Note: We recommend that you name the private key using the domain name that you are purchasing the certificate for ie domainname.key
I was following the directions here:
http://ev1servers.net/english/suppor...sl_install.asp

Why would this cause httpd to fail?

Here are some of the error messages from my apache log:
PHP Code:
[Thu Jan 27 23:55:56 2005] [error] [client 222.43.115.9File does not exist: /home/notesetc/public_html/down/get.asp
[Thu Jan 27 23:56:01 2005] [error] [client 219.131.128.138File does not exist: /home/notesetc/public_html/down.asp
[Thu Jan 27 23:56:17 2005] [error] [client 218.80.210.170File does not exist: /home/notesetc/public_html/logo.gif
[Thu Jan 27 23:56:19 2005] [error] [client 61.53.117.225File does not exist: /home/notesetc/public_html/logo.gif
[Thu Jan 27 23:56:19 2005] [error] [client 220.198.14.22File does not exist: /home/notesetc/public_html/down.asp
[Thu Jan 27 23:56:29 2005] [errorPHP Warning:  mysql_connect(): Can't connect to local MySQL server through socket '/var/tm 

 

 

 

 

Top