Server Unavailable Error (aspnet_wp.exe)

G

Guest

I'm running the .net framework 1.1 sp1 on a windows 2000 server sp4. We are
running a Plumtree Portal (.net version) on this machine. If the machine is
not rebooted every couple of weeks or if a group of 25 or so users try to log
on to the website at the same time, they periodically receive the red "Server
Unavailable" message. When I look in the event log, the following message
occurs:

Source: ASP.NET 1.1.4322.0
Description: aspnet_wp.exe (PID: XXXX) was recycled because it failed to
respond to ping message.

Has anyone experienced this before?
 
G

Guest

Hi Chad,

First, I don't know anything about Plumtree Portal, but I do know a bit
about .NET and its performance characteristics.

The first thing to check is the machine.config of the server. Make sure you
have tuned your ASP.NET server to handle the load level you have. You will
need to check things such as the thread pool size and memory allocation.

Next, if you are using SQL Server, open the profiler and see what is taking
so long. Chances are you have lots of queries open that are long-running and
hence are clogging up the usable threads on the ASP.NET server. If you open
the management node from the MMC and count the number of open connections to
the server, you will get a feel for the load on the SQL server. Hopefully
the Plumtree Portal is using connection pooling, and is disposing of its
connections gracefully.

After you've tweaked the machine.config and looked at SQL Server (or Oracle
if that's your system), then contact Plumtree about their portal software.
Maybe they have some software issues that need to be fixed.

If you open the web.config file in the Plumtree web folder, you can tweak
their connection pooling strategy as well.

Hope that helps.

-- Jake
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top