Wireless Access

 View Only
  • 1.  Socket Session enquiry

    Posted Mar 20, 2003 10:15 PM
    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


  • 2.  RE: Socket Session enquiry

    Posted Mar 21, 2003 10:55 AM
    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