[TOC] # 配置要求 * 两台 linux 服务器,centos 7 * 一台用作 nfs server * 另一台用作 nfs 客户端 > 所有命令都以 root 身份执行 # NFS Server ## 安装 nfs 服务器所需的软件包 `yum install -y nfs-utils` ## 创建 exports 文件 ``` vi /etc/exports /root/nfs_root/ *(insecure,rw,sync,no_root_squash) ``` ## 启动nfs服务 ``` # 创建共享目录 mkdir /root/nfs_root systemctl enable rpcbind systemctl enable nfs-server systemctl start rpcbind systemctl start nfs-server exportfs -r ``` ## 检查 ``` exportfs # 成功则输出如下所示 /root/nfs_root /root/nfs_root ``` # NFS Client ## 安装 nfs 客户端所需的软件包 `yum install -y nfs-utils` ## 检查 nfs 服务器端设置的共享目录 ``` # showmount -e $(nfs服务器的IP) showmount -e 192.168.136.220 # 输出结果如下所示 Export list for 192.168.136.220: /root/nfs_root * ``` ## 挂载 nfs 服务器上的共享目录到本机路径`/root/nfsmount` ``` mkdir /root/nfsmount # mount -t nfs $(nfs服务器的IP):/root/nfs_root /root/nfsmount mount -t nfs 192.168.136.220:/root/nfs_root /root/nfsmount # 写入一个测试文件 echo "hello nfs server" > /root/nfsmount/test.txt ``` ## 验证 > 在nfs服务器写入文件,在nfs客户端查看 `cat /root/nfsmount/test.txt`