Click here to Skip to main content
15,881,709 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
How to solve error 401 when run ssrs (sql server reporting service)
I have need to run sql server reporting service on my server
but it give me error 401
How to solve that error please ?

What I have tried:

How to solve error 401 when run ssrs (sql server reporting service)
Posted
Updated 11-Oct-18 2:19am
Comments
Herman<T>.Instance 5-Oct-18 10:51am    
What do you expect from us with NO information?

1 solution

It's likely that you have not set up Authentication properly. You can't use Windows Authentication so the first thing to try is setting Authenication to Basic.

Alternatively try this solution from this post from VVak[^]
Quote:
Open registry editor - regedit. And navigate to:

HKEY_LOCAL_MACHINE -> SYSTEM -> CurrentControlSet -> Control -> Lsa

Look for key "DisableLoopbackCheck" and check the value in this key. If it is 0, change it 1.

If this key does not exit, create a new key with the same name - "DisableLoopbackCheck" - and assign it the value of 1.

Restart the server. And the issue should be fixed. 
 
Share this answer
 
Comments
Richard Deeming 11-Oct-18 9:45am    
The preferred solution from Microsoft is to specify the BackConnectionHostNames option, rather than disabling the loopback check entirely:
You receive error 401.1 when you browse a Web site that uses Integrated Authentication and is hosted on IIS 5.1 or a later version[^]
CHill60 11-Oct-18 9:47am    
I'm behind the times again :-)
Worth posting your comment as a solution so the OP can accept it when they find it solves their problem

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900