I had a problem installing the SSL certificate in IIS, and below is the step before I get the certificate from my certificate authority.
Created a private key file using OpenSSL using the command "openssl genrsa -out key_name.key 2048 .
The generated .csr file with the command " openssl reqoutout CSR.csr -key key_name.key -new -sha256 .
As soon as I generated the CSR file, I provided the same CSR file in CA to get the certificate.
I received a certificate in .p7b format, which I converted to .cer format.
An installed certificate using the Full Certificate Request option in IIS.
Now the problem is that the newly installed certificate disappears from IIS after the upgrade. I figured out this problem and realized that this is because there is no private key associated with the certificate. My question is, where did the secret key close? I created the CSR using the private key in step 1. Secondly, how do I solve this problem, I still need to install the certificate. Please, help.
source
share