安装:
yum -y install nfs-utils rpcbind
1)修改配置文件
#vi /etc/exports
/data *(rw,sync,fsid=0,no_root_squash,insecure)
2)重启NFS服务
exportfs -a
service rpcbind restart
service nfs restart
3)挂载
mount -t nfs -o rw,bg,hard,nointr,rsize=32768,wsize=32768,tcp,vers=3,timeo=600,noac 127.0.0.1:/data /zmnt