Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm getting the error below when I try and access SSRS on SQL Server 2008 R2

I'm not sure how many others have started using SQL 2008 R2 SSRS, but I am having an issue with getting the error below when I try and access the reports server url

User does not have required permissions. Verify that sufficient permissions have been granted and Windows User Account Control (UAC) restrictions have been addressed

I can access the url if I run IE as an administrator

share|improve this question
Here is another solution - stackoverflow.com/questions/15190799/… – sequel.learner Mar 3 at 21:44

4 Answers

up vote 28 down vote accepted

This did the trick for me. http://thecodeattic.wordpress.com/category/ssrs/. Go down to step 35 to see the error you are getting. Don't forget to set the security at the site level *AND * at the folder level. I hope that helps.

Rick

share|improve this answer
Got there myself, but this is a good summary – AJM Sep 17 '10 at 9:33
@AJM, it would have been good if you shared how you had fixed it... because it did not work with me... – AnarchistGeek Jul 15 '11 at 14:56
1  
In addition make sure intranet settings are enabled in IE. Even when typing my password in the authentication popup it didn't work for me without intranet settings enabled. – Arnoud Mar 23 '12 at 18:23
After running IE in elevated mode ("as administrator") I had to enter the username and password for my local admin account; even my domain account that was in the local admins group wasn't accepted. – Thorin Aug 27 '12 at 21:16

This article helps you to resolve this issue in Reporting Services: http://www.soheib.com/technical-knowledge/sql-server-2012-reporting-services-uac-user-access-control/

Its a step-by-step guide.

share|improve this answer
Except when the problem is not UAC but is instead a failure to provide folder level security access, as mentioned in @RickArthur's answer. (Just a hint for frazzled DBAs who have tried everything else.) – Michael Todd Sep 19 '12 at 17:48

I think I tried everything mentioned here, and it still didn't work. Turns out it didn't recognize my domain login to the server as being in the Administrators group because it was implicit through my membership in another group ( Developers ) which is a member of the Administrators group.

I added my individual domain\login to the Administrators group explicitly, logged off and then logged back on to the box, and IE admitted me to the Report Manager homepage without requiring me to run IE as administrator.

share|improve this answer

I made a solution for this frustrating problem at the link given below -

User mycomputer\myloginName does not have required permissions

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.