<?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: Problem in NFS file system mounting in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/problem-in-nfs-file-system-mounting/m-p/4598269#M60498</link>
    <description>You could try mounting it with default options (defaults) and see if the problem persists. You also mentioned, thtat there are multiple clients accessing the share - maybe try with only one client at a time. It would also be useful to ensure, that all relevant patches are applied.</description>
    <pubDate>Mon, 15 Mar 2010 07:33:14 GMT</pubDate>
    <dc:creator>Modris Bremze</dc:creator>
    <dc:date>2010-03-15T07:33:14Z</dc:date>
    <item>
      <title>Problem in NFS file system mounting</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problem-in-nfs-file-system-mounting/m-p/4598263#M60492</link>
      <description>I have a NFS server which is exported a directory. There are 5 NFS client machines which they mount that directory too. The service used to work fine before. Now we encounter a strange problem. The mounted NFS filesystem on the clients loses its permission suddenly. The problem is that the directory on the clients loses their permissions occasionally. Although it is still mounted I cannot either change directory to the folder. I get permission denied error and the output of ls -l is as follow:&lt;BR /&gt;?------------ ? ? ? ? ? SharedFolder&lt;BR /&gt;Also, before the problem occurrence all the created files owner were root:root, now the ownership of newly created files are nobody:nobody. The Operating system of both clients and server are RHEL4-64bit.&lt;BR /&gt;Remounting the partition solves the problem temporarily but it happens again within an hour. The result of NFS debug process are as follow:&lt;BR /&gt;Client&lt;BR /&gt;Mar 9 12:17:04 app4 kernel: NFS: revalidating (0:13/2)&lt;BR /&gt;Mar 9 12:17:04 app4 kernel: NFS call getattr&lt;BR /&gt;Mar 9 12:17:04 app4 kernel: NFS reply getattr&lt;BR /&gt;Mar 9 12:17:04 app4 kernel: nfs_revalidate_inode: (0:13/2) getattr failed, error=-13&lt;BR /&gt;&lt;BR /&gt;Server&lt;BR /&gt;Mar 9 12:14:18 app9 kernel: svc: tcp_recv 00000100782f9a80 data 1 conn 0 close 0&lt;BR /&gt;Mar 9 12:14:18 app9 kernel: svc: tcp_recv 00000100782f9a80 data 1 conn 0 close 0&lt;BR /&gt;Mar 9 12:14:18 app9 kernel: svc: socket 00000100782f9a80 recvfrom(00000100782f9b28, 4) = -11&lt;BR /&gt;Mar 9 12:14:18 app9 kernel: RPC: TCP recvfrom got EAGAIN&lt;BR /&gt;Mar 9 12:14:18 app9 kernel: svc: got len=-11&lt;BR /&gt;Mar 9 12:14:18 app9 kernel: svc: server 000001007e177800 waiting for data (to = 3600000)&lt;BR /&gt;Mar 9 12:14:18 app9 kernel: svc: server 000001007de41c00 waiting for data (to = 3600000&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Mar 2010 11:59:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problem-in-nfs-file-system-mounting/m-p/4598263#M60492</guid>
      <dc:creator>sesemi</dc:creator>
      <dc:date>2010-03-10T11:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in NFS file system mounting</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problem-in-nfs-file-system-mounting/m-p/4598264#M60493</link>
      <description>What are the /etc/exports options on server and mount options (/etc/fstab?) on clients? What does nfsstat show?</description>
      <pubDate>Thu, 11 Mar 2010 12:48:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problem-in-nfs-file-system-mounting/m-p/4598264#M60493</guid>
      <dc:creator>Modris Bremze</dc:creator>
      <dc:date>2010-03-11T12:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in NFS file system mounting</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problem-in-nfs-file-system-mounting/m-p/4598265#M60494</link>
      <description>What are the /etc/exports options on server and mount options (/etc/fstab?) on clients? What does `nfsstat` show?</description>
      <pubDate>Thu, 11 Mar 2010 12:48:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problem-in-nfs-file-system-mounting/m-p/4598265#M60494</guid>
      <dc:creator>Modris Bremze</dc:creator>
      <dc:date>2010-03-11T12:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in NFS file system mounting</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problem-in-nfs-file-system-mounting/m-p/4598266#M60495</link>
      <description>the etc/fstab configuration for this mount point is as follow:&lt;BR /&gt;&lt;BR /&gt;x.x.x.x:/SharedFolder /SharedFolder nfs remount,rw,hard,nointr,tcp,vers=3,timeo=300,rsize= 32768,wsize=32768,actimeo=0 0 0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The output of mount command when the problem happens:&lt;BR /&gt;x.x.x.x:/SharedFolder /SharedFolder type nfs (rw,hard,nointr,nfsvers=3,tcp,timeo=300,rsize=3276 8,wsize=32768,actimeo=0,addr=x.x.x.x)&lt;BR /&gt;&lt;BR /&gt;This the content of /etc/exports&lt;BR /&gt;/SharedFolder app*.domainname(rw)&lt;BR /&gt;/SharedFolder x.x.x*(rw)</description>
      <pubDate>Sat, 13 Mar 2010 06:22:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problem-in-nfs-file-system-mounting/m-p/4598266#M60495</guid>
      <dc:creator>sesemi</dc:creator>
      <dc:date>2010-03-13T06:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in NFS file system mounting</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problem-in-nfs-file-system-mounting/m-p/4598267#M60496</link>
      <description>You would like to check on crontabs and other scripts which could possibly cause the permission to be changed.&lt;BR /&gt;Now since earlier permission used to be root:root that mean only root can change the permissions so you would like to see if any command/script.&lt;BR /&gt;You may also would like to check if there is any sequence for permission change.&lt;BR /&gt;&lt;BR /&gt;BR,&lt;BR /&gt;Kapil+&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 15 Mar 2010 02:33:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problem-in-nfs-file-system-mounting/m-p/4598267#M60496</guid>
      <dc:creator>Kapil Jha</dc:creator>
      <dc:date>2010-03-15T02:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in NFS file system mounting</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problem-in-nfs-file-system-mounting/m-p/4598268#M60497</link>
      <description>Nothing is set in crontab.</description>
      <pubDate>Mon, 15 Mar 2010 04:51:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problem-in-nfs-file-system-mounting/m-p/4598268#M60497</guid>
      <dc:creator>sesemi</dc:creator>
      <dc:date>2010-03-15T04:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in NFS file system mounting</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problem-in-nfs-file-system-mounting/m-p/4598269#M60498</link>
      <description>You could try mounting it with default options (defaults) and see if the problem persists. You also mentioned, thtat there are multiple clients accessing the share - maybe try with only one client at a time. It would also be useful to ensure, that all relevant patches are applied.</description>
      <pubDate>Mon, 15 Mar 2010 07:33:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problem-in-nfs-file-system-mounting/m-p/4598269#M60498</guid>
      <dc:creator>Modris Bremze</dc:creator>
      <dc:date>2010-03-15T07:33:14Z</dc:date>
    </item>
  </channel>
</rss>

