Server Application Unavailable ??

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I use .NET framework SDK to build ASP.NET pages. All the aspx pages use src="..." to point to the class.
Until now, things were fine, but in last 2 days, I am beginning to get this error message when loading a page 'Server Application Unavailable'. In the event viewer I see this error msg 'aspnet_wp.exe (PID: ....) was recycled because memory consumption exceeded the x MB (60 percent of available RAM).' As I try to load the page, I see that the memory usage by ASP.net engine goes beyond the roof. There is plenty of CPU power and RAM available, hence resources do not seem to be an issue here.
I am using latest .NEt framework on W2k machine with SP4

Has anyone faced this situation?? Any resonse will be much appriciated
Thanks
 
In machine.config there is a setting that says the aspnet process should
restart when X% of total available memory is used. Try increasing this
number.

-Zane

Ravi J said:
I use .NET framework SDK to build ASP.NET pages. All the aspx pages use
src="..." to point to the class.
Until now, things were fine, but in last 2 days, I am beginning to get
this error message when loading a page 'Server Application Unavailable'. In
the event viewer I see this error msg 'aspnet_wp.exe (PID: ....) was
recycled because memory consumption exceeded the x MB (60 percent of
available RAM).' As I try to load the page, I see that the memory usage by
ASP.net engine goes beyond the roof. There is plenty of CPU power and RAM
available, hence resources do not seem to be an issue here.
 
Thanks Zane for the response. However, increasing the % to 70 only delayed the error by 10 more %
I am not sure why it happened only in last 2-3 days which the code being compiled is the same as earlier, and is not more than 25 lines

Thanks,
 
Ravi,

Can you maybe post your code so we can see if anything weird is happening?

Do you have any antivirus software on the web server?
Did you change ANYTHING at all between when it was working and when the
problems started? (service packs, new software, config changes?)

-Zane

Ravi J said:
Thanks Zane for the response. However, increasing the % to 70 only delayed the error by 10 more %.
I am not sure why it happened only in last 2-3 days which the code being
compiled is the same as earlier, and is not more than 25 lines.
 
Also: try running this command:
aspnet_regiis.exe -i

its found in WINDOWS\Microsoft.NET\Framework\v1.1.4322

-ZD

Ravi J said:
Thanks Zane for the response. However, increasing the % to 70 only delayed the error by 10 more %.
I am not sure why it happened only in last 2-3 days which the code being
compiled is the same as earlier, and is not more than 25 lines.
 
Back
Top