How can I create a PEM file from an SSL certificate?
These are the files that I have available:
.crt
server.csr
server.key
How can I create a PEM file from an SSL certificate?
These are the files that I have available:
.crt
server.csr
server.key
this is the best option to create .pem file
A
pem
file contains the certificate and the private key. It depends on the format your certificate/key are in, but probably it's as simple as this:I was trying to go from godaddy to app engine. What did the trick was using this line:
Exactly as is, but replacing name with my domain name (not that it really even mattered)
And I answered all the questions pertaining to common name / organization as www.name.com
Then I opened the csr, copied it, pasted it in go daddy, then downloaded it, unzipped it, navigated to the unzipped folder with the terminal and entered:
Then I used these instructions from Trouble with Google Apps Custom Domain SSL, which were:
exactly as is, except instead of privateKey.key I used name.unencrypted.priv.key, and instead of www_mydomain_com.crt, I used name.crt
Then I uploaded the public.pem to the admin console for the "PEM encoded X.509 certificate", and uploaded the private.pem for the "Unencrypted PEM encoded RSA private key"..
.. And that finally worked.