Re: Problem with Streams someone please help.
From: Bela Lubkin (belal_at_sco.com)
Date: 01/21/05
- Next message: Steve M. Fabac, Jr.: "Asktime and ntp problem on 5.0.7"
- Previous message: josepharmbruster_at_gmail.com: "Re: Medical Manager Remote Access"
- In reply to: Alex: "Problem with Streams someone please help."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 21 Jan 2005 13:57:38 -0500
Alex wrote:
> I am having a problem with streams that keep increasing and increasing
> until we start getting WARNING: allocb failed - NSTRPAGES exceeded and
> eventually the server is locking up. This server worked fine until they
> moved recently to a new physical location (moved the entire operation
> to a new building). There is also 2 backup servers that seem to have
> the streams running away as well so I suspect there is a problem with
> some device or something on the new network. So I'm hoping there is a
> way to track what is spawning streams so we can locate the source of
> the problem. I apologize in advance if I dont provide enough
> information, if that happens please let me know what else you need and
> I will add it to the thread as quickly as possible. Here is some
> information about the system.
>
> SCO_SV doyle1 3.2 5.0.7 i386
> OSS656A: brand(ADM) update (ver 1.0.0a)
> SCO OpenServer Release 5.0.7 Maintenance Pack 1 (ver 1.0.0Bs)
>
> netstat -m
> streams allocation:
> config alloc free total max fail
...
> class 5, 1024 bytes 36 0 36 165797 35 0
> class 6, 2048 bytes 7650 7642 8 44530277 7649 0
> class 7, 4096 bytes 1010 1000 10 1016489 1010 0
> class 8, 8192 bytes 8 0 8 381996 8 0
...
You have a lot of 4K and especially 2K buffers allocated. Those are
likely sizes for an ethernet driver to use for packets being received
over the net.
Run a shell script that continuously records `netstat -m` output:
while :; do
date
netstat -m
sleep 1 # to reduce the burden somewhat
done > netstat-m.log
Meanwhile, put a packet sniffer on the LAN, tell it to capture
everything being sent to doyle1's IP address. Try to make sure the
sniffer and doyle1 agree closely about the time (within a second or
better). Then run the sniff for long enough to observe the 2K buffers
rising significantly, according to the `netstat -m` log.
You should be able to identify specific times when buffers were
consumed. Look at the corresponding times in the sniffer log: is there
a particular kind of incoming packet that seems to be causing this?
>Bela<
- Next message: Steve M. Fabac, Jr.: "Asktime and ntp problem on 5.0.7"
- Previous message: josepharmbruster_at_gmail.com: "Re: Medical Manager Remote Access"
- In reply to: Alex: "Problem with Streams someone please help."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|