TcpListenDrop increaes. find port / process

Hi,
I've got a machine running Oracle Solaris 10 9/10 s10s_u9wos_14a SPARC, Generic_147440-09 .
The tcpListenDrop is increasing over the time. I'd like to know, which port / process hits the backlog q limit.
tcp_listen_hash shows me the max value of every port. But 'q0' and 'q' are everytime 0, when calling 'ndd /dev/tcp tcp_listen_hash' .
Ok, maybe I never hit the point in time, when there is at least 1 in the 'q', but I' ve tried several times.
Could someone explain me backlog (q0/q/max) of tcp_listen_hash again?
TCP zone IP addr port seqnum backlog (q0/q/max)
000 600898e6cc0 2 ::ffff:0.0.0.0 00514 00000000 0/0/16
003 300220862c0 2 :: 00513 00000000 0/0/16
022 300218a9040 2 :: 00022 00217648 0/0/8
029 6008ac5e580 2 ::ffff:0.0.0.0 32925 00000000 0/0/32
030 300218a9740 2 ::ffff:0.0.0.0 32926 00000000 0/0/64
032 30021e9d380 2 ::ffff:127.0.0.1 32928 00000002 0/0/8
033 6008a482600 2 ::ffff:0.0.0.0 32929 00000000 0/0/64
039 300220870c0 2 ::ffff:0.0.0.0 32935 00000000 0/0/10
040 300220869c0 2 ::ffff:0.0.0.0 32936 00000000 0/0/10
050 300226d6c00 2 ::ffff:0.0.0.0 32946 00000000 0/0/8
058 6008ac5f380 2 ::ffff:127.0.0.1 32954 00000000 0/0/2
079 300220877c0 2 :: 00079 00000000 0/0/16
146 60086d1e300 2 ::ffff:127.0.0.1 33296 00000009 0/0/49
158 6008ac5de80 2 ::ffff:127.0.0.1 06788 00000000 0/0/16
159 30022c48540 2 ::ffff:127.0.0.1 06789 00000001 0/0/16
455 600a1b15700 2 ::ffff:127.0.0.1 46450 00000001 0/0/49
500 30023c57a00 2 ::ffff:172.16.10.3 01521 00079651 0/0/49
502 6008a7a4900 2 ::ffff:172.16.10.3 01523 00173919 0/0/49
503 6008ac32540 2 ::ffff:172.16.10.3 01522 00030277 0/0/49
Thank you,
kind regards, chris
Edited by: 892620 on Mar 15, 2012 4:55 AM

q = number of pending TCP connections for a TCP listener waiting to be accepted by accept - 3 way handshake complete
q0 = number of connnection request in SYN_RCVD that are halfway through the TCP three-way handshake.
max = backlog queue size. Represents a limit on the number of incoming client requests that can be queued at the listening endpoint [ int listen(int s, int backlog); ]
here is a link to dtrace that may help:
http://gdesaboyina.wordpress.com/2010/01/08/tcplistendrop-and-dtrace-to-get-pid/

Similar Messages

  • How to find Port no

    Hi All,
    i need to find Port no. for Essbase and FR, how to find it is there any script or any other process to find it
    plz let me if any know abt it
    Sri......

    Hi,
    Essbase Agent will usually run on port 1423
    Essbase server applications (ESSSVR) port = 32768–33768
    Financial Reporting
    Web server usually runs on port 8200
    FR Communication service runs on port 8299
    Other FR ports are usually dynamic and can be set in property files e.g. fr_repserver.properties, fr_scheduler.properties, fr_printserver.properties
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to find port number , when there will be different instance number ?

    In case of portal url,
    port number is 50000 for default instance number 00.
    how to find port number , when there will be different instance number , instead of 00?
    Thanks

    Hi
    You can find the port number by your instance number as follows:
    There is a general format for the port number like you have mentioned.
    For 00 instance the port number is 50000.
    The general format for the port number goes like this:
        <b>5<instance_no>00</b>
    If your <b>instance number is 01</b> then the port number would be <b>50100</b>.
    It depends on the installation type which you perform.
    You can also change the instance number during the installation but normally you dont do this.
    If you have many components or units installed on your system you may have more than one instance in that case it may go like this 00, 01, 02....accordingly port number will be 50000, 50100, 50200...resp.
    Hope this solves your doubt.
    If you need some more clarification please lemme know.
    Regards
      Sumit Jain
    **Rewrd with points if useful.

  • Find flagged process orders for deletion

    Hi all ,
    How do i find flagged process orders for deletion ?
    i need report or t-code

    Hello,
    Try with t-code COOISPI. In selection,Put material no and system status(sel. at header level) as DLFL
    and also check  "with deeltion flag indicator"
    Check with result and revert.
    Regards,

  • How to find the process responsible for deleting files

    Hi,
    We have a process which stores a file in a particular location say /tmp/mydir/. The files getting stored in this directory are getting deleted. Is there any way to find which process is responsible for deleting the file. Is there any way we can truss on the directory/file and check which process accessed it or deleted it.

    solquestions wrote:
    I tried: dtrace -n syscall::unlink:entryThat one looks good to me.
    While it picks up the unlinking(I tested by doing a rm of some files), I could not get the pid of the process doing such rm.....(or maybe the process exited...)You haven't asked it to print that information. Try:
    dtrace -n 'syscall::unlink:entry {trace(pid);trace(execname)}'
    I'd like to see the process/adpp/program, calling a particular system call....unlink, close, open etc etc...The above should do that.
    I wonder if dtrace can capture both library calls and system calls......Dtrace doesn't capture so much as it fires on probes. But yes, both libraries and system calls can have probes available.
    It seems functionality for capturing system calls from a process are more documrnte, and with examples, than, those asking for finding which system calls get opened by whom....
    I think all you're missing is adding some information to the trace output.
    Is getting unlink enough to find "what is removing files?"You might want to check rename as well.
    How do I drrace for "anything that touched taht file" or, "anything that touches files in a directory"That's actually a somewhat difficult task for dtrace. First, you might download the "Dtrace toolkit". One of the tools in there is "opensnoop". It reports on file opens and you can examine the script to see how it does it. You can even give a filename and it only reports when that filename is accessed.
    But the main problem is that files can have many names, and dtrace is just looking at the name in many cases. So "/etc/passwd" can be called "/etc/passwd", or if you're in /usr it could be called "../etc/passwd", or any of a variety of names. It's not too hard to set a probe predicate to fire only on a pattern match, so you could set it to only fire when the filename is matched.
    Good luck, and see if any of the existing tools in the toolkit are close enough that you can use them directly or modify them slightly.
    Darren

  • To find the processing Func. module

    hi,
    can anyone tell me how to find the processing Func. module(outbound) if i know the message type, basic type and extension.
    i tried with we57 but coudnt find the one(outbound) needed.

    Hi Pawan,
    From the link
    http://www.intelligententerprise.com/channels/applications/feature/archive/kasturi.jhtml
      For more inf. you can check this link.
    From WEDI got to Control -> Inbound process codes -> Inbound with ALE service -> Processing by function module (transaction WE42), or from WEDI go to Control -> Outbound process codes -> Outbound with ALE service -> With function module (transaction WE41). There will be function modules associated with the process codes. For inbound, the function modules usually follow this pattern: IDOC_INPUT_messagetype: for example, IDOC_INPUT_CHRMAS for inbound characteristics master.
    *Use transaction WE57 or from WEDI go to Development -> Message/Application Object. The entries list the function module, Business Object, message type, and IDOC type that are used for inbound ALE/EDI interfaces.
    Hope you will clear now, if yes please close this thread with rewarding appropriate points to the helpful answers.
    Cheers
    Sunny

  • How to find business process diagrams of SAP reference model

    hello guys,
      I am reading book 'SAP R/3 Business Blueprint: Understanding Enterprise Supply Chain Management' recently. In this book, the author shows many EPC process diagrams of SAP reference model,but how could I find the process diagrams in SAP system.
      I google this 'SAP Reference model', and find transaction: SB09 Business Navigator-Process view. But I can not find this transaction in IDES4.7or ECC6 IDES.
    Thanks.
    Edited by: Justin on Jul 2, 2009 10:20 AM

    Hi RK v ,
    I really don't know what your actual requirement is , but if you want to know the objects as per the modification , then transport request will be much help to you .
    Have a look into table E070 and E071 .
    Regards ,
    Yogendra Bhaskar

  • How to find the processing time of any query?

    im using oracle express edition, can anyone help me, how to find the processing time of any query?

    Trace the query and tkprof the generated trace file.
    http://download.oracle.com/docs/cd/E11882_01/server.112/e16638/sqltrace.htm#PFGRF01010

  • How long does the number porting process take?

    Hello Everybody! I just got my iphone (witch I LOVE it by the way) but I was wondering, how long does the number porting process take?
    I ported my phone number over from SprintPCS last night at around 7pm EST and right now it's 8am EST and my Palm seems to still be working... Is this normal?
    I'm still receiving incoming calls to my Palm, Text messages to my Palm, but yet I can do outgoing calls from my iphone... I'm kinda confused...
    I mean I received the text on my iphone from sprint telling me: "Welcome to AT&T" as well as receiving the e-mail saying my new phone number is the same one I've had for 6 years now... Is 13 hours considered normal?
    Thanx! :-D

    QueenYvette,
    If it continues to be an issue tomorrow, I would recomend calling again, and getting in contact with AT&T's porting department. They are familiar with resolving any issues that may arise.
    Powering off both phones is to make sure that the old phone is not maintaining an active connection with the old carrier that can interfere with the last steps of the porting process. If at all possible its a good idea to leave the old phone powered off, and restart the new phone about once an hour so that it will resync with the towers.
    Hope this helps,
    Nathan C.

  • How to find query processing time?

    im using Oracle Express Edition
    i want to find the processing time of a query?,
    anyone please specify briefly how to find the query processing time
    can i get the processing time of a query by using Express edition or should i install Enterprise Edition.
    with regards,
    ravikanth.

    This link will help
    http://forums.oracle.com/forums/thread.jspa?threadID=2210335&tstart=0

  • How to find Port numbers used by RMI application

    Hi, hope u all find me a solution, how to find port numbers used in the RMI application, that is port number which the RMI application communicates between RMIserver and RMIclient. ur answers would b highly appreciated

    Currently RMI transport layer does not directly expose any public methods to get the listening ports of the exported RMI objects, but the application can always export RMI server objects at certain designated ports instead of relying on the RMI runtime by specifying them to UnicastRemoteObjcect at the time of exporting.
    RMI transport layer try to optimize the number of listeing sockets by exporting all RMI server objects on a single port if no explicit ports were chosen. If the application is really interested in knowing the listeing ports, it can always specify the client and server socket factories to be used for creating Socket and ServerSocket to the RMI runtime at the time of exporting. When a RMI server object is exported, but the listening socket is not yet created, RMI transport layer invokes the createServerSocket(host, port) of server socket factory by passing the host and port details. If no explicit port is specified, underlying socket implementation choses anonymous port. At this point of time application can log these listeing ports to some log file.
    Similarly when the stub to the remote object is de-serialized in the client address space, it does also contain the client socket factory along with the end point details (host, port and server object ID). RMI runtime in the client address space needs to establish connection with the remote server object, it try to get the socket from client socket factory by invoking createSocket() on the client socket factory. Now the application can call getLocalPort() on the socket before returning it to the RMI transport layer.
    There is a undocumented class RMIStat to dump RMI runtime state information. It provides a lot of static methods to dump RMI state information like object table, transports, threads etc. You can download the source code of this utility from RMI archives, but remember this is not a comman-line utility, you must invoke these static methods as part of the application code.
    -- Srinath Mandalapu

  • How to find the process running for a specific cube on WINDOWS?

    Hi,
    how do we find the process of a cube and kill it if the server is a win 2003 server...
    when i go to the task manaer and search I only see then as esssvr ? but how do I match them to the specif cubes??
    in UNIX we can see them clearly as they have the cube name along with the pid and evertything else...
    please let me know.
    Thanks in advance.

    you actually have to go into the Essbase server log. When the application starts its pid is put in the log. I don't remember the mesage number, but it's in the log somewhere around a message started. Make sure you get the last started pid for an application. since the log can be for a long period, the application could have started multiple times
    Message was edited by:
    GlennS

  • Find total processing time from routing

    Hi,
    I'm writing specs for creating a production scheduling report for sales orders. I'm stuck at finding the relevant tables and fields for this particular calc. I want to find the processing time from routing.
    Total Processing Time (if Procurement type = u201CEu201D, then all operations from tasklist/Routing Operations for the material number) = Setup Time + (Machine time * Operation Quantity) + (Labor time * Operation Quantity)
    Any suggestions??
    Thanks

    Hi
    Check with any one of the following table:
    EAPL     Allocation of task lists to pieces of equipment
    EINA     Purchasing Info Record: General Data
    EINE     Purchasing Info Record: Purchasing Organization Data
    ESKL     Account Assignment Specification: Service Line
    ESLH     Service Package Header Data
    ESLL     Lines of Service Package
    INOB     Link between Internal Number and Object
    KALC     Material Quantity Calculation - Formulas
    KALT     Material Quantity Calculation: Header
    KOCLU     Cluster for conditions in purchasing and sales
    KSSK     Allocation Table: Object to Class
    LFA1     Vendor Master (General Section)
    MAPL     Assignment of Task Lists to Materials
    MLST     Milestone
    MLTX     Milestone Description
    PLAB     Relationships
    PLAS     Task list - selection of operations/activities
    PLFH     Task list - production resources/tools
    PLFL     Task list - sequences
    PLFT     Process Instructions
    PLFV     PI Characteristics/Sub-Operation Parameter Values
    PLKO     Task list - header
    PLKZ     Task list: main header
    PLMK     Inspection plan characteristics
    PLMW     MAPL-Dependent Charac. Specifications (Inspection Plan)
    PLMZ     Allocation of bill of material items to operations
    PLPH     CAPP: Sub-operations
    PLPO     Task list - operation/activity
    Thanks
    Saravana
    Reward if useful

  • Is there a way to find which process s chain was scheduled?

    I am developing a query on 0TCT_C21. Is there a way to find which process chains were scheduled to run? I want to see only those process chains. 
    If 0TCT_C21 does not have the information, is it a way to get from somewhere else (i.e., some other tables using virtual characteristic or so  ...).
    Thanks a lot,

    You need to use a combination of tables and function modules.
    Table TBTCO contains list of jobs with job status 'S' for scheduled
    Table TBTCP contains the program name and variant scheduled in that job
    you need to use a function module to know the chain name using the above program name and variant.
    I have written a sample code to do this. feel free to change it as per your needs.
    REPORT  ztest4.
    TYPES: BEGIN OF l_s_scheduled,
           jobname  TYPE tbtco-jobname,
           jobcount TYPE tbtco-jobcount,
           sdlstrtdt TYPE tbtco-sdlstrtdt,
           sdlstrttm TYPE tbtco-sdlstrttm,
           progname TYPE tbtcp-progname,
           variant TYPE tbtcp-variant,
           chain   TYPE rspc_chain,
      END OF l_s_scheduled.
    DATA: l_t_scheduled TYPE STANDARD TABLE OF l_s_scheduled,
          l_t_valtab    TYPE STANDARD TABLE OF rsparams,
          l_w_valtab    TYPE rsparams.
    FIELD-SYMBOLS     <l_f_scheduled> TYPE l_s_scheduled.
    SELECT a~jobname a~jobcount a~sdlstrtdt a~sdlstrttm b~progname b~variant
    INTO CORRESPONDING FIELDS OF TABLE l_t_scheduled
       FROM tbtco AS a JOIN tbtcp AS b
                  ON a~jobname = b~jobname AND
                     a~jobcount = b~jobcount
    WHERE a~jobname = 'BI_PROCESS_TRIGGER' AND
          a~status = 'S'. "Scheduled
    LOOP AT l_t_scheduled ASSIGNING <l_f_scheduled>.
      REFRESH l_t_valtab.
      CALL FUNCTION 'RS_VARIANT_CONTENTS'
        EXPORTING
          report               = <l_f_scheduled>-progname
          variant              = <l_f_scheduled>-variant
        TABLES
          valutab              = l_t_valtab
        EXCEPTIONS
          variant_non_existent = 1
          variant_obsolete     = 2
          OTHERS               = 3.
      IF sy-subrc = 0.
        READ TABLE l_t_valtab INTO l_w_valtab
        WITH KEY selname = 'CHAIN'.
        IF sy-subrc = 0.
          <l_f_scheduled>-chain = l_w_valtab-low.
        ENDIF.
        WRITE :/ <l_f_scheduled>-chain, <l_f_scheduled>-sdlstrtdt, <l_f_scheduled>-sdlstrttm.
      ENDIF.
    ENDLOOP.
    The structure l_s_scheduled in the above program can be extended with more fields and can be used as extract structure in a generic datasource  of type function module and can be fed into a DSO for reporting.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/business-intelligence/d-f/functional%20module%20based%20generic%20datasource%20part%20i.pdf
    Hope it helps!

  • Finding what Process Chains have a Specific Process

    Is there a report or a method to list all processes contained in all process chains or to find what process chains have\don't have a specific process without having to open each one?
    Thanks!

    Hello Alex,
    you can use ST13 and insert BW-TOOLS and execute it. In the next screen, select Process Chain Analysis and execute. After that choose Process Chain and in this way you can check all of the process chains runned in a date range (and thanks to it you can also view which are the process chain used).
    You can display all of the components (also other chains) clicking on the name of a chain.
    Hope it helps.
    Regards.
    Simone.

Maybe you are looking for

  • IDOC not coming in status 30 for collecting idocs

    Hi All, We have a requirement in which we need to collect idocs and send together. To achieve I am making Collect idocs in Partner profiles so that it goes in status 30 and hence I can run program RSEOUT00 to make it status 03 and hence write in file

  • Camera doesn't show up in iPhoto after upgrade to 10.6 Snow Leopard

    When I was running 10.5 Leopard, I would connect my camera to my computer and iPhoto would pop up and ask me to import. The camera would be listed in under Devices. After upgrading my OS to 10.6 Snow Leopard, iPhoto no longer recognizes my camera. I

  • Satellite 1900-803: Hi-Speed USB 2.0 card doesn't work

    i have a satellite 1900-803 laptop. I recently bought and installed a Belkin Hi-Speed USB 2.0 Notebook Card but it doesn't work. the card's manual says that after successful installation i should see a second "universal serial bus controllers" headin

  • Problems with a return

    I ordered a phone and added a line for my son on Dec 20. I had problems with my order online, and chatted with an associate who helped me. At one point I had to log out, log back in and re-start my order. Three days later I received two phones and ch

  • OBIEE 11.1.1.5 installation failed at: Create A Sinstance

    hello, I am trying to install OBIEE 11.1.1.5 in my Windows 7 laptop. But, it is always failing at Create A Sinstance: while configuring. I did the following things. Please let me know where I am doing wrong. 1. Ran RCU to create BI_PLATFORM and BI_MD