<?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: how to kill running address in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-kill-running-address/m-p/2514005#M22571</link>
    <description>the process you showed from the netstat is the daemon LISTENing for incoming requests. In your case, another connection must have died and terminated the connection without closing the port on the server..get lsof and run&lt;BR /&gt;lsof -i @hostname:portnumber &lt;BR /&gt;this will show you all active processes on the port number.&lt;BR /&gt;</description>
    <pubDate>Thu, 05 Apr 2001 17:25:59 GMT</pubDate>
    <dc:creator>Kevin Wright</dc:creator>
    <dc:date>2001-04-05T17:25:59Z</dc:date>
    <item>
      <title>how to kill running address</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-kill-running-address/m-p/2514001#M22567</link>
      <description>HI,&lt;BR /&gt;&lt;BR /&gt;My informix engines needs to have a port running in order for remote server to connect to our local database.  I have this entry on my /etc/services file &lt;BR /&gt;&lt;BR /&gt;   informix_db1 8735/tcp&lt;BR /&gt;&lt;BR /&gt;Now everytime I run informix process that use this port number an error occurs which is &lt;BR /&gt;&lt;BR /&gt;"# 25505 The sqlexecd daemon cannot bind a name to the socket.: Address already in use"&lt;BR /&gt;&lt;BR /&gt;When I run to check the port if it's already in use and this port is really in use&lt;BR /&gt;&lt;BR /&gt; # netstat -an | grep 8735&lt;BR /&gt;tcp 0 0  15.56.80.64.8735  *.*  LISTEN&lt;BR /&gt;&lt;BR /&gt;So my question is, is there a way to kill this port process so I can use it again and re-run my process?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;Joey</description>
      <pubDate>Thu, 05 Apr 2001 15:11:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-kill-running-address/m-p/2514001#M22567</guid>
      <dc:creator>Kurtkarl</dc:creator>
      <dc:date>2001-04-05T15:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to kill running address</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-kill-running-address/m-p/2514002#M22568</link>
      <description>tcp 0 0 15.56.80.64.8735 *.* LISTEN, kill it from application. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Apr 2001 15:46:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-kill-running-address/m-p/2514002#M22568</guid>
      <dc:creator>Vincenzo Restuccia</dc:creator>
      <dc:date>2001-04-05T15:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to kill running address</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-kill-running-address/m-p/2514003#M22569</link>
      <description>Another process is using the port - as to how to find the process, this is quite hard...&lt;BR /&gt;&lt;BR /&gt;I'd advise using 'lsof' (need to download it from the HP porting archive) and searching for the application using it...&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Apr 2001 16:11:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-kill-running-address/m-p/2514003#M22569</guid>
      <dc:creator>David Lodge</dc:creator>
      <dc:date>2001-04-05T16:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to kill running address</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-kill-running-address/m-p/2514004#M22570</link>
      <description>Before killing the process you should try to find out, which process is listening on this port. You can do this by running lsof on your machine. &lt;BR /&gt;&lt;BR /&gt;Download lsof on &lt;A href="http://gatekeep.cs.utah.edu" target="_blank"&gt;http://gatekeep.cs.utah.edu&lt;/A&gt; and run it on your machine: &lt;BR /&gt;&lt;BR /&gt;# ./lsof &amp;gt; lsof.out&lt;BR /&gt;&lt;BR /&gt;The output shows you all open files for all processes running. You can then determine whether it is ok to kill the process that listens on the port. &lt;BR /&gt;&lt;BR /&gt;If you have an idea what process is listening, you can also do this in glance (select process -&amp;gt; open files). &lt;BR /&gt;&lt;BR /&gt;Carsten&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Apr 2001 16:17:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-kill-running-address/m-p/2514004#M22570</guid>
      <dc:creator>Carsten Krege</dc:creator>
      <dc:date>2001-04-05T16:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to kill running address</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-kill-running-address/m-p/2514005#M22571</link>
      <description>the process you showed from the netstat is the daemon LISTENing for incoming requests. In your case, another connection must have died and terminated the connection without closing the port on the server..get lsof and run&lt;BR /&gt;lsof -i @hostname:portnumber &lt;BR /&gt;this will show you all active processes on the port number.&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Apr 2001 17:25:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-kill-running-address/m-p/2514005#M22571</guid>
      <dc:creator>Kevin Wright</dc:creator>
      <dc:date>2001-04-05T17:25:59Z</dc:date>
    </item>
  </channel>
</rss>

