In your httpd.conf, you have a SSLCertificateKeyFile option set. This refers to your private key file. It's probably in PEM format, and should be able to be imported directly into Windows's certificate store.
If it can't be, you need to create a PKCS#12 (aka PFX) file. To do this, you do (the bracketed terms are placeholders for what you need, just type the actual filenames -- they are the options in your httpd.conf with the same name): openssl pkcs12 -in [SSLCertificateFile.pem] -inkey [SSLCertificateKeyFile.pem] -name "GoDaddy-signed server certificate" -out godaddyssl.pfx -certfile [SSLCACertificateFile.pem] Some of the options may not apply to you. For example, your key may already exist in the SSLCertificateFile. If this is the case, you can skip the "-inkey SSLCertificateKeyFile.pem" part. Type 'man pkcs12' on your Linux machine for more information. -Kyle H On Thu, Aug 28, 2008 at 1:23 PM, Bart Wahlgren <[EMAIL PROTECTED]> wrote: > My company currently has a wildcard SSL certificate purchased from Go Daddy. > It's installed on a Linux Apache web server we are going to deploy a Windows > web server to support a different application. Go Daddy has told me that we > can use the certificate on more than one server concurrently. To do this we > need to export the private key from the server that generated the CSR. > > > > Can someone tell me what the commands are for exporting the private key off > of the linux machine? > > > > Thanks > > > > Bart Wahlgren > > ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List openssl-users@openssl.org Automated List Manager [EMAIL PROTECTED]