rpc.mountd[47537]: refused mount request from 172.16.15.250 for /chendeyong/nfs/share/ (/): not exported
时间: 2023-08-05 14:10:04 浏览: 184
这个错误消息表明,172.16.15.250 这个 IP 地址的主机请求挂载 /chendeyong/nfs/share/ 目录,但是该目录并未在 NFS 服务器上进行导出。
要解决这个问题,你需要在 NFS 服务器上通过配置文件或命令行工具将 /chendeyong/nfs/share/ 目录导出给请求挂载的主机。具体的步骤可能因为你使用的操作系统和 NFS 版本而有所不同。
在 Linux 系统上,你可以编辑 /etc/exports 文件,并添加下面的行来导出目录:
```
/chendeyong/nfs/share/ 172.16.15.250(rw,sync,no_subtree_check)
```
然后使用以下命令重新加载导出配置:
```
exportfs -a
```
请注意,这只是一个示例命令,你需要根据自己的实际情况进行调整。此外,确保 NFS 服务器已经运行,并且相关的服务(如 nfsd)已启动。
如果你仍然遇到问题,请提供更多详细信息,例如操作系统和 NFS 版本,以便我能够更好地帮助你解决问题。
相关问题
rpc.mountd服务关闭
rpc.mountd是一个NFS服务,如果你想要关闭它,可以使用以下命令:
1. 使用systemctl命令关闭rpc-mountd服务:sudo systemctl stop rpc-mountd
2. 禁止rpc-mountd服务在系统启动时自动启动:sudo systemctl disable rpc-mountd
注意,关闭rpc.mountd服务可能会影响到NFS的使用,如果你不确定是否需要关闭它,请先确认一下。
4)编辑、加载、查看NFS服务的配置文件/etc/exports,使得所有用户可读/data_doc目录。 (5)启动NFS服务并设置开机自动启动。开放防火墙的nfs、rpc-bind、mountd服务流量,允许外部主机访问。
编辑 `/etc/exports` 文件并添加以下行:
```
/data_doc *(ro)
```
这将允许所有用户以只读方式访问 `/data_doc` 目录。
启动NFS服务并设置开机自动启动:
```bash
systemctl start nfs-server
systemctl enable nfs-server
```
开放防火墙的nfs、rpc-bind、mountd服务流量:
```bash
firewall-cmd --permanent --add-service=nfs
firewall-cmd --permanent --add-service=rpc-bind
firewall-cmd --permanent --add-service=mountd
firewall-cmd --reload
```
现在,外部主机应该可以访问NFS服务器上的 `/data_doc` 目录了。
阅读全文