<?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: rsh hanging in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/rsh-hanging/m-p/4013363#M28631</link>
    <description>similar ssh relation can be mase for all acconts including root</description>
    <pubDate>Fri, 08 Jun 2007 22:18:47 GMT</pubDate>
    <dc:creator>skt_skt</dc:creator>
    <dc:date>2007-06-08T22:18:47Z</dc:date>
    <item>
      <title>rsh hanging</title>
      <link>https://community.hpe.com/t5/operating-system-linux/rsh-hanging/m-p/4013357#M28625</link>
      <description>Hello all, a lot of my scripts hang because you cannot rlogin into these systems. The script says ping systemA, if pingable, then rsh systemA w etc.&lt;BR /&gt;These systems are pingable, but you cannot rsh into them. It's often resolved after a reboot. What can i check pls or how can i include in the script to termintate if rsh hanging?&lt;BR /&gt;Thanks.</description>
      <pubDate>Tue, 05 Jun 2007 08:07:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/rsh-hanging/m-p/4013357#M28625</guid>
      <dc:creator>B.O</dc:creator>
      <dc:date>2007-06-05T08:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: rsh hanging</title>
      <link>https://community.hpe.com/t5/operating-system-linux/rsh-hanging/m-p/4013358#M28626</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;On the target system:&lt;BR /&gt;tail -f /var/log/messages&lt;BR /&gt;&lt;BR /&gt;run your script.&lt;BR /&gt;&lt;BR /&gt;If that yields no data, try using tdpdump&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 05 Jun 2007 11:13:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/rsh-hanging/m-p/4013358#M28626</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2007-06-05T11:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: rsh hanging</title>
      <link>https://community.hpe.com/t5/operating-system-linux/rsh-hanging/m-p/4013359#M28627</link>
      <description>I would recommend ssh instaed.More secure. Still we need to identify why the rsh hangs.</description>
      <pubDate>Tue, 05 Jun 2007 20:18:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/rsh-hanging/m-p/4013359#M28627</guid>
      <dc:creator>skt_skt</dc:creator>
      <dc:date>2007-06-05T20:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: rsh hanging</title>
      <link>https://community.hpe.com/t5/operating-system-linux/rsh-hanging/m-p/4013360#M28628</link>
      <description>Thanks. I'm using rsh because the scripts need to run some commands on several of linux systems: rsh systemA uptime; rsh systemA ls - al xxxx etc. These scripts are run from the crontab.&lt;BR /&gt;Moreover, ssh will require root password, hence only good during interactive sessions.&lt;BR /&gt;I just need to know if there's something to include in the script for the rsh to terminate rather than hang.&lt;BR /&gt;Thank you.</description>
      <pubDate>Wed, 06 Jun 2007 05:43:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/rsh-hanging/m-p/4013360#M28628</guid>
      <dc:creator>B.O</dc:creator>
      <dc:date>2007-06-06T05:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: rsh hanging</title>
      <link>https://community.hpe.com/t5/operating-system-linux/rsh-hanging/m-p/4013361#M28629</link>
      <description>password less ssh can be set up too.&lt;BR /&gt;&lt;BR /&gt;Login with "applmgr"(example) account and check if you have these files - &lt;BR /&gt;/home/applmgr/.ssh/id_rsa&lt;BR /&gt;/home/applmgr/.ssh/id_rsa.pub&lt;BR /&gt; &lt;BR /&gt;If not then run;&lt;BR /&gt; &lt;BR /&gt;ssh-keygen -t rsa&lt;BR /&gt; &lt;BR /&gt;example -&lt;BR /&gt;$ ssh-keygen -t rsa&lt;BR /&gt;Generating public/private rsa key pair.&lt;BR /&gt;Enter file in which to save the key (/home/sharma/.ssh/id_rsa):&lt;BR /&gt;Enter passphrase (empty for no passphrase):&lt;BR /&gt;Enter same passphrase again:&lt;BR /&gt;Your identification has been saved in /home/sharma/.ssh/id_rsa.&lt;BR /&gt;Your public key has been saved in /home/sharma/.ssh/id_rsa.pub.&lt;BR /&gt;The key fingerprint is:&lt;BR /&gt;c1:a8:1d:f8:e5:a4:79:10:d3:5c:d8:90:72:0d:f0:84 sharma@hostname&lt;BR /&gt;&lt;BR /&gt;Now copy the contents of source "/home/applmgr/.ssh/id_rsa.pub" to dest "/home/applmgr/.ssh/authorized_keys". Append in case the authorized file already exists on dest&lt;BR /&gt;&lt;BR /&gt;P.S - The public/private key pair needs to be generated only once via ssh-keygen and thereafter same keys can be copied to "authorized_keys" on diff. servers for passwordless entry.&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 06 Jun 2007 22:07:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/rsh-hanging/m-p/4013361#M28629</guid>
      <dc:creator>skt_skt</dc:creator>
      <dc:date>2007-06-06T22:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: rsh hanging</title>
      <link>https://community.hpe.com/t5/operating-system-linux/rsh-hanging/m-p/4013362#M28630</link>
      <description>Thanks, i'll try it out. But i doubt that's what i need because i need to run these scripts as root, and not as myself.&lt;BR /&gt;Thanks.</description>
      <pubDate>Fri, 08 Jun 2007 02:55:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/rsh-hanging/m-p/4013362#M28630</guid>
      <dc:creator>B.O</dc:creator>
      <dc:date>2007-06-08T02:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: rsh hanging</title>
      <link>https://community.hpe.com/t5/operating-system-linux/rsh-hanging/m-p/4013363#M28631</link>
      <description>similar ssh relation can be mase for all acconts including root</description>
      <pubDate>Fri, 08 Jun 2007 22:18:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/rsh-hanging/m-p/4013363#M28631</guid>
      <dc:creator>skt_skt</dc:creator>
      <dc:date>2007-06-08T22:18:47Z</dc:date>
    </item>
  </channel>
</rss>

