NFS 文件共享

最后更新于:2022-04-02 03:52:31

[TOC] ## 概述 1. Network File System的简写,即网络文件系统 2. NFS允许一个系统在网络上与他人共享目录和文件。通过使用NFS,用户和程序可以像访问本地文件一样访问远端系统上的文件 ## 实例 服务端:106.13.177.139 客户端:39.107.221.233 服务端: ``` > yum -y install nfs-utils > /etc/exports # nfs配置文件 > systemctl start nfs # 启动nfs服务 > vim /etc/exports /test *(rw) # *表示任何客户端可访问,rw表示权限 > systemctl restart nfs > chmod 777 /test/ ``` 客户端: ``` > yum -y install nfs-utils > showmount -e 106.13.177.139 # 查看服务端的挂载列表 > mount 106.13.177.139:/test/ /tmp/ // 开机自动挂载 > vim /etc/fstab 106.13.177.139:/test/ /tmp nfs defaults 0 0 > umount /tmp/ > mount -a > ls /tmp/ ```
';