IIS7, SQL 2008 and ASP.NET MVC security - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T19:32:04Z http://stackoverflow.com/feeds/question/454497 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/454497/iis7-sql-2008-and-asp-net-mvc-security 4 IIS7, SQL 2008 and ASP.NET MVC security Bob Yexley 2009-01-18T02:06:17Z 2009-10-19T16:17:08Z <p>I have an ASP.NET MVC application that I'm working on. I've been developing it on Windows Server 2003 with IIS6 and SQL 2008 Express, and everything was working great. I recently decided to try out the Windows 7 beta, so now I'm using IIS7, and have run into a problem with connectivity to my database that I can't seem to figure out.</p> <p>I can run/debug the app just fine, but whenever I try to access a page that needs to access the database, I get the following error:</p> <p>"Cannot open database "MyDatabaseName" requested by the login. The login failed. Login failed for user 'IIS APPPOOL\MyApplicationName'."</p> <p>I've obviously got some security configuration setup incorrectly, but I can't seem to find any good documentation on <em>how</em> to set it up correctly. I've tried giving NETWORK SERVICE permissions on the database, but that didn't seem to work. Anyone know what I need to do to give "IIS APPPOOL\MyApplicationName" permissions to this database? Am I missing something obvious?</p> <p>Thanks...</p> http://stackoverflow.com/questions/454497/iis7-sql-2008-and-asp-net-mvc-security/454520#454520 1 Answer by Sam_Cogan for IIS7, SQL 2008 and ASP.NET MVC security Sam_Cogan 2009-01-18T02:24:41Z 2009-01-18T02:39:50Z <p>This error usually means that the user that your site is running as (or more to the point the application pool), does not have permissions to use the DB. You can either check in IIS what user the pool is running under and give them permissions, or instead change your SQL connection string to not use trusted authentication and supply the credentials of a user that does have permission in the connection string.</p> <p>Edit: If you right click on the pool Identity section and go to properties, it should come up with a box that lets you either choose from 3 builtin system accounts, or specify your own account. Either give one of the builtin accounts permission for the DB, or use an account that has permission. Or leave it as is and change your connection string.</p> http://stackoverflow.com/questions/454497/iis7-sql-2008-and-asp-net-mvc-security/454528#454528 0 Answer by Bob Yexley for IIS7, SQL 2008 and ASP.NET MVC security Bob Yexley 2009-01-18T02:32:37Z 2009-01-18T02:32:37Z <p>The "Identity" property for my ApplicationPool is currently set to "ApplicationPoolIdentity", which doesn't seem to be an existing account that I can add to SQL Server. Does that mean that I've not actually <em>set</em> the account and I need to? Does this need to be set to NETWORK SERVICE or something like that?</p> http://stackoverflow.com/questions/454497/iis7-sql-2008-and-asp-net-mvc-security/454675#454675 2 Answer by Bob Yexley for IIS7, SQL 2008 and ASP.NET MVC security Bob Yexley 2009-01-18T04:51:08Z 2009-01-18T04:51:08Z <p>Well...changing the ApplicationPoolIdentity property and setting it to NETWORK SERVICE seems to have fixed my problems. Not sure if that's the "right" way to do things or not (as in, I'm not sure if that's the recommended way to do things in IIS7 or not), but it seems to at least be working and has gotten me past this hang-up for now. Thanks.</p> http://stackoverflow.com/questions/454497/iis7-sql-2008-and-asp-net-mvc-security/455330#455330 -1 Answer by Bob Yexley for IIS7, SQL 2008 and ASP.NET MVC security Bob Yexley 2009-01-18T15:35:34Z 2009-01-18T15:35:34Z <p>I'm using windows authentication.</p> http://stackoverflow.com/questions/454497/iis7-sql-2008-and-asp-net-mvc-security/455493#455493 0 Answer by Todd Smith for IIS7, SQL 2008 and ASP.NET MVC security Todd Smith 2009-01-18T17:17:07Z 2009-01-18T17:17:07Z <p>The first step is to verify which account your website is running under. Create a simple aspx page with:</p> <pre><code>&lt;%@ Page Lenguage="C#" %&gt; &lt;% Response.Write(System.Security.Principal.WindowsIdentity.GetCurrent().Name); %&gt; </code></pre> <p>If you're using windows authentication the WindowsIdentity account will need to have a login in your SQL Server. Under Security -> Logins -> Login New you'll want to add whatever name that was displayed by WindowsIdentity and make sure Windows authentication is selected.</p> <p>If you ever happen to move your database to a separate machine you'll have to create a domain account and use impersonation in your web.config. Google <code>&lt;identity impersonate="true"&gt;</code> for more info.</p> http://stackoverflow.com/questions/454497/iis7-sql-2008-and-asp-net-mvc-security/455823#455823 0 Answer by Bob Yexley for IIS7, SQL 2008 and ASP.NET MVC security Bob Yexley 2009-01-18T20:26:00Z 2009-01-18T20:26:00Z <p>I'm familiar with the idea of giving permissions to the user that the application is running under...my problem is that in IIS7, the "user" seems to be virtual or something strange like that. Prior to me changing the "Identity" property of the Application Pool properties to NETWORK SERVICE, it was set to "ApplicationPoolIdentity", and the error I was getting was that "IIS APPPOOL\MyApplicationName" didn't have access to the database. When I attempted to add the "IIS APPPOOL\MyApplicationName" <em>user</em> to the database, it didn't appear to exist...not that I could find anyway.</p> <p>So my ultimate problem is not understanding or being able to find any good documentation on how the IIS7 security model works. When I created the application, it seemed to create an AppPool with the same name just for this application. I don't know exactly what changes I need to make to give the application and/or the user it runs under privileges to the database, considering the fact that the user that the AppPool runs as doesn't appear to <em>actually</em> exist.</p> <p>As I mentioned, changing the Identity of the AppPool to NETWORK SERVICE seems to have worked for now, but I'm trying to find out what the best practice is for this kind of thing under IIS7. Thanks.</p> http://stackoverflow.com/questions/454497/iis7-sql-2008-and-asp-net-mvc-security/456908#456908 0 Answer by cottsak for IIS7, SQL 2008 and ASP.NET MVC security cottsak 2009-01-19T08:41:19Z 2009-01-19T08:41:19Z <p>leave the hard problems for someone else - </p> <p>create a sql user and use SQL Auth. :D</p> http://stackoverflow.com/questions/454497/iis7-sql-2008-and-asp-net-mvc-security/499794#499794 0 Answer by Shawn Mehaffie for IIS7, SQL 2008 and ASP.NET MVC security Shawn Mehaffie 2009-01-31T23:28:05Z 2009-01-31T23:28:05Z <p>If you look in the description of the field it states that running under "Network Services" account is the recommended account to use. Not sure why in Win7 it defaults to the ApplicationPoolIdentity setting.</p> http://stackoverflow.com/questions/454497/iis7-sql-2008-and-asp-net-mvc-security/733186#733186 1 Answer by Jussi Bergström for IIS7, SQL 2008 and ASP.NET MVC security Jussi Bergström 2009-04-09T07:29:08Z 2009-04-09T07:29:08Z <p>Here is an article that explains why AppPoolIdentities are in use; basically, it's about enhanced security: <a href="http://learn.iis.net/page.aspx/624/application-pool-identities/" rel="nofollow">http://learn.iis.net/page.aspx/624/application-pool-identities/</a></p> <p>(That article claims I can use these virtual accounts just like any regular account but on my Windows Server 2008 that does not seem to be possible; adding e.g. IIS AppPool\DefaultAppPool just produces an error: "The following object is not from a domain listed in the Select Location dialog box, and is therefore not valid.")</p> http://stackoverflow.com/questions/454497/iis7-sql-2008-and-asp-net-mvc-security/907574#907574 0 Answer by Philippe for IIS7, SQL 2008 and ASP.NET MVC security Philippe 2009-05-25T18:02:51Z 2009-05-25T18:02:51Z <p>I have the exact same issue. I'm running Windows 7 RC. When I'm trying to usa a .mdf file (located in App_Data), there is now way to make that thing work. I did try to change the AppPool's identity for LocalSystem, but it simply won't work.</p> <p>If I use a "standard" database, then it will work if I'm using LocalSystem, but it won't work with the famous 'IIS APPPOOL\DefaultAppPool'.</p> <p>I find it a bit disturbing not to find any information on that matter, it seems that the 'IIS APPPOOL\DefaultAppPool' user is totally useless if you are using a database of any kind...</p> <p>I have it running, but I'm also bit frustrated not to understand the security model, as stated by ryexley.</p> http://stackoverflow.com/questions/454497/iis7-sql-2008-and-asp-net-mvc-security/1031774#1031774 2 Answer by J. Pablo Fernández for IIS7, SQL 2008 and ASP.NET MVC security J. Pablo Fernández 2009-06-23T10:34:17Z 2009-06-23T10:34:17Z <p>The error means the web application doesn't have access to your database. On Windows 7 / IIS 7, by default each application pool has its own user. It seems the idea is to improve security by restricting what that web application can do (in case it gets compromised and controlled from the outside). You can change what user the application pool is running under but that will defeat its own purpose. A better way seems to give the pool's user the needed permissions (and not a bit more).</p> <p>On the SQL Management Studio connect to the server you want your web app to connect (tested with SQL server 2008). Go to</p> <pre><code>Security -&gt; Log ins </code></pre> <p>right click, New Log in. In the form that comes up leave everything as default except username, where you have to type whatever username the web app is trying to use, in this case 'IIS APPPOOL\MyApplicationName'. Note that the search function of that dialog fails to find or check as valid that user, but nevertheless it works.</p> <p>Still on the SQL Management Studio connected to the server go to</p> <pre><code>Databases -&gt; *YOUR-DATABASE* -&gt; Security -&gt; Users </code></pre> <p>right click and New User. I'm not sure if the user name field there has any effect, I just set it the last part of the username, like MyApplicationName. Then I've set the login name to IIS APPPOOL\MyApplicationName. You can click on the ... button and use the check and search, this time it works. If you don't do the previous step, the user will not be present here. Then give it whatever permissions you want to this user, like db_datareader.</p> <p>And that's it, you've given permission. If lack of permissions was your problem, then it should be solved (or at least, I've just solved it that way).</p> <p><strong>I have a total amount of 2hs of experience with IIS and about three weeks with SQL Server and less than two months with Microsoft technologies so take my advice with a grain of salt, I can be totally wrong</strong>. (If another person can confirm these are the right steps, feel free to remove the last warning).</p> http://stackoverflow.com/questions/454497/iis7-sql-2008-and-asp-net-mvc-security/1507569#1507569 0 Answer by bonder for IIS7, SQL 2008 and ASP.NET MVC security bonder 2009-10-02T03:04:13Z 2009-10-02T03:04:13Z <p>If you follow Mr. Fernández' advice, you will get everything working. This is the new way of giving least privilege to a site.</p> <p>So don't do the easy, less secure thing (NETWORK SERVICE). Do the right thing. Scroll up. ;)</p> http://stackoverflow.com/questions/454497/iis7-sql-2008-and-asp-net-mvc-security/1589658#1589658 0 Answer by Eric Falsken for IIS7, SQL 2008 and ASP.NET MVC security Eric Falsken 2009-10-19T16:17:08Z 2009-10-19T16:17:08Z <p>If you are NOT using ActiveDirectory, then ignore all of the other solutions above. The confusion stems from the new ApplicationPoolIdentity setting default in IIS 7.5 (MS keeps changing the identity mechianisms)</p> <ol> <li>Open <strong>SQL Management Studio</strong>, connect to your local machine as an admin.</li> <li>Expand the <strong>Security</strong> branch.</li> <li>Right click on <strong>Logins</strong> and select <strong>New Login</strong></li> <li>Into the <strong>Login Name</strong> field, type "<strong>IIS APPPOOL\*MyApplicationName*</strong>". Do <em>NOT</em> click the search button. The user profile dosn't actually exist on the local machine, it's dynamically created on demand.</li> </ol>