记一次配置nfs两台linux之间文件共享

环境准备

  • 两台contos服务器
  • 服务器1ip:192.168.1.104
  • 服务器2ip:192.168.1.106
  • NFS

安装NFS(服务器1和服务2都需要安装)

  1. 查看是否安装
rpm -qa nfs-utils
rpm -qa rpcbind
  1. 安装nfs
yum -y install nfs-utils rpcbind
  1. 启动nfs
systemctl start rpcbind
systemctl start nfs

配置共享文件

如,将服务器1上的/data/www文件共享到服务2上的/data/www文件。

操作步骤

  1. 在服务器1上输入命令:vi /etc/exports添加如下内容
# 将服务器1上的/data/www目录共享给服务器2,且有读写权限,
# sync代表数据会同步写入到内存与硬盘中
/data/www 192.168.1.106(rw,sync)  
  1. 重新启动服务器1的nfs
systemctl restart rpcbind
systemctl restart nfs
  1. 将服务器2的/data/www文件和服务器1的共享文件进行挂载
# 服务器2上执行
mount -t nfs 192.168.1.104:/data/www /data/www
  1. 查看是否挂载成功
df -h 
文件挂载

挂载成功。 ok就可以实现文件共享了。

你可能感兴趣的:(记一次配置nfs两台linux之间文件共享)