IE8 will not install SSL certificate

I have my own SSL for development purposes. Usually, when IE provides you with a WARNING, you can simply install the certificate, forward the IE, and return to the server without warning. In IE8, I cannot avoid the warning. I installed the certificate in each store without success using MMC and certificate manager in IE8. WHAT DO I NOT MISS ?!

+4
source share
4 answers

Add your site to trusted sites. Then you will have the opportunity to install the certificate after clicking the "Certificate Error" window, and then "View Certificate."

+3
source

What certificate are you trying to install?

You must install the ROOT certificate, not the END-ENTITY certificate signed by this self-tuning root. It must enter the trusted root certificate store.

+1
source
  • Make sure your CommonName certificate matches the domain name . For example, if your site is available at "https://www.example.com", CommonName should be "www.example.com". If this does not match, nothing will be done in the second and third steps.

  • Launch IE8 in Admin Mode and navigate to the HTTPS URL. Continue beyond the warning, then view the site’s certificate to open the Install Certificate button.

  • Add the certificate to trusted CA root certificates .

  • Restart IE8 in protected mode, then go to the HTTPS URL again. All warnings should be removed.

+1
source

I could not install the certificate from IE. I had to finally use MMC (Management Console). Instructions here: http://technet.microsoft.com/en-us/library/cc757688(v=ws.10).aspx

0
source

Source: https://habr.com/ru/post/1286731/


All Articles