Tuesday, September 6, 2016

iis 7 - SSL certificate on IIS 7

I am trying to install a SSL certificate on IIS 7. I have download a free trial certificate.



After that, this is the steps what I do:





  1. Click the Start menu and select Administrative Tools.

  2. Start Internet Services Manager and click the Server Name.

  3. In the center section, double click on the Server Certificates button in the Security section.

  4. From the Actions menu click Complete Certificate Request.

  5. Enter the location for the certificate file.

  6. Enter a Friendly name.

  7. Click OK.

  8. Under Sites select the site to be secured with the SSL certificate.


  9. From the Actions menu, click Bindings.This will open the Site Bindings window.

  10. In the Site Bindings window, click Add. This opens the Add Site Binding window.

  11. Select https from the Type menu. Set the port to 443.

  12. Select the SSL Certificate you just installed from the SSL Certificate menu. Click OK.



This is the step where I get the message:




One or more intermediate certificates in the certificate chain are missing.

To resolve this issue, make sure that all of intermediate certificates are installed. For more information, see
http://support.microsoft.com/kb/954755




After this, when I access the web site on its first page, I get this message:




There is a problem with this website's security certificate.





What am I doing wrong?

No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...