Questions tagged [application-pools]

224 questions
2
votes
2 answers

Creating an app pool a month to limit the scope of issues

I have about 360 sites running on a single app pool. Now I know we have a coding issue with one of those sites, were we have accidentally coded a memory leak. So what happens is the site runs, the memory leak starts and soon the app pool runs out…
user39550
2
votes
1 answer

How much memory does an IIS 7 app pool consume?

Is there a baseline value for how much RAM an app pool consumes under IIS7?
Jeff Costa
  • 481
  • 3
  • 9
2
votes
0 answers

Windows authentication (AD) not working when IIS Application pool is running as custom user

I'm using: Windows 10 x64 Professional (in ad domain) IIS 10 Web site is running under local user EPM_USER, everything works except Windows authentication Configuration: When I try to from another computer which is also in AD domain with valid…
1
vote
1 answer

Do I need to reset IIS after sharing WebApp folder on the web server?

I've recently installed new web application software onto a new server (Win 2016, IIS 10.0). When I access the webpage not all the items load up and I get http 401.2 errors on those items that failed to load - I suspect it is because I haven't…
1
vote
1 answer

IIS Application Pool taking too much memory

We have IIS running on two servers (IIS8 and 10), and encounter very high memory usage of our ASP.NET WebForms Applications lately, mostly accessed through aspx pages. What happens is that over time, our application pools consume more and more…
1
vote
0 answers

IIS 8.5 - What is the criteria used by IIS to launch the worker processes?

We have a certain application running in IIS 8.5 implemented as a "web garden", with say, Max Worker Processes = 10. The reason for this is long-running requests, DB and network/async intensive, to avoid filling up the queue of the worker process,…
luiggig
  • 111
  • 2
1
vote
0 answers

Microsoft Monitoring Agent APM service is inaccessible. Please check that it is not in a disabled state

We encountered an issue where the agent (referred to as the Microsoft Monitoring Agent) in the IIS server - however,the IIS Application Pools began to cause high CPU usage the application server without a reason. What are fixes that I can apply to…
1
vote
1 answer

Application pool recycling takes high time

We have problem with Application pool recycling process. We have our production site with hosted in IIS version 10. We have used separate application pool for our production site. This application pool getting recycling every 1740 mins by default.…
Karthik
  • 217
  • 1
  • 3
  • 6
1
vote
1 answer

change default app pool identity for new sites

As we know, by default when you create a new site on IIS8.5, it creates a matching app pool and this is run under the identity ApplicationPoolIdentity. We can go into the advanced settings of the app pool and change the identity manually, but is…
benpage
  • 185
  • 1
  • 9
1
vote
2 answers

IIS 6.0 Application pool crash

One application pool on one of our webservers crashed and we found this in the Eventlog, where can we find more information about it? Event Type: Error Event Source: W3SVC Event Category: None Event ID: 1101 Date: 11/23/2009 Time: …
David
1
vote
1 answer

Unexpected recycles of IIS.Net Application Pool

Since June 19 we are experiencing unexplained and undesired recycles of Application Pool worker processes. The Application Pool has a scheduled 3am recycle. But since June 19th we are experiencing additional unexplained daily recycles between 5am…
Nick
  • 11
  • 3
1
vote
1 answer

IIS stops sub-domain's application pool?

I have a website with one sub-domain like this: my domain name is "a.com" and sub-domain name is "api.a.com". I published a service in sub-domain. It works fine on Get requests. but before getting POST request(by api), The application pool of…
Afsaneh
  • 11
  • 1
1
vote
1 answer

Does installing .NET Framework 4.6.2 on a server resets IIS running application pools?

On our production data center we have IIS Pools running on ASP.NET 2.0. We need to install new WebApps on these servers but they use .NET Framework 4.6.2. We can not stop our IIS Pools, and yet we need to install the new Framework for these new apps…
1
vote
1 answer

IIS slow in loading Report Viewer

We are running IIS & SSRS on the same production server and have two types of reports - one running through Report Viewer, connecting to SSRS (remote mode) and the other calling the SSRS web service to generate PDFs. For both of the report types, it…
apache1123
  • 11
  • 2
1
vote
1 answer

Recommendations for Java Web Server

I am currently using DBCP for connection pooling since it is more or less provided with tomcat and easy to setup. I am thinking about migrating to Glassfish or Jetty and haven't yet determined which connection pool provider I will use. I am…
Walter White