One of our new clients had a server with error 7023 “An error occurred while using SSL configuration for endpoint 0.0.0.0:443”:
A quick investigation showed, this error has been occurring for months (likely years, but the logs had been overwritten), the server had no certificates at all in the PERSONAL store, and the server did not even have IIS installed.
It is certainly possible that something else, like Apache Web Server, had a binding, but we could not find it.
We think the most likely explanation was a cert that was installed and bound to 8006 and 443 had been removed from the CERTIFICATES > PERSONAL store by some previous IT tech and was now completely useless. So we decided to remove the references:
netsh http show sslcert
to list the certificates in use on the servernetsh http delete sslcert ipport=0.0.0.0:443
netsh http delete sslcert ipport=0.0.0.0:8006
netsh http show sslcert
to make sure the dead certificates are goneThis website uses cookies.