从 Windows Server 2019 挂载 NFSv3

从 Windows Server 2019 挂载 NFSv3

我已使用 NFS 版本 3 在 Windows Server 2019 上启用了 NFS 共享。我已通过 powershell 禁用了 NFS 版本 2 和 NFS 版本 4:

Set-NfsServerConfiguration -EnableNfsv2 $False -EnableNfsv4 $False -EnableNfsv3 $True

在我的 CentOS 7 中,我尝试使用以下命令挂载 NFS:

mount -t nfs -o vers=3 192.168.0.4:/NFS /home4

但出现错误:

mount.nfs: Operation not permitted

我可以知道我错过了什么吗?

答案1

根据微软文章 网络文件系统概述,Windows Server 2019 仅支持 NFSv4.1 - 它不支持 NFSv3。

在此处输入图片描述

相关内容