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

  • I'd venture a guess that you'll need to push it through the setup process with the wrong name, then manually adjust the name afterward - probably in the registry. [This image](http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-69-06-metablogapi/clip_5F00_image084_5F00_7C9B55FC.gif) has a "URL from registry" line, see if you can track down where that's coming from? – Shane Madden Nov 19 '14 at 19:16
  • thanks @ShaneMadden you led me down a path that led to the answer below. – Question Asker Nov 19 '14 at 22:23

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.