<?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: rlogin in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/rlogin/m-p/2737834#M66899</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;This could be caused by insufficient ptys on the remote host.&lt;BR /&gt;&lt;BR /&gt;Check the /var/adm/syslog/syslog.log on the remote host for error messages.&lt;BR /&gt;&lt;BR /&gt;If the problem is caused by insufficient ptys, you can fix this issue by increasing the kernel parameter values of "npty" and "nstrpty".&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
    <pubDate>Wed, 05 Jun 2002 02:13:11 GMT</pubDate>
    <dc:creator>Steven Sim Kok Leong</dc:creator>
    <dc:date>2002-06-05T02:13:11Z</dc:date>
    <item>
      <title>rlogin</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rlogin/m-p/2737832#M66897</link>
      <description>expert???&lt;BR /&gt;when i use rlogin to login a remote host, i receive a message"&lt;BR /&gt;rlogind: Unable to allocate pty on remote host.&lt;BR /&gt;Connection closed."&lt;BR /&gt;&lt;BR /&gt;what is this means,how can i do</description>
      <pubDate>Wed, 05 Jun 2002 01:58:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rlogin/m-p/2737832#M66897</guid>
      <dc:creator>wangxi</dc:creator>
      <dc:date>2002-06-05T01:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: rlogin</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rlogin/m-p/2737833#M66898</link>
      <description>You ran out of of pts driver. Do this to verify and if needed increase the pty/s drivers. &lt;BR /&gt;a) In SAM-&amp;gt;KernelConfig-&amp;gt;Drivers &lt;BR /&gt;Make sure "ptm", "pts" and "ptem" are in the kernel. If not add them and rebuilt/reboot your machine. &lt;BR /&gt;b) After a) is done ..check the number of pty/s drivers .. &lt;BR /&gt;&lt;BR /&gt;# cd /dev/pty &lt;BR /&gt;# ls *|wc -l &lt;BR /&gt;# cd /dev/pts &lt;BR /&gt;# ls *|wc -l &lt;BR /&gt;&lt;BR /&gt;The default should be 60 and if that's the case increase them .. (say to 200) &lt;BR /&gt;&lt;BR /&gt;# cd /dev &lt;BR /&gt;# insf -n200 -dpty0 &lt;BR /&gt;# insf -n200 -dpty1 &lt;BR /&gt;# insf -d pts -s 200 -e</description>
      <pubDate>Wed, 05 Jun 2002 02:11:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rlogin/m-p/2737833#M66898</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-06-05T02:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: rlogin</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rlogin/m-p/2737834#M66899</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;This could be caused by insufficient ptys on the remote host.&lt;BR /&gt;&lt;BR /&gt;Check the /var/adm/syslog/syslog.log on the remote host for error messages.&lt;BR /&gt;&lt;BR /&gt;If the problem is caused by insufficient ptys, you can fix this issue by increasing the kernel parameter values of "npty" and "nstrpty".&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
      <pubDate>Wed, 05 Jun 2002 02:13:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rlogin/m-p/2737834#M66899</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-06-05T02:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: rlogin</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rlogin/m-p/2737835#M66900</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;It seems certain that you have insufficient pseudo ttys on your remote system. I always make the habit of creating at least 1000 when I&lt;BR /&gt;build a system. You can either use sam to generate a new kernel with the additional values or the command line which is quite easy:&lt;BR /&gt;&lt;BR /&gt;as 'root' (assuming HPUX11 or 11i)&lt;BR /&gt;&lt;BR /&gt;# cd /stand/build&lt;BR /&gt;# /usr/lbin/sysadm/system_prep -s system&lt;BR /&gt;# vi system&lt;BR /&gt;Change existing values or add if they do&lt;BR /&gt;not appear as below in the configurable section towards the bootom.&lt;BR /&gt;&lt;BR /&gt;nstrtel         1024&lt;BR /&gt;npty            1024&lt;BR /&gt;nstrpty         1024&lt;BR /&gt;&lt;BR /&gt;Save the file, then generate your kernel&lt;BR /&gt;&lt;BR /&gt;# mk_kernel -s system&lt;BR /&gt;# kmupdate&lt;BR /&gt;# cd /&lt;BR /&gt;# shutdown -r -y 0&lt;BR /&gt;&lt;BR /&gt;When the system comes up run these commands:&lt;BR /&gt;&lt;BR /&gt;# cd /dev&lt;BR /&gt;# insf -d pty -s 1024 -e -v&lt;BR /&gt;# insf -d ptm -s 1024 -e -v&lt;BR /&gt;# insf -d telm -s 1024 -e -v&lt;BR /&gt;# insf -d tels -s 1024 -e -v &lt;BR /&gt;&lt;BR /&gt;This should solve your problem.&lt;BR /&gt;Cheers&lt;BR /&gt;~Michael~&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Jun 2002 02:44:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rlogin/m-p/2737835#M66900</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2002-06-05T02:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: rlogin</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rlogin/m-p/2737836#M66901</link>
      <description>Hi Wangxi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You may look at the following document :&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://support1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000027709246" target="_blank"&gt;http://support1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000027709246&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;also this will b as :&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;It looks like the npty is maxed out &lt;BR /&gt;&lt;BR /&gt;check for the setting like like &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ls /dev/pty | wc -l &lt;BR /&gt;&lt;BR /&gt;and to increase it : &lt;BR /&gt;&lt;BR /&gt;cd /dev &lt;BR /&gt;insf -n300 -dpty0 &lt;BR /&gt;insf -n300 -dpty1 &lt;BR /&gt;insf -d pts -s 300 -e &lt;BR /&gt;&lt;BR /&gt;this will increse it to 300 from the default ,&lt;BR /&gt;&lt;BR /&gt;Manoj Srivastava&lt;BR /&gt; &lt;BR /&gt;</description>
      <pubDate>Wed, 05 Jun 2002 02:47:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rlogin/m-p/2737836#M66901</guid>
      <dc:creator>MANOJ SRIVASTAVA</dc:creator>
      <dc:date>2002-06-05T02:47:20Z</dc:date>
    </item>
  </channel>
</rss>

