asp.net windows authentication to sql server

前端 未结 5 1959
闹比i
闹比i 2021-01-14 15:44

I can not seem to get sql server to recognize my credentials.

Asp.net recognizes me when I login but when I execute a sql command I get a login failed message.

相关标签:
5条回答
  • 2021-01-14 16:21

    This is key = The IIS server and SQL server are on different machines. You're facing the classic double hop issue. Think of it in this way:

    • You access the web application under your credentials
    • IIS in this case has to present who you say you are to the SQL Server
    • IIS says, "Why hello SQL Server, I'm passing on Tony's kerberos creds, they are legit"
    • SQL Server says, "Hmmm, IIS I'm not sure I trust you, I need proof that you are trusted to present these credentials to me".

    Thus once you enable delegation as mentioned by Remus, your SQL Server will trust the credentials your IIS server is presenting on your behalf.

    In terms of security, under delegation, it would be wise to choose:

    Trust this computer for delegation for specified services only | Use Kerberos only | and then underneath the "Services to which this account can present delegated credentials" make sure you explicitly set only the server/port you need.

    0 讨论(0)
  • 2021-01-14 16:21

    Are your ISS server and SQL Server running on the same machine?

    If not, Active Directory has to be configured to allow your IIS server to impersonate your accout towards the SQL Server. See How To: Use Protocol Transition and Constrained Delegation in ASP.NET 2.0.

    0 讨论(0)
  • 2021-01-14 16:28

    You also need to enable constrained delegation:

    • Enabling Constrained Delegation
    • How To: Use Protocol Transition and Constrained Delegation in ASP.NET 2.0
    • Windows Server 2003 Constrained Delegation (IIS 6.0)
    0 讨论(0)
  • 2021-01-14 16:44

    Long story short: IIS server should have "trusted for delegation" checkbox checked in Active Directory.

    0 讨论(0)
  • 2021-01-14 16:44

    You need to set you credentials in Application Pool. - Open IIS - Select Application Pools - Enter the name, select .Net framework version and click OK - Select the new added application pool and click on Advanced Settings.. - In the Process Model section click on Identity - choose custom account and enter the AD username, password, confirm password and click OK - Select your application and in the Basic settings choose your application pool just created.

    Hope this helps

    0 讨论(0)
提交回复
热议问题