标签:
实测
服务端 centos7 192.168.1.129
安装软件
yum install nfs-utils portmap
service rpcbind start、service nfs start
[root@localhost nfs]# cat /etc/exports #设置共享目录 添加以下内容
/home/nfs/ 192.168.1.126/24(rw,no_root_squash,no_all_squash,sync)
[root@localhost nfs]# exportfs -r #使配置生效
关闭防火墙
[root@localhost nfs]# firewall-cmd --state
[root@localhost nfs]# systemctl stop firewalld
客户端 Ubuntu 192.168.1.126
root@zabix:~/nfs# mount -t nfs 192.168.1.129:/home/nfs /root/nfs #挂载
提示错误
root@zabix:~# showmount -e 192.168.1.129 #提示apt-get install nfs-common
安装后就正常挂载了
root@zabix:~/nfs# showmount -e 192.168.1.129
Export list for 192.168.1.129:
/home/nfs 192.168.1.126
接下来能挂载成功
标签:
原文地址:http://www.cnblogs.com/hanxing/p/4320188.html