worker processes being recycled prematurely?
worker processes being recycled prematurely?
am 11.09.2007 15:52:00 von mp3nomad
Would anyone know why worker processes would get recycled prematurely?
For example, say you log into a site and you're supposed to stay logged in
for 20-30 minutes or as long as you're active, but in 5 minutes it sends you
back to the log in page.
Something is forcing the worker process to recycle... either AV software or
mem usage?
How would we be able to determine what's happening here?
We're using IIS 6 on a Windows 2003 Server.
Thanks!
Shelly Campbell
RE: worker processes being recycled prematurely?
am 11.09.2007 16:06:11 von mp3nomad
more info -
this is an ASP.NET 2.0 application that uses forms authentication
if that helps at all
"mp3nomad" wrote:
> Would anyone know why worker processes would get recycled prematurely?
>
> For example, say you log into a site and you're supposed to stay logged in
> for 20-30 minutes or as long as you're active, but in 5 minutes it sends you
> back to the log in page.
>
> Something is forcing the worker process to recycle... either AV software or
> mem usage?
>
> How would we be able to determine what's happening here?
>
> We're using IIS 6 on a Windows 2003 Server.
>
> Thanks!
> Shelly Campbell
Re: worker processes being recycled prematurely?
am 12.09.2007 13:48:29 von geXen
On Sep 11, 10:06 am, mp3nomad
wrote:
> more info -
> this is an ASP.NET 2.0 application that uses forms authentication
> if that helps at all
>
> "mp3nomad" wrote:
> > Would anyone know why worker processes would get recycled prematurely?
>
> > For example, say you log into a site and you're supposed to stay logged in
> > for 20-30 minutes or as long as you're active, but in 5 minutes it sends you
> > back to the log in page.
>
> > Something is forcing the worker process to recycle... either AV software or
> > mem usage?
>
> > How would we be able to determine what's happening here?
>
> > We're using IIS 6 on a Windows 2003 Server.
>
> > Thanks!
> > Shelly Campbell
Check the event log. Is it actually recycling or is it crashing,
there's a big difference.
Re: worker processes being recycled prematurely?
am 12.09.2007 16:34:01 von mp3nomad
Is there a way to tell in the event log whether the worker process is
recycling?
"Will" wrote:
> On Sep 11, 10:06 am, mp3nomad
> wrote:
> > more info -
> > this is an ASP.NET 2.0 application that uses forms authentication
> > if that helps at all
> >
> > "mp3nomad" wrote:
> > > Would anyone know why worker processes would get recycled prematurely?
> >
> > > For example, say you log into a site and you're supposed to stay logged in
> > > for 20-30 minutes or as long as you're active, but in 5 minutes it sends you
> > > back to the log in page.
> >
> > > Something is forcing the worker process to recycle... either AV software or
> > > mem usage?
> >
> > > How would we be able to determine what's happening here?
> >
> > > We're using IIS 6 on a Windows 2003 Server.
> >
> > > Thanks!
> > > Shelly Campbell
>
> Check the event log. Is it actually recycling or is it crashing,
> there's a big difference.
>
>
Re: worker processes being recycled prematurely?
am 13.09.2007 02:08:47 von David Wang
IIS will log an event for unexpected worker process recycling. Crashes
would belong to unexpected recycling.
Planned worker process recycling, such as periodic recycling,
recycling based on memory used, etc, do not raise events by default.
You can use a tool like ADSUTIL.VBS change the "LogEventOnRecycle"
property on the Application Pool of interest to make it log planned
recycling to the event log as well. It is a bit flag, so you can
control exactly which planning recycling metric to log to event log.
This property is for debugging and not exposed in the IIS Manager UI.
//David
http://w3-4u.blogspot.com
http://blogs.msdn.com/David.Wang
//
On Sep 12, 7:34 am, mp3nomad
wrote:
> Is there a way to tell in the event log whether the worker process is
> recycling?
>
>
>
> "Will" wrote:
> > On Sep 11, 10:06 am, mp3nomad
> > wrote:
> > > more info -
> > > this is an ASP.NET 2.0 application that uses forms authentication
> > > if that helps at all
>
> > > "mp3nomad" wrote:
> > > > Would anyone know why worker processes would get recycled prematurely?
>
> > > > For example, say you log into a site and you're supposed to stay logged in
> > > > for 20-30 minutes or as long as you're active, but in 5 minutes it sends you
> > > > back to the log in page.
>
> > > > Something is forcing the worker process to recycle... either AV software or
> > > > mem usage?
>
> > > > How would we be able to determine what's happening here?
>
> > > > We're using IIS 6 on a Windows 2003 Server.
>
> > > > Thanks!
> > > > Shelly Campbell
>
> > Check the event log. Is it actually recycling or is it crashing,
> > there's a big difference.- Hide quoted text -
>
> - Show quoted text -