NFS部署

yum install nfs-utils -y
systemctl restart/enable nfs 
systemctl status rpcbind
vim /etc/exports
/storage *(rw,sync,no_root_squash)

/data/nfs 172.28.11.0/24(rw)
chown -R nfsnobody.nfsnobody /data/nfs/
systemctl restart nfs 
原文地址:https://www.cnblogs.com/kylingx/p/12373050.html