我对使用 NFS 共享还不太熟悉,但以下是我所拥有的。
服务器:
/etc/hosts.allow:
ALL: client1.mydomain.com, client2.mydomain.com
/etc/hosts.deny:
portmap:ALL
lockd:ALL
mountd:All
rquotad:ALL
statd:ALL
在 /etc/exports 中:
/mnt/storage client1.mydomain.com(rw) client2.mydomain.com(rw)
/mnt/logs client1.mydomain.com(rw) client2.mydomain.com(rw)
在客户端计算机上,我运行以下命令:
mount server1.mydomain.com:/mnt/storage /mnt/storage
它挂起非常很长时间,然后失败:
mount.nfs: Input/output error
这里出了什么问题?我怎么知道出了什么问题?
答案1
我只需要在尝试安装之前在每个客户端上运行portmapper
。很奇怪。我以为mount.nfs
命令会知道这样做,但它显然不知道。