-1

I have deployed the code to IIS server by using pipelines. But i got an error: enter image description here

Anyone please help me to solve this issue.

when i try to chnage the certificate it is not chnages in the IIS server

Oviya
  • 19
  • 1
  • 5

1 Answers1

0

You are seeing this error message because there was previously a certificate that was SSL bound to both the IP address and port specified in the SSL binding command. You will first need to run the following command:

netsh http delete sslcert ipport=<IPaddress:portNumber>

When that command runs successfully, you can run the SSL binding command and it will work.

samwu
  • 3,857
  • 3
  • 11
  • 25