Installed SSL certificate in certificate store, but it's not in IIS certificate list

后端 未结 17 1471
轻奢々
轻奢々 2020-12-13 05:49

After installation of a wildcard SSL certificate into the certificate store, the certificate does not appear in the IIS certificate list for use with site bindings.

17条回答
  •  隐瞒了意图╮
    2020-12-13 06:28

    If you are using Godaddy certificate, then the issue is that the machine on which the certificate request is created and the machine on which is you are trying to complete the request are different. So do the following:

    1. Use the "generated-private-key.txt" file that was created the godaddy. Use this file to create .pfx certificate(with private key) you can use OpenSSL command:

      openssl pkcs12 -export -out {mydomain}.pfx -inkey generated-private-key.txt -in {your .crt file}

    2. The above command will generate certificate with private key {mydomain}.pfx.

    3. Import this certificate in IIS using "Import" option

提交回复
热议问题