The Community is now in read-only mode to prepare for the launch of the new Flexera Community. During this time, you will be unable to register, log in, or access customer resources. Click here for more information.

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Question:

How to fix df -P issues? I am getting the following as output.[MGMTPROD\func-us-cloudscape@n7intlweb67 ~]$ sudo df -P df: `/secure': Stale file handle Filesystem

 

Answer:

NFS is stateless by design, meaning that if a filesystem is mounted on the local system from a remote NFS server, and the NFS server connection goes away, the local system is not notified that the data is no longer available and continues to see the filesystem as mounted. However, since the filesystem has gone away, attempts to access the filesystem results in a "stale file handle" error.To address the issue, the NFS mount on the local system needs to be refreshed. This may require unmounting the filesystem and remounting it, or simply unmounting the filesystem if it is no longer needed. As an example, if the filesystem mounted locally to `/mnt` over NFS from the server `example.com` has become stale, the following will umount and remount the filesystem: umount /mnt, mount -t nfs example.com:/some/filesystem /mnt 

 

No ratings
Version history
Last update:
‎Jan 17, 2020 09:19 AM
Updated by: