2

What app pool settings are recommended for a public facing web site in IIS?

What matters when making decisions about this (e.g. traffic, type of web application, etc...)?

Will the default settings be OK?

I'm mostly interested in hosting SharePoint on IIS6 and IIS7 but not exclusively!

Alex Angas
  • 2,007
  • 2
  • 26
  • 37

5 Answers5

4

Alex,

A pretty open question but ultimately it comes down to load, resources and application/application types.

The thing to be careful of is that the more pools you make (and you can make as many as you like!) - you will have an (kinda) instance of IIS running for each pool. We had a dedicated IIS (win2k3) server with 2Gb of memory and we wanted to isolate an errant site (we had about 40 running on this server) - so we isolated each one into it's own pool to try and track it down. We ran out of memory - well the box just became unusable due to swapping.

So, there are a couple of rules: - Different .Net versions i.e. 1.0 vs 2.0/3/3.5 will need to run in separate spaces. - Memory is your friend, the more the merrier. - As delanda says - watch out for recycling (it's a property tab on the pool) - there's some silly default settings - my favourite being: recycle after 23h (or similar) - change it to as specific time, i.e. when you're not there/time of least activity.

As a rule we would always use 64-bit Windows because of the larger memory space, but you must test your application - and every component - for compatibility. The upside is you can put as much memory in as you want, as the 3/3.5Gb limit is the one you are most likely to hit with most modern apps running on Windows Server.

Also, it's worth checking out MSDN and Technet as most of this stuff is pretty well documented.

Mike

Mike McClelland
  • 810
  • 3
  • 10
  • 19
2

Our SharePoint farm is available globally, and we opt to recycle each app pool just prior to the start of each regional business day. I have to second the recommendation for x64 over 32-bit; you get much more breathing room in the 64-bit world.

Jeff Costa
  • 481
  • 3
  • 9
1

It very much depends on how much traffic you're expecting and what kind of services your SharePoint site is offering. Joel Oleson has a nice post about SharePoint and app pools on his blog. It's a couple of years old and mostly related to IIS6, but good stuff.

squillman
  • 37,618
  • 10
  • 90
  • 145
1

make sure you check the recycling settings. You don't want your sessions to be trashed when your busy!

user8042
  • 278
  • 1
  • 4
0

I would add, carefully considering the user account the application pool runs under, to the already mentioned items.

More information found here:

Nathan Hartley
  • 1,620
  • 5
  • 26
  • 38