“yum 安装 nfs*”
“yum 安装端口映射”
在/etc/exports
文件下方的文件夹中设置
/示例(NAS 驱动器)*(rw,sync,no_root_squash,no_all_squash,fsid=0)
重新启动所有 NFS、nfslock、netfs 和 portmap 服务,并尝试使用以下方式从 Ububtu 客户端挂载驱动器mount nfs /IPADDRESS/Sharename /localpath
答案1
很难说你的问题是什么。也许是来自 SElinux、防火墙、rpcbind 或权限。你应该仔细阅读安全增强型 Linux 和管理受限服务。你的链接这里。
答案2
再次检查 nfs 服务器本身是否具有对共享目录的访问权限
您可以使用“ls -la”命令检查目录权限:
NFS 服务器没有访问权限的示例:
cd /your/dir
ls -la
drwxr-x---+ 3 user user 4096 Mar 12 23:17 dir
授予用户、组和其他服务的访问权限:
chmod 755 dir
ls -la
drwxr-xr-x+ 3 user user 4096 Mar 12 23:34 dir
重新启动 nfs 服务器并尝试再次挂载。