2

I am under the impression that certain (web server) configuration changes require cycling the service.

  • Is there a rule of thumb of what specific changes require restarting the service or is it just good practice? Does the server always tell you when the service needs to be flipped?
  • What changes actually occur when you restart the service that requires the service to be restarted in the first place?

I'm specifically referring to IIS but I'd be interested to know if other web servers have the same requirement.

Gary
  • 267
  • 2
  • 4
  • 10

2 Answers2

1

As of IIS 7, few/none I can think of. WAS doesn't load optional components, it just does its thing.

IIS 6 hosts an in-memory copy of its configuration from/for/in the Metabase, in InetInfo.exe. If that gets jammed up, everything fails (usually all at once), and that'd require a service restart (IISRESET /NOFORCE if possible).

99% of the time, it's enough to recycle an App Pool to restore service, or to get a particularly recalcitrant application to reread its configuration (if it's handle-leaked its way out of file change notifications, or it's bored with life, or just hanging). IIS 6+'s Worker Process Isolation (Mode) means that most failures are constrained to a single process, and a recycle will typically work, starting a new worker process on the next request.

There are exceptions, as with anything, but as a rule of thumb for "pure" web apps, that's all you need to do.

COM apps, apps that use state outside the web server process itself, and so on, might be more troublesome, and some apps won't support multiple instances of themselves (the one shutting down hangs the one booting up) in which case you're a bit stuffed, but on the whole... works.

IIS7 doesn't host an in-memory copy of anything, and the processes involved know how to read a configuration file directly.

WAS (Windows Process Activation Service) reads config files, carves them up for App Pools (see: Inetpub\Temp\AppPools) and lets the worker process read their own configuration. I haven't seen many situations in which this got broken enough to require a restart.

InetInfo doesn't need to exist in IIS 7 for a working server, unlike IIS <=6 - it's purely there for compatibility with apps that need to talk to a metabase emulator (Admin Base Objects, ADSI, legacy IIS 6 WMI, that sort of stuff).

As for when to restart the service:

  • Very rarely
  • When WAS is logging errors that read like it doesn't want to live
  • When everything is falling in a heap all at once (and individual app pools can't be identified to be recycled

But otherwise, just recycling the App Pool is usually enough to recover.

See also another answer in a similar vein (yeah, mine as well): What steps to take when trying to resolve unresponsive/hung/broken IIS web site?

HTH

TristanK
  • 8,953
  • 2
  • 27
  • 39
0

Generally configuration changes require a start/stop of the web server. The web server reads the configuration files and applies them when it is started. The web server does not dynamically read the configuration files as it runs.

iPhone Guy
  • 109
  • 1
  • Not necessarily. For example, you can go into IIS Manager and turn on/off Basic or Integrated authentication without cycling the service. Is there a difference in making the change via the admin panel vs editing the config file (at least in this case)? It may even be a version-specific situation as (from what I hear) IIS 6 is a bit more temperamental on what it requires a restart for. – Gary Jul 12 '11 at 18:08