What are the things to look out for when adding other domain user to your IIS?
Posted
by
Jack
on Server Fault
See other posts from Server Fault
or by Jack
Published on 2012-10-03T06:52:06Z
Indexed on
2012/10/03
9:39 UTC
Read the original article
Hit count: 299
I have a Windows Server 2008 R2 called Jack11
that joined a domain called Watson.org
.
It has IIS 7 installed.
From my understanding, we need to add the following into the web.config file
<system.web>
<identity impersonate="true" />
</system.web>
Also, we need to ensure that the server Jack11
can ping to the domain Watson.org
.
What other setting do we need to setup in order for a user of domain Watson.org
(e.g. the user Watson\User1
to access the application in the Server IIS?
This is because currently, there is a problem as follows:
Exception Details: System.Data.SqlClient.SqlException: Login failed for user 'WATSON\User1'.
The error message was displayed when the user User1
wish to access one of the web application in server Jack11
IIS and that web application also do some retrieval of records from the database, which is installed in SQL Server 2008 Enterprise located in the same server Jack11
.
© Server Fault or respective owner