Communications and Wireless
1840118 Members
2667 Online
110161 Solutions
New Discussion

Socket Session enquiry

 
SOLVED
Go to solution
Cat_4
Advisor

Socket Session enquiry

Can anyone tell me :

1. how to check the number of socket session ?
2. what is the maximum number of socket on HP-UX 11i can handling ?

HTTP request is become slowly after deploy a new application. Should i install any patch to fix it or anyother suggestion ?

thanks in advance!!

Cat
1 REPLY 1
Ron Kinner
Honored Contributor
Solution

Re: Socket Session enquiry

I think you would do better posting in the HPUX forum but I believe for your first question the usual answer is a program called lsof which I believe you can get from HP's site unless you just want to know how many TCP/IP sessions you have open in which case
netstat -an |grep ESTABLISHED |wc -l
will tell you.

For the second answer I believe they usually say something like in Unix everything is a file so your socket limit is about what your MAX_FILES is set to.

As far as patches the answer is probably yes but without knowing exactly what patches you already have and what the new application is doing it's hard to say.

Ron