Hi @Victor Xue ,
An HTTPS binding already exists for the specified IP address and port combination.
Which means a IP:Port combination was still bound to the old certificate. Probably one of the more sensible error messages you get in SSRS. You need to delete existing bindings.
Firstly, get a list of current bindings.
In order to check what certificate is bound to which IP:Port combination, please open Command Prompt as Administrator and type:
netsh http show sslcert
And sure enough, the old certificate was still bound to the following IP:Port combination: [::]:443
Now you can delete the binding like following:
netsh http delete sslcert ipport=[::]:443
Then you can rebind SSRS Web Service URL to your SSL Certificate.
Best Regards,
Joy
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Remove the IP:Port combination shown by the netsh http show sslcert command. Then select your certificate in the web service URL in the configuration manager. Currently you need to unbind the old certificate and then bind it again.
@Joyzhao-MSFT . Thanks
Hi @Victor Xue ,
If the answer is helpful, please click "Accept Answer" and upvote it.
Joy
Sign in to comment