<?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: Remsh hanging in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/remsh-hanging/m-p/4878220#M848699</link>
    <description>Try the following command&lt;BR /&gt;&lt;BR /&gt;remsh node -l root -n ps -ef | tee your_file | grep XYZ | grep -v grep&lt;BR /&gt;&lt;BR /&gt;(all one line)&lt;BR /&gt;&lt;BR /&gt;This will create a file locally called your_file (or whatever you want) which will be overwritten each time the command is run. Take a copy of the file if the command runs successfully and compare it to the contents of the file when the command hangs, it might give you a clue. &lt;BR /&gt;&lt;BR /&gt;As an aside, remsh hangs if the command is interactive (which yours isn't) or becomes interactive. I can't immediately see why a ps would become interactive though. Might be a red herring.</description>
    <pubDate>Wed, 05 Jan 2005 05:33:54 GMT</pubDate>
    <dc:creator>Stephen Keane</dc:creator>
    <dc:date>2005-01-05T05:33:54Z</dc:date>
    <item>
      <title>Remsh hanging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remsh-hanging/m-p/4878217#M848696</link>
      <description>The following command hangs sometimes.&lt;BR /&gt;&lt;BR /&gt;remsh node -l root -n ps -ef|grep XYZ|grep -v grep&lt;BR /&gt;&lt;BR /&gt;As a result we need to abort the script execution. The surprising part is that the command works many a times also.&lt;BR /&gt;&lt;BR /&gt;Cud anyone elaborate on this ??</description>
      <pubDate>Wed, 05 Jan 2005 01:58:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remsh-hanging/m-p/4878217#M848696</guid>
      <dc:creator>Pankaj Agrawal</dc:creator>
      <dc:date>2005-01-05T01:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Remsh hanging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remsh-hanging/m-p/4878218#M848697</link>
      <description>Can you check if the remote node is running normal. If the system response of the remote host is poor, you may face the same problem. Also can you check if your network connectivity to the remote is fine.</description>
      <pubDate>Wed, 05 Jan 2005 02:21:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remsh-hanging/m-p/4878218#M848697</guid>
      <dc:creator>bhoopathi_1</dc:creator>
      <dc:date>2005-01-05T02:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: Remsh hanging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remsh-hanging/m-p/4878219#M848698</link>
      <description>Thx Bhoopathi...&lt;BR /&gt;Your suggestions do make sense..But prior to the remsh execution, we are checking the node availability using Ping.Thus the remote command is executed only if the node is available..&lt;BR /&gt;Thus somethg else is contributing to the problem.</description>
      <pubDate>Wed, 05 Jan 2005 03:53:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remsh-hanging/m-p/4878219#M848698</guid>
      <dc:creator>Pankaj Agrawal</dc:creator>
      <dc:date>2005-01-05T03:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: Remsh hanging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remsh-hanging/m-p/4878220#M848699</link>
      <description>Try the following command&lt;BR /&gt;&lt;BR /&gt;remsh node -l root -n ps -ef | tee your_file | grep XYZ | grep -v grep&lt;BR /&gt;&lt;BR /&gt;(all one line)&lt;BR /&gt;&lt;BR /&gt;This will create a file locally called your_file (or whatever you want) which will be overwritten each time the command is run. Take a copy of the file if the command runs successfully and compare it to the contents of the file when the command hangs, it might give you a clue. &lt;BR /&gt;&lt;BR /&gt;As an aside, remsh hangs if the command is interactive (which yours isn't) or becomes interactive. I can't immediately see why a ps would become interactive though. Might be a red herring.</description>
      <pubDate>Wed, 05 Jan 2005 05:33:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remsh-hanging/m-p/4878220#M848699</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-01-05T05:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: Remsh hanging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remsh-hanging/m-p/4878221#M848700</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;What os version and what ARPA transport patch?&lt;BR /&gt;on 11.0 a similar case existed with an old patch.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Jan 2005 05:52:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remsh-hanging/m-p/4878221#M848700</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2005-01-05T05:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Remsh hanging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remsh-hanging/m-p/4878222#M848701</link>
      <description>Why don't you try as like,&lt;BR /&gt;&lt;BR /&gt;remsh node -l root -n "ps -ef" | grep XYZ | grep -v grep &lt;BR /&gt;&lt;BR /&gt;so that,&lt;BR /&gt;&lt;BR /&gt;ps -ef operation will be done in remote machine and grep operations will be done in local machine.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Which OS you are using.?&lt;BR /&gt;&lt;BR /&gt;HTH.</description>
      <pubDate>Wed, 05 Jan 2005 07:31:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remsh-hanging/m-p/4878222#M848701</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-01-05T07:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: Remsh hanging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remsh-hanging/m-p/4878223#M848702</link>
      <description>The problem was diagnosed to be at the network level. There was nothing wrong with the command as such.&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Jan 2005 04:14:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remsh-hanging/m-p/4878223#M848702</guid>
      <dc:creator>Pankaj Agrawal</dc:creator>
      <dc:date>2005-01-13T04:14:53Z</dc:date>
    </item>
  </channel>
</rss>

