showmount: can't get address for localhost

来源:互联网 发布:北京朝阳有线网络电视 编辑:程序博客网 时间:2024/05/01 07:34
# showmount -e
showmount: can't get address for localhost
可能的原因
a) Portmap没有正常启动启动

b) 当NFS Server 上面的/etc/hosts文件中的域名与本机IP不对称时,会出现无法导出共享目录的现象。即exportfs 命令导出共享时间极长,导致无法导出,或者showmount –e命令显示本机共离时显示” showmount: can't get address for localhost”错误。

#vi /etc/hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
::1     localhost.localdomain   localhost

改成如下:
# Do not remove the following line, or various programs
# that require network functionality will fail.
::1     localhost.localdomain   localhost
127.0.0.1      localhost.localdomain   localhost

然后就好了
[root@localhost ~]# showmount -e
Export list for localhost:
/root/Desktop/NFS_Server() 192.168.64.1



原创粉丝点击