标签:fir emc 分区挂载 alt serve 火墙 ip) lld body
1.在服务端创建/public作为共享目录,将属主和属组改为nfsnobodymkdir /public
chown -R nfsnobody.nfsnobody /public
yum -y install nfs-utils
3.启动nfs服务
systemctl start rpcbind nfs-server
4.修改配置文件,确定让那台主机访问,
vim /etc/exports
/public 192.168.61.133(rw) ( /public是共享出去的目录)
5.重启nfs服务,关闭防火墙。
systemctl stop firewalld
systemctl start rpcbind nfs-server
6.在客户机查看服务器端共享位置和允许ip。
showmount -e 192.168.61.131
7.将nfs分区挂载 (这里是挂载到/nfs目录)
mount -t nfs 192.168.61.131:/public /nfs (-t是指定文件系统类型)
windows篇
打开windows的nfs
2.vim /etc/exports,修改配置文件:(写入的IP就允许连接共享服务器)
/public *(rw,sync,no_root_squash)
3.在cmd showmount -e IP(服务器的IP),查看服务器允许可访问的IP
showmount -e IP(服务器的IP)
4.挂载
mount 服务器ip地址:/public X:
标签:fir emc 分区挂载 alt serve 火墙 ip) lld body
原文地址:https://blog.51cto.com/14279260/2416322