<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Queue length - listener configuration in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/queue-length-listener-configuration/m-p/3182376#M570293</link>
    <description>To fix both you need to increase;&lt;BR /&gt;&lt;BR /&gt;tcp_conn_request_max&lt;BR /&gt;(eg. ndd -set /dev/tcp tcp_conn_request_max &lt;NEWVALUE&gt;) Dont forget to set in /etc/rc.config.d/nddconf to make it permanent.&lt;BR /&gt;&lt;/NEWVALUE&gt;</description>
    <pubDate>Wed, 04 Feb 2004 05:32:46 GMT</pubDate>
    <dc:creator>Stefan Farrelly</dc:creator>
    <dc:date>2004-02-04T05:32:46Z</dc:date>
    <item>
      <title>Queue length - listener configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/queue-length-listener-configuration/m-p/3182375#M570292</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;During a performance test on a hp-ux 11.11 box, the team members are complaining that lot of requests are timing out (sockets). When I ran "netstat -p", I can see that several packets are being dropped due to full queue/listener. &lt;BR /&gt;&lt;BR /&gt;7330 connect requests dropped due to full queue&lt;BR /&gt;768 connect requests dropped due to no listener&lt;BR /&gt;&lt;BR /&gt;Also attaching the o/p of "netstat -p tcp". Are these parameters are set using ndd?? What is the recommended value for these parms? Any additional info on this is welcome.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Karthik S S</description>
      <pubDate>Wed, 04 Feb 2004 05:07:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/queue-length-listener-configuration/m-p/3182375#M570292</guid>
      <dc:creator>Karthik S S</dc:creator>
      <dc:date>2004-02-04T05:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: Queue length - listener configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/queue-length-listener-configuration/m-p/3182376#M570293</link>
      <description>To fix both you need to increase;&lt;BR /&gt;&lt;BR /&gt;tcp_conn_request_max&lt;BR /&gt;(eg. ndd -set /dev/tcp tcp_conn_request_max &lt;NEWVALUE&gt;) Dont forget to set in /etc/rc.config.d/nddconf to make it permanent.&lt;BR /&gt;&lt;/NEWVALUE&gt;</description>
      <pubDate>Wed, 04 Feb 2004 05:32:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/queue-length-listener-configuration/m-p/3182376#M570293</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2004-02-04T05:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Queue length - listener configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/queue-length-listener-configuration/m-p/3182377#M570294</link>
      <description>Thank you Stefan. By the way what are these full queue and listeners??&lt;BR /&gt;&lt;BR /&gt;-Karthik S S</description>
      <pubDate>Wed, 04 Feb 2004 05:34:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/queue-length-listener-configuration/m-p/3182377#M570294</guid>
      <dc:creator>Karthik S S</dc:creator>
      <dc:date>2004-02-04T05:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: Queue length - listener configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/queue-length-listener-configuration/m-p/3182378#M570295</link>
      <description>The server is called as the listener which listens at a port and it creates a new socket for every connection from the client.&lt;BR /&gt;&lt;BR /&gt;The queue mentioned here is the socket queue.&lt;BR /&gt;&lt;BR /&gt;#ndd -get /dev/tcp tcp_conn_request_max&lt;BR /&gt;The default is 20.Increase this value.&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Feb 2004 05:46:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/queue-length-listener-configuration/m-p/3182378#M570295</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2004-02-04T05:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Queue length - listener configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/queue-length-listener-configuration/m-p/3182379#M570296</link>
      <description>Here is some more info on this from a restricted HP doc on network performance tuning;&lt;BR /&gt;&lt;BR /&gt;tcp_conn_request_max:&lt;BR /&gt;&lt;BR /&gt;    Maximum number of outstanding inbound connection requests.&lt;BR /&gt;    [1, - ] Default: 20 connections&lt;BR /&gt;&lt;BR /&gt;This is also known as the maximum depth of the "listen queue." The&lt;BR /&gt;actual maximum for any given TCP endpoint in the LISTEN state will be&lt;BR /&gt;the MINIMUM of tcp_conn_request_max and the value the application&lt;BR /&gt;passed-in to the listen() socket call.&lt;BR /&gt;&lt;BR /&gt;For this parameter to take effect for a given application, it must be&lt;BR /&gt;set BEFORE said application makes its call to listen(). So, if you use&lt;BR /&gt;ndd to set this value after the application has started, it will have&lt;BR /&gt;no effect unless you can get the application to recreate its LISTEN&lt;BR /&gt;endpoint(s).&lt;BR /&gt;&lt;BR /&gt;You can see if tcp_conn_request_max MIGHT be too small by looking at&lt;BR /&gt;the output of either "netstat -s" or "netstat -p tcp" and looking for&lt;BR /&gt;the line displaying the number of connection requests dropped due to&lt;BR /&gt;full queue. If the number of drops is zero, the value of&lt;BR /&gt;tcp_conn_request_max is fine. If the value is non-zero, either&lt;BR /&gt;tcp_conn_request_max is too small, or the values the applications are&lt;BR /&gt;using in their calls to listen() are too small.&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Feb 2004 05:57:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/queue-length-listener-configuration/m-p/3182379#M570296</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2004-02-04T05:57:43Z</dc:date>
    </item>
  </channel>
</rss>

