<?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: socket verification commands in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/socket-verification-commands/m-p/3606087#M824161</link>
    <description>Yes you can close open sockets. You need to use the ndd command for that...man ndd&lt;BR /&gt;&lt;BR /&gt;best of luck!</description>
    <pubDate>Wed, 17 Aug 2005 20:36:19 GMT</pubDate>
    <dc:creator>Sandman!</dc:creator>
    <dc:date>2005-08-17T20:36:19Z</dc:date>
    <item>
      <title>socket verification commands</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/socket-verification-commands/m-p/3606084#M824158</link>
      <description>Is there a command to check how many sockets are being opened by a particular process ? &lt;BR /&gt;&lt;BR /&gt;Can we kill or close open sockets ? If yes; what is the command for this ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shiv&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Aug 2005 17:43:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/socket-verification-commands/m-p/3606084#M824158</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2005-08-17T17:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: socket verification commands</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/socket-verification-commands/m-p/3606085#M824159</link>
      <description>Command you are looking for is &lt;BR /&gt;&lt;BR /&gt;lsof -U&lt;BR /&gt;&lt;BR /&gt;if you do not have lsof, you can get it from &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://gatekeep.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.75/" target="_blank"&gt;http://gatekeep.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.75/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;and last but not the least, I do not know any other way to close a socket other than killing the process who opened it if we are talking to do it from the unix command line. Otherwise, sockets are accesible for open and close for the applications. They close the socket by a close() system call as far as my limited system programming knowledge goes. It is not an easy process by any means.&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Aug 2005 18:05:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/socket-verification-commands/m-p/3606085#M824159</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2005-08-17T18:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: socket verification commands</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/socket-verification-commands/m-p/3606086#M824160</link>
      <description>Shiv, &lt;BR /&gt;if you don't have lsof installed you can do a netstat -an&lt;BR /&gt;but definitely lsof makes it very easy&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;DP</description>
      <pubDate>Wed, 17 Aug 2005 20:24:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/socket-verification-commands/m-p/3606086#M824160</guid>
      <dc:creator>Devesh Pant_1</dc:creator>
      <dc:date>2005-08-17T20:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: socket verification commands</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/socket-verification-commands/m-p/3606087#M824161</link>
      <description>Yes you can close open sockets. You need to use the ndd command for that...man ndd&lt;BR /&gt;&lt;BR /&gt;best of luck!</description>
      <pubDate>Wed, 17 Aug 2005 20:36:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/socket-verification-commands/m-p/3606087#M824161</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2005-08-17T20:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: socket verification commands</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/socket-verification-commands/m-p/3606088#M824162</link>
      <description>Maybe this thread will be useful :)&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=928114" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=928114&lt;/A&gt;</description>
      <pubDate>Wed, 17 Aug 2005 20:40:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/socket-verification-commands/m-p/3606088#M824162</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2005-08-17T20:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: socket verification commands</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/socket-verification-commands/m-p/3606089#M824163</link>
      <description>Hi Shiv&lt;BR /&gt;&lt;BR /&gt;lsof is contributary utility and can be used to monitor open sockets. You may download its binary from following link:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.75/" target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.75/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Mahesh</description>
      <pubDate>Thu, 18 Aug 2005 01:41:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/socket-verification-commands/m-p/3606089#M824163</guid>
      <dc:creator>Mahesh Kumar Malik</dc:creator>
      <dc:date>2005-08-18T01:41:03Z</dc:date>
    </item>
  </channel>
</rss>

