##########################################################
(服务端)
临时关闭防火墙,或者如果无法关闭,则开通nfs端口
firewall-cmd –zone=public –add-port=2049/tcp –permanent
1.安装nfs
yum install -y nfs-utils rpcbind
systemctl start rpcbind
netstat -antup | grep rpc
systemctl start nfs
2.创建共享目录
mkdir -p /testServer
放部分测试数据进去
cp -r /usr/sbin /testServer
chown -R nfsnobody:nfsnobody /testServer
3.编辑配置文件,用于将本机的/testfile目录共享给加密机
vi /etc/exports
/testServer 加密机ip地址(rw)
- 重启nfs使配置生效
systemctl restart nfs或 exportfs -rv
showmount -e
##########################################################
(客户端)
- 安装nfs客户端
yum install -y nfs-utils
systemctl start nfs
- 挂载服务端映射过来的目录
mkdir /testClient
mount -t nfs 非加密机ip:/testServer /testClient
3.查看挂载情况
df -Th
开机自动挂载
vi /etc/fstab
192.168.59.198:/nfs-dest/ /nfs-target nfs rw,bg,hard,nofail,rsize=32768,wsize=32768,vers=3 0 0
192.168.59.198:/nfs-source/ /nfs-source nfs rw,bg,hard,nofail,rsize=32768,wsize=32768,vers=3 0 0
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。