Questions tagged [application-pool]

Application pools allow you to isolate your applications from one another, even if they are running on the same server.

An Application Pool can contain one or more applications and allows us to configure a level of isolation between different Web applications. For example, if you want to isolate all the Web applications running in the same computer, you can do this by creating a separate application pool for every Web application and placing them in their corresponding application pool. Because each application pool runs in its own worker process, errors in one application pool will not affect the applications running in other application pools.

882 questions
-1
votes
2 answers

IIS Website intermittently going down and coming back up

I have a .Net based IIS Website that appears to be going down and coming back up without logging it. The only way I'm able to tell this is happening is from our CMS logging the time that it needs to re-initialize, and our Application Dynamics agents…
Yasterdly
  • 1
  • 1
-1
votes
1 answer

Is it possible to move an application to a new app pool with a batch file?

Lets say I have a website called "MyApp" that exists on the wwwroot folder in iis. I also have an app pool called "AppPool2" that I want to move "MyApp" to this app pool. Is it possible to my my website to AppPool2 with a bat file or a powershell…
Terrance Jackson
  • 606
  • 3
  • 13
  • 40
-1
votes
1 answer

use a function after a function PHP OOP

i have a simple question in OOP I've see in a lot of frameworks like Laravel something like this : $data = Model::OrderBy('id','desc')->skip(5)->take(10)->get()->toArray(); My Question is, how can i can call a function after another function…
REVERSI
  • 59
  • 5
-1
votes
2 answers

Pool.Recycle() throwing exception from HRESULT: 0x80070005 (E_ACCESSDENIED)

I want to Recycle application pool programmatically after some interval of time. I tried it using 2 methods that are specified below. 1) public static void RecycleAppPools() { ServerManager serverManager = new ServerManager(); …
-1
votes
2 answers

Can not run asp.net application using Local IIS Server

I can't debug my application using a local IIS server. However, when I change to IIS Express I can debug my application. I'm running Visual Studio as an administrator.
-1
votes
2 answers

Send User Identity to SQL for login

We have developed a product which is a web application. While configuring it in IIS, we disable all the authentication modes except Windows authentication (app works on Windows authentication only). We create a service account and provide admin…
Durgesh Chaudhary
  • 1,075
  • 2
  • 12
  • 31
-1
votes
1 answer

How to start IIS application pools which are stopped only for websites which has "Started" status using Powershell?

does anyone can point me direction how I can start IIS (7/8) application pools which are stopped only for websites which has "Started" status using Powershell (so no starting app pool for their connected application/websites which has Stopped…
GrZeCh
  • 2,332
  • 8
  • 29
  • 38
-1
votes
1 answer

MySQLSyntaxErrorException: User already has more than 'max_user_connections' active connections

I get this error when accessing directly from a servlet public class UpdateFloorEventServlet extends HttpServlet { @Override @Transactional(readOnly=true) protected void doGet(HttpServletRequest request, HttpServletResponse response) throws…
darkZone
  • 603
  • 3
  • 12
  • 25
-2
votes
1 answer

IIS_IUSRS group is empty

I have 500.19 error when trying to host a PHP application I've tried to add the IIS_IUSRS group and permissions to it, but when I added it the site stopped working, maybe the problem is that the group is empty. Can you tell me please what should I…
Nikita28
  • 1
  • 2
-2
votes
1 answer

how to monitoring cpu usage with counters all workers processes from some app pool in powershell

I found only these counters: \APP_POOL_WAS()\Total Worker Processes Created \APP_POOL_WAS()\Time Since Last Worker Process Failure \APP_POOL_WAS()\Total Worker Process Ping Failures \APP_POOL_WAS()\Total Worker Process Shutdown…
-2
votes
1 answer

Windows 2012 name change Machine account didn't

I'm currently running into an issue where we changed over the name of a server (windows 2012). With the old name everything worked fine, after the name change it appears that the app pool identity is stuck with the old machine name in the machine…
Milkman
  • 11
  • 3
-2
votes
1 answer

Calling an asp.net mvc controller’s action method using windows task scheduler or another schdule tools

I am planning to create an asp.net mvc web application which will perform a single sync job, to achieve this:- We have a 3rd party ERP system which will be generating a .csv file on timely basis, where it will generates a .csv file once per hour.…
John John
  • 1
  • 72
  • 238
  • 501
1 2 3
58
59