step1:安装nfs-utils,rpcbind
yum -y install nfs-utils rpcbind(端口:111)
step2:修改配置文件(/etc/exports 不存在,要手动创建)
共享目录 *(rw,sync,no_all_squash,root_squash)
共享目录 ip(rw,sync,no_root_squash)
注意共享目录:777权限
chmod -R 777 共享目录
r:4 w:2 x:1
step3:启动服务nfs-server
systemctl start nfs-server
systemctl enable nfs-server
step4:服务端导出
exportfs -rv
客户端查看:
showmount -e nfs服务器ip
临时挂载:
mount -t nfs 服务器ip:共享目录 挂载点
/etc/fstab
服务器ip:共享目录 挂载点 nfs defaults,_netdev 0 0
mount -a
windows下挂载nfs服务:
控制面板---》程序---》启动或关闭windows功能----》勾选打开nfs客户端,管理工具---》确认
win+R--->mount -h(测试是否nfs客户端安装成功)--》mount 服务器ip:共享目录 盘幅