How do I get the .key file, to put on the server (for use by Apache httpd)

2013-09-30 Thread Ted Byers
I issued the following command (with my own name in place of privkey) openssl genrsa -out privkey.pem 2048 I then made the csr using openssl req -new -key privkey.pem -out cert.csr That is simple enough. But, I need a .key file to deploy on the server beside the crt files. If I understand

Re: How do I get the .key file, to put on the server (for use by Apache httpd)

2013-09-30 Thread Kelly John Rose
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 If the PEM file contains the private key, then openssl rsa -in veripay.pem -out gw.veripay.co.uk.key should work as expected. pem is just a wrapper around the data, so it should just pull it out of there if it's in there to start. On 30/09/2013

RE: How do I get the .key file, to put on the server (for use by Apache httpd)

2013-09-30 Thread Dave Thompson
From: owner-openssl-us...@openssl.org On Behalf Of Kelly John Rose Sent: Monday, September 30, 2013 14:29 If the PEM file contains the private key, then openssl rsa -in veripay.pem -out gw.veripay.co.uk.key should work as expected. pem is just a wrapper around the data, so it should