Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Restart IIS if new dll dropped in bin?

Tags:

iis

Do I have to restart IIS if I drop a new DLL in the bin of my virtual directory?

like image 587
CSharpAtl Avatar asked Sep 23 '08 19:09

CSharpAtl


People also ask

Do we need to restart IIS after changing web config?

The core IIS services (Http. sys, W3SVC, WAS) never need to be restarted. Instead, they automatically detect any relevant configuration changes (e.g. new website being created, or a change in your application pool settings) and apply them on the fly.

How do I automatically restart application pool in IIS?

Configuring Auto-Start with IIS ManagerIn the Connections pane, select the Application Pools node, revealing the Application Pools pane in the main view. Select the application pool for which you wish to enable Auto-Start. Locate the Start Mode option under the General group and set it to AlwaysRunning. Click OK.

Does restarting IIS recycle application pools?

Does IISRESET recycle the application pools? The correct answer is no. Instead, IISRESET causes the shutdown of all active IIS worker processes, kills them if they do not stop in time.


2 Answers

No you do not have to, the application will recycle, but an IISReset is NOT needed

like image 69
Mitchel Sellers Avatar answered Sep 19 '22 20:09

Mitchel Sellers


No you don't have to restart IIS. However, your worker process will automatically recycle itself.

like image 31
AaronS Avatar answered Sep 20 '22 20:09

AaronS