vote up 12 vote down star
7

On IIS 6, what does an IIS Reset do?

Please compare to recycling an app pool and stopping and starting an ASP.NET web site.

If you replace a DLL or edit/replace the web.config on an ASP.NET web site is that the same as stopping and starting that web site?

flag

73% accept rate

10 Answers

vote up 21 vote down check

IISReset stops and restarts the entire web server (including non-ASP.NET apps)
Recycling an app pool will only affect applications running in that app pool.
Editing the web.config in a web application only affects that web application (recycles just that app).
Editing the machine.config on the machine will recycle all app pools running.

IIS will monitor the /bin directory of your application. Whenever a change is detected in those dlls, it will recycle the app and re-load those new dlls. It also monitors the web.config & machine.config in the same way and performs the same action for the applicable apps.

link|flag
vote up 1 vote down

It stops and starts the services that IIS consists of.

You can think of it as closing the relevant program and starting it up again.

link|flag
vote up 0 vote down

When you change an asp.net website's config file, it restarts the application to reflect the changes...

When you do an IIS Reset, that restarts all applications running on that IIS instance.

link|flag
vote up 1 vote down

Application Pool recycling restarts the w3wp.exe Process for that application pool, hence it will only affect and Web sites running in that application pool.

iisreset restarts ALL w3wp.exe Processes and any other IIS Related service, i.e. the NNTP or FTP Service.

I think changing web.config or /bin does not recycle the whole Application pool, but i'm not sure on that.

link|flag
vote up 0 vote down

editing the web.config or updating a dll in the bin folder just recycles the worker process for that application, not the whole pool

link|flag
vote up 7 vote down

IISReset restarts the entire webserver (including all associated sites). If you're just looking to reset a single ASP.NET website, you should just recycle that AppDomain.

The most common way to reset an ASP.NET website is to edit the web.config file, but you can also create an admin page with the following:

public partial class Recycle : System.Web.UI.Page
{
    protected void Page _Load(object sender, EventArgs e)
    {
        HttpRuntime.UnloadAppDomain();
    }
}

Here's a blog post I wrote with more info: Avoid IISRESET in ASP.NET Applications

link|flag
vote up 2 vote down

It operates on the whole IIS process tree, as opposed to just your application pools.

C:\>iisreset /?

IISRESET.EXE (c) Microsoft Corp. 1998-1999

Usage:
iisreset [computername]

    /RESTART            Stop and then restart all Internet services.
    /START              Start all Internet services.
    /STOP               Stop all Internet services.
    /REBOOT             Reboot the computer.
    /REBOOTONERROR      Reboot the computer if an error occurs when starting,
                        stopping, or restarting Internet services.
    /NOFORCE            Do not forcefully terminate Internet services if
                        attempting to stop them gracefully fails.
    /TIMEOUT:val        Specify the timeout value ( in seconds ) to wait for
                        a successful stop of Internet services. On expiration
                        of this timeout the computer can be rebooted if
                        the /REBOOTONERROR parameter is specified.
                        The default value is 20s for restart, 60s for stop,
                        and 0s for reboot.
    /STATUS             Display the status of all Internet services.
    /ENABLE             Enable restarting of Internet Services
                        on the local system.
    /DISABLE            Disable restarting of Internet Services
                        on the local system.
link|flag
vote up 0 vote down

Here what's technet has to say about iisreset

You might need to restart Internet Information Services (IIS) before certain configuration changes take effect or when applications become unavailable. Restarting IIS is the same as first stopping IIS, and then starting it again, except it is accomplished with a single command.

link|flag
vote up 0 vote down

You can find more information about which services it affects on the Microsoft docs.

link|flag
vote up 0 vote down

IISReset restarts the entire webserver (including all associated sites). If you're just looking to reset a single ASP.NET website, you should just recycle that AppDomain.

Can you tell me how to reset the IIS of a single ASP.NET website?

start->Run->Type: IISReset -""??

Regards Sourav

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.