NFS文件系统是Sun公司开发的网络文件系统,也称为分布式文件系统,其基本原理是将某个设备本地文件系统通过以太网的方式共享给其它计算节点使用。也就是说,计算机节点通过NFS存储的数据是通过网络存储在另外一个设备,而不是存储在本地磁盘。NFS分布式文件系统本身是客户端服务器架构模式。
1、服务端
安装指令:
#只安装 nfs-utils 即可,rpcbind 属于它的依赖,会自动安装
yum install nfs-utils
配置:
设置开机启动:
systemctl enable rpcbind
systemctl enable nfs
安装之后启动:
systemctl start rpcbind
systemctl start nfs
netstat -anpt | grep rpcbind #查看rpcbind是否开启,rpcbind服务默认使用111端口
配置共享目录:
mkdir /test
chmod 755 /test
配置共享目录(导出目录)
vi /etc/exports
#添加如下内容:
/test/ 192.168.0.0/24(rw,sync,no_root_squash,no_all_squash)
/test: 共享目录位置。192.168.0.0/24: 允许访问的客户端IP范围,本文是限制某个子网,如果是* 代表没有限制。rw: 权限设置,可读可写。sync: 同步共享目录。no_root_squash: 可以使用 root 授权。no_all_squash: 可以使用普通用户授权。
也可以单独指定IP访问,添加如下内容:
/test/ 192.28.7.21(rw,no_root_squash,no_all_squash,sync) 192.28.7.22(rw,no_root_squash,no_all_squash,sync) 192.28.130.61(rw,no_ro
ot_squash,no_all_squash,sync) 192.28.130.62(rw,no_root_squash,no_all_squash,sync)
安装完成后,重启一下nfs服务就可以使用了
systemctl restart rpcbind
systemctl restart nfs
#查看nfs共享信息
showmount -e
2、客户端
安装:
yum install nfs-utils
showmount -e 192.168.0.100
在客户端创建本地目录:
mkdir /test
将服务端的目录挂载到本地。
mount -t nfs 192.168.0.100:/test /test
挂载完成后即可正常使用