NFS(Network File system,网络文件系统)是由SUN公司研制的UNIX表示层协议,它允许网络中的计算机(不同的计算机、不同的操作系统)之间通过TCP/IP网络共享资源,主要在unix系列操作系统上使用。在NFS的应用中,本地NFS的客户端应用可以透明地读写位于远端NFS服务器上的文件,就像访问本地文件一样。
nfs服务的安装与部署
安装和启用nfs服务
[root@localhost ~]# dnf installnfs-utils -y
[root@localhost ~]# systemctl enable --now nfs-server.service
Created symlink /etc/systemd/system/multi-user.target.wants/nfs-server.service → /usr/lib/systemd/system/nfs-server.service.
配置服务共享资源
[root@localhost ~]# mkdir /nfsshare
[root@localhost ~]# chmod 777 /nfsshare
[root@localhost ~]# vim /etc/exports
[root@localhost ~]# exportfs -rv
exporting *:/nfsshare
在客户端挂载nfs
[root@localhost ~]# showmount -e 192.168.230.128
Export list for 192.168.230.128:
/nfsshare *
[root@localhost ~]# vim /etc/exports
为读写共享并设定访问身份为8888
nfs客户端动态挂载机制
autofs这个服务是在客户端的上面,它会持续的检测某个指定的目录,并预先设置当使用到该目录的某个子目录时,将会取得来自服务器端的NFS文件系统资源,并进行自动挂载的操作。
[root@localhost media]# dnf install autofs -y
[root@localhost media]# systemctl enable --now autofs
访问默认autofs挂载机制
当autofs启动后系统默认会在/net目录中设置访问nfs服务器
设定动态卸载时间
默认autofs在发现资源闲置后会在300秒后自动卸载,此设定可以自行设定
[root@localhost nfsshare]# vim /etc/autofs.conf
自定义动态挂载点
[root@localhost nfsshare]# vim /etc/auto.master
[root@localhost nfsshare]# vim /etc/auto.nfsshare