yum install -y nfs-utils rbcbind(用来通信,在centos5中叫做portmap)
vim /etc/exports
加入: /mnt/ 203.212.6.38 (rw,sync,all_squash,anongid=501,anongid=501)
共享目录 共享IP 可读可写 所有用户限制成501
启动 /etc/init.d/rpcbind start; /etc/init.d/nfs start
客户端上挂载NFS
客户端同样安装 yum install -y nfs-utils
查看服务器端都共享了哪些目录
showmount -e 203.212.6.38
在客户端上挂载服务端的nfs
mount -t nfs -onolock,nfsvers=3 203.212.6.38:/opt/ /mnt/ //如果不加 -onolock,nfsvers=3 则在挂载目录下的文件属主和组都是nobody,如果指定nfsvers=3则显示root
df -h 查看挂载的情况
改变/etc/exports配置文件后,不用重启nfs服务直接用这个exportfs即可
exportfs -arv 使生效
nfs nobody的问题 http://www.361way.com/nfs-mount-nobody/2616.html
原文:http://19910927.blog.51cto.com/6367056/1732443