<?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: NFS fails with RPC timeout during cpio in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-fails-with-rpc-timeout-during-cpio/m-p/2708371#M59852</link>
    <description>Hi Christopher,&lt;BR /&gt;&lt;BR /&gt; IF you're exporting then these option go on the line in /etc/exports - EX:&lt;BR /&gt;/export1 -rsize=2048,wsize=2048&lt;BR /&gt;&lt;BR /&gt;If on import then can be specified on the command line&lt;BR /&gt;mount -F nfs host1:/import1 -o rsize=2048,wsize=2048&lt;BR /&gt;&lt;BR /&gt;To make available for boot time mounting or for the mount -a command, they need to be specified in the /etc/fstab - EX&lt;BR /&gt;host1:/import1 /mnt_point nfs rsize=2048,wsize=2048 0 0 &lt;BR /&gt;Of course retain any (hard,soft,etc) options that are already in the fstab line for this NFS mount.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
    <pubDate>Mon, 22 Apr 2002 19:37:35 GMT</pubDate>
    <dc:creator>Jeff Schussele</dc:creator>
    <dc:date>2002-04-22T19:37:35Z</dc:date>
    <item>
      <title>NFS fails with RPC timeout during cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-fails-with-rpc-timeout-during-cpio/m-p/2708367#M59848</link>
      <description>I have a K580 with two filesystems NFS mounted to it for that purpose of performing database logging and backups. On only one of the two NFS mounts, we receive the following error from syslog "vmunix: NFS write failed for server &lt;SERVERNAME&gt;: RPC: Timed out"&lt;BR /&gt;We get the same message when we try to do a cpio to the directory. The other directory backs up fine and cpio works fine also. The questionable directory has plenty of space in it and both directories have the exact same configuration and permissions, both on the mounts and on the underlying directories. I should mention that this behavior started recently after we had changed the domain settings for this server as well as the server that the filesystems are mounted from. The exports file does have the shortname as well as the FQDN fo the new domain. Any Ideas?&lt;/SERVERNAME&gt;</description>
      <pubDate>Mon, 22 Apr 2002 17:03:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-fails-with-rpc-timeout-during-cpio/m-p/2708367#M59848</guid>
      <dc:creator>Christopher E Chaves</dc:creator>
      <dc:date>2002-04-22T17:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: NFS fails with RPC timeout during cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-fails-with-rpc-timeout-during-cpio/m-p/2708368#M59849</link>
      <description>Try Decreasing the values of the wsize and rsize mount options to 4096 or 2048 on the NFS clients. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;rsize=n (default=8192) &amp;amp; wsize=n (default=8192)&lt;BR /&gt;&lt;BR /&gt;The number of bytes the NFS client requests from the NFS server in a single read request.If packets are being dropped between the client and the server, decrease rsize and wsize to 4096 or 2048.</description>
      <pubDate>Mon, 22 Apr 2002 17:09:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-fails-with-rpc-timeout-during-cpio/m-p/2708368#M59849</guid>
      <dc:creator>hpuxrox</dc:creator>
      <dc:date>2002-04-22T17:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: NFS fails with RPC timeout during cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-fails-with-rpc-timeout-during-cpio/m-p/2708369#M59850</link>
      <description>Hi,&lt;BR /&gt;You can do following&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;1. Try reducing the size of read and write buffer (rsize and wzise to 1024)&lt;BR /&gt;&lt;BR /&gt;2. use tcp mount option &lt;BR /&gt;&lt;BR /&gt;mount -F nfs -p tcp &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;-pap</description>
      <pubDate>Mon, 22 Apr 2002 18:36:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-fails-with-rpc-timeout-during-cpio/m-p/2708369#M59850</guid>
      <dc:creator>pap</dc:creator>
      <dc:date>2002-04-22T18:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: NFS fails with RPC timeout during cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-fails-with-rpc-timeout-during-cpio/m-p/2708370#M59851</link>
      <description>Where do I make these modifications to the rsize and wsize?</description>
      <pubDate>Mon, 22 Apr 2002 19:21:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-fails-with-rpc-timeout-during-cpio/m-p/2708370#M59851</guid>
      <dc:creator>Christopher E Chaves</dc:creator>
      <dc:date>2002-04-22T19:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: NFS fails with RPC timeout during cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-fails-with-rpc-timeout-during-cpio/m-p/2708371#M59852</link>
      <description>Hi Christopher,&lt;BR /&gt;&lt;BR /&gt; IF you're exporting then these option go on the line in /etc/exports - EX:&lt;BR /&gt;/export1 -rsize=2048,wsize=2048&lt;BR /&gt;&lt;BR /&gt;If on import then can be specified on the command line&lt;BR /&gt;mount -F nfs host1:/import1 -o rsize=2048,wsize=2048&lt;BR /&gt;&lt;BR /&gt;To make available for boot time mounting or for the mount -a command, they need to be specified in the /etc/fstab - EX&lt;BR /&gt;host1:/import1 /mnt_point nfs rsize=2048,wsize=2048 0 0 &lt;BR /&gt;Of course retain any (hard,soft,etc) options that are already in the fstab line for this NFS mount.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
      <pubDate>Mon, 22 Apr 2002 19:37:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-fails-with-rpc-timeout-during-cpio/m-p/2708371#M59852</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2002-04-22T19:37:35Z</dc:date>
    </item>
  </channel>
</rss>

