Questions tagged [application-pools]
224 questions
4
votes
3 answers
Why is IIS allowing only 3 connections at the time?
I have installed IIS (Version 10.0.10.586.0) on Windows 10, I am trying to do some stress tests locally with jmeter creating a lot of get requests simultaneusly but jmeter is being allowed to do only 3 requests at the time.
The url jmeter is…

ferflores
- 153
- 1
- 7
4
votes
2 answers
When will an app pool with both time intervals and a specific time recycle?
Am I correct in assuming an application pool with recycle settings of:
regular time interval: 1740
Specific time: 3:00AM
will only reset at 3:00AM, because the time interval is over 24 hours?

Craig
- 141
- 3
4
votes
1 answer
The relationship between IIS Application Pool Maximum Worker Processes and Component Services Application Pooling
We're in the process of deploying a new app into it's live environment.
The app servers are running an IIS hosted .NET application that uses EntityFramework and makes numerous calls to a non .NET COM+ application.
We have been able to affect the…

qujck
- 91
- 1
- 7
4
votes
2 answers
When Should I Stop/Start an IIS Application Pool?
I was told that every time I refresh our web site, either individual pages or the entire site, I should first stop the application pool, update my website file or files, then start the application pool. My web site files consists, of HTML, JS, ASPX,…

Frank DiJohn
- 45
- 1
- 4
4
votes
3 answers
Cannot Delete Application Pool
I am trying to tidy up an IIS server. I have removed some test/uat virtual directories however I am not able to remove the application pools. I get the following error message.
Any hints on how I go about resolving this?

redsquare
- 237
- 1
- 5
- 13
4
votes
2 answers
Disable .net completely in a IIS6 Application Pool
we're managing some web sites for our clients on our servers, some running Windows Server 2003 R2 and others running 2008 R2. In Windows Server 2008 R2, we can disable completely .NET framework usage for some application pools, which is great since…

David L.-Pratte
- 141
- 2
4
votes
4 answers
IIS Application Pool identity problem
I'm having a problem with an identity pool on a new IIS server.
Here's my Event viewer text:
Event Type: Warning
Event Source: W3SVC
Event Category: None
Event ID: 1021
Date: 6/12/2009
Time: 1:44:50 PM
User: N/A
Computer: …

Craig Walker
- 282
- 1
- 4
- 12
4
votes
2 answers
How can I get the list of app pool using appcmd.exe
we using the below command to get the list of the site added in is:
%systemroot%\system32\inetsrv\AppCmd.exe list sites
but the above command can not take a list of app pools related to the site.
I want a list of app pools. if a single command to…

User12
- 89
- 1
- 8
3
votes
1 answer
Logging when ApplicationPool is started/stopped via Powershell
I use a Powershell script to, among other things, start and stop an IIS Application Pool via the following commands:
Stop-WebAppPool -Name $appPoolName;
Stop-WebAppPool -Name $appPoolName;
Is there a log file from IIS where the event, that is…

beta
- 205
- 1
- 3
- 7
3
votes
1 answer
What is the effect of stopping an AppPool on currently executing requests?
It is my understanding that asking an AppPool in IIS to recycle will give currently active requests 90 seconds to complete before they are abnormally terminated by the recycle request, while no longer accepting new requests. What about asking an…

ckittel
- 133
- 7
3
votes
0 answers
How to properly set up IIS 8 application pool memory limit without triggerring often recycles?
I am trying to put a limit to the memory used by an application pool within IIS 8.5. My problem is that if I put a limit that looks significantly greater than the typical memory usage, it is recycle once in a few minutes.
Context information comes…

Alexei
- 202
- 3
- 11
3
votes
1 answer
Configuring IIS to use multiple application pools for a single website
I have a web application/website running on IIS 7.5 and higher that I am trying to configure to use multiple application pools to segregate functions for security and performance purposes. The problem is when I create and use the second application…

RMing
- 31
- 1
- 1
- 2
3
votes
1 answer
IIS_IUSRS Can Access a File, but Application Pool Identity User Cannot
I am trying to understand IIS file permissions. A given file has "full control" permissions for IIS_IUSRS. But it seems all Application Pool Identity users cannot access the file. (I have noticed that some of my Application Pool Identity users…

user1325179
- 153
- 2
- 6
3
votes
2 answers
Where in the event log is the IIS AppPool recycling events being recorded?
I turned on all the options for IIS AppPool recycling logging and recycled the app pool a few times and I am not seeing the events in the event log. I refreshed a few sections in the event log. Where are these being recorded? Windows 7.

Tony_Henrich
- 954
- 3
- 12
- 23
3
votes
1 answer
Vertical Scalability with multiple app pools
We are running a ASP.Net application that is also calling some legacy COM objects. We are running into an issue where with increased number of users COM object is creating a bottle neck since it is executing on same thread/process as the app…

vj9999
- 33
- 4