Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Issue #2 - Your options are:</p> <ul> <li>Configure delegation (double-hop authentication) - I haven't done this on IIS7 and it's a bit different to 6, but I believe you will need to enable the web server machine account for delegation in AD, and create an SPN for the web server (eg <code>setspn -A http/&lt;Web Server FQDN&gt; &lt;Domain&gt;\&lt;Machine Name&gt;</code>). Troubleshooting Kerberos can be fairly painful.</li> <li>Grant access to the network resources to the (domain) application pool account and make sure anonymous authentication is turned on ( <code>&lt;anonymousAuthentication enabled="true" userName="" defaultLogonDomain="" /&gt;</code> )</li> </ul> <p><strong>Response to Update:</strong></p> <p>You will need to make sure Kerberos authentication is working for SQL Server. Run the query <code>select auth_scheme from sys.dm_exec_connections where session_id=@@spid</code>; it will return NTLM or KERBEROS. If it's NTLM, you'll need to do some work configuring SQL Server to use Kerberos. Set an SPN in AD for the SQL service account: <code>setspn -A MSSQLSvc/&lt;SQL Server FQDN&gt;:1433 &lt;Domain&gt;\&lt;Sql Service Account&gt;</code>, restart SQL Server and try the query again. You must use TCP/IP as the connection mechanism (this is the default).</p> <p>If you don't have an initial catalog, you'll need to make sure that all of the user logins have a default database that they have access to. I would personally pick one database to be the initial catalog as you may get different behaviour depending on how the login is configured.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload