NFS 安装后,某些目录上立即出现“过时文件句柄”;没有打开文件句柄

NFS 安装后,某些目录上立即出现“过时文件句柄”;没有打开文件句柄

一段时间以来,我一直遇到 NFS 的一个奇怪问题,即在 NFS 安装后,目录中看似随机的目录子集(始终相同)/始终显示为过时的文件句柄。

我已经能够通过显式导出看似随机的问题目录集来纠正问题,但我想看看是否可以更彻底地修复问题,这样我就不必偶尔将随机目录添加到导出表中。

下面,我挂载了一个文件系统,显示没有打开的文件句柄,然后运行ls并重新运行lsof。为了清楚起见,在命令之间添加了空行:

# mount -t nfs -o vers=4,noac,hard,intr 192.168.0.2:/ /nfs -vvv
mount.nfs: trying text-based options 'vers=4,noac,hard,intr,addr=192.168.0.2,clientaddr=192.168.0.4'
192.168.0.2:/ on /nfs type nfs (rw,vers=4,noac,hard,intr)

# lsof | grep /nfs

# ls -lh /nfs
ls: cannot access /nfs/usr: Stale file handle
ls: cannot access /nfs/root: Stale file handle
ls: cannot access /nfs/etc: Stale file handle
ls: cannot access /nfs/home: Stale file handle
lrwxrwxrwx   1 root root       7 Mar 27  2017 bin -> usr/bin
drwxr-xr-x   6 root root     16K Jan  1  1970 boot
drwxr-xr-x 438 i336 users    36K Feb 28 12:12 data
drwxr-xr-x   2 root root    4.0K Mar 14  2016 dev
d?????????   ? ?    ?          ?            ? etc
d?????????   ? ?    ?          ?            ? home
lrwxrwxrwx   1 root root       7 Mar 27  2017 lib -> usr/lib
lrwxrwxrwx   1 root root       7 Mar 27  2017 lib64 -> usr/lib
drwxr-xr-x  15 root root    4.0K Oct 15 15:51 mnt
drwxr-xr-x   2 root root    4.0K Aug  9  2017 nfs
drwxr-xr-x  14 root root    4.0K Jan 28 17:00 opt
dr-xr-xr-x   2 root root    4.0K Mar 14  2016 proc
d?????????   ? ?    ?          ?            ? root
drwxr-xr-x   2 root root    4.0K Mar 14  2016 run
lrwxrwxrwx   1 root root       7 Mar 27  2017 sbin -> usr/bin
drwxr-xr-x   6 root root    4.0K Jun 22  2016 srv
dr-xr-xr-x   2 root root    4.0K Mar 14  2016 sys
drwxrwxrwt   2 root root    4.0K Dec 10  2016 tmp
d?????????   ? ?    ?          ?            ? usr
drwxr-xr-x  15 root root    4.0K May 24  2017 var

# lsof | grep /nfs

#

有问题的子目录不是挂载点;而是挂载点。他们看起来完全正常:

$ ls -dlh /usr /root /etc /home
drwxr-xr-x 123 root root  12K Mar  3 13:34 /etc
drwxr-xr-x   7 root root 4.0K Jul 28  2017 /home
drwxrwxrwx  32 root root 4.0K Mar  3 13:55 /root
drwxr-xr-x  15 root root 4.0K Feb 24 17:48 /usr

syslog 中没有关于这些目录的相关错误。唯一显示的信息提到了一组不同的目录:

... rpc.mountd[10080]: Cannot export /proc, possibly unsupported filesystem or fsid= required
... rpc.mountd[10080]: Cannot export /dev, possibly unsupported filesystem or fsid= required
... rpc.mountd[10080]: Cannot export /sys, possibly unsupported filesystem or fsid= required
... rpc.mountd[10080]: Cannot export /tmp, possibly unsupported filesystem or fsid= required
... rpc.mountd[10080]: Cannot export /run, possibly unsupported filesystem or fsid= required

目前的情况如下/etc/exports

/ *(rw,subtree_check,no_root_squash,nohide,crossmnt,fsid=0,sync)

服务器端运行 Arch Linux,目前内核为 4.10.3。

客户端是 Slackware 14.1,内核为 4.1.6。

答案1

exports对于 NFS 4,您的文件看起来不正常:

/ *(rw,subtree_check,no_root_squash,nohide,crossmnt,fsid=0,sync)

相反,我认为你需要遵循Arch Linux 说明 对于那条fsid=0线。它声明了一个特殊的导出,“所谓的 NFS 根”。

然后按照说明在后续行中声明您自己的导出。您可以导出服务器的根文件系统(不要与 NFS 根混淆),如下所示旧的 Gentoo 帖子

相关内容