1

I am trying to setup SSRS access via SSL, and I have followed the instructions here; however, I do not receive a clickable url in the Configuration Manager to click on and test. The url shows as https://+:9443/ReportServer. Based upon this walkthrough it looks like the url is being provided from the certificate. How can I make this work with the wildcard cert where it can be accessed via https://sub.domain.com:9443/ReportServer?

I appreciate any help you can offer. Thanks

1 Answers1

4

the following taken from michael12345's answer here solved my problem.

  1. Shut down the instance.

  2. Delete the reservations with: netsh http delete urlacl url=yoururl

  3. Create new ones with: netsh http add urlacl url=yourdomain:yourport/ReportServer user=MYSERVER\MyAccount

  4. Then I edited the rsreportserver.config URLReservations section to reflect the URL reservations I added above. I'm not sure if this necessary, however I felt I should update it so that consistent URLs are shown throughout the configuration tool and logfiles.

  5. Start the instance again.