服务器端:
yum install -y nfs-utils
vi /etc/exports
/data/rman 10.0.X.X(rw,sync)
/data/rman 为服务器端的路径,该路径下的磁盘空间提供给客户端使用
IP地址为客户端IP
()为权限
systemctl restart nfs
后续每次添加一个客户端就在EXPORTS里面添加一行,然后重启NFS服务
chmod -R 777 /data/rman
客户端:
创建/nfs目录
mount -t nfs 10.0.X.X:/data/rman /nfs
将服务端的路径Mount给 /nfs目录
nfs端口号是2049