Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We have recently upgraded to IIS7 as a core web server and I need an overview in terms of the permissions. Previously, when needing to write to the file system I would have give the AppPool user (Network Service) access to the directory or file.

In IIS7 I see, as default, the AppPool user is set to ApplicationPoolIdentity. So when I check the task-manager, I see that a user account called 'WebSite.com' is running the IIS Process ('Website.com' being the name of the website in IIS)

However this user account doesn't exist if I try to use that to give permissions. So, how do I determine which user to give the permissions too?

Edit ==============================================================================

See below for the problem in screen shot. Our website (www.silverchip.co.uk) runs on the username SilverChip.co.uk. However when I add pemissions, this user doenst exist!

enter image description here

=================================See AppPool Image

enter image description here

share|improve this question

2 Answers

up vote 51 down vote accepted

ApplicationPoolIdentity is actually the best practice to use in IIS7. It is a dynamically created, unprivelaged account. To add file system security for a particular application pool see IIS.net's "Application Pool Identities". The quick version:

If you application pool is named "DefaultAppPool" (just replace this text below if it is named differently)

  1. Open Windows Explorer
  2. Select a file or directory.
  3. Right click the file and select "Properties"
  4. Select the "Security" tab
  5. Click the "Edit" and then "Add" button
  6. Click the "Locations" button and make sure you select your machine.
  7. Enter "IIS AppPool\DefaultAppPool" in the "Enter the object names to select:" text box.
  8. Click the "Check Names" button and click "OK".
share|improve this answer
See screen shot! – LiamB Sep 8 '11 at 12:53
@Pino: No, not the web site name. Use the application pool name. Each web site is assigned to an application pool. You can tell which one on the web site's properties Basic Settings dialog (in IIS7). – Jon Adams Sep 8 '11 at 15:04
1  
That is is the AppPool? See the new screen shot. – LiamB Sep 8 '11 at 15:38
@Pino: In that case, the security role you should use is IIS AppPool\silverchip.co.uk. I haven't tried periods in security names though--you may want to change it to something without punctuation. – Jon Adams Sep 8 '11 at 16:59
That works a treat! – LiamB Sep 10 '11 at 13:30

If you need to set refined permissions then assign the app pool to run as another user. Best practice would be to create an unprivileged user and assign them permissions on only the directories which the application needs.

share|improve this answer
1  
Surely this would be overkill? Assigning the app-pool as the user and adding permissions for that would be better and easier – JGilmartin Jan 9 at 12:34
Agreeing with JGilmartin. It's outdated best practice. It adds administration overhead (user creation, password expiry, etc). Windows is moving towards Managed service accounts to avoid this overhead. See blogs.msdn.com/b/vijaysk/archive/2009/02/13/… and technet.microsoft.com/en-us/library/dd367859.aspx – FrederikB Apr 5 at 15:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.