NFS服务端IP:192.168.40.10
NFS客户端IP:192.168.40.11
1. NFS安装
yum install -y rpcbind nfs-utils### CentOS 6 服务启动方式service rpcbind startservice nfs start### CentOS 7 启动方式systemctl start rpcbindsystemctl start nfs### CentOS 6 设置开机自启动chkconfig rpcbind onchkconfig nfs on### CentOS 7 设置开机自启动systemctl enable rpcbindsystemctl enable nfs
2. 服务端配置
以root用户在192.168.40.10上操作,假设共享路径为/nfs/share, 共享给192.168.40.11的test用户使用
mkdir -p /nfs/sharechown -R test:test /nfs/sharevi /etc/exports ### 增加如下内容,多个IP之间用空格隔开/nfs/share 192.168.40.11(rw,sync,no_root_squash)service nfs restart
注:共享目录的用户ID和组ID必须客户端和服务端一致,否者会存在操作权限的问题。
3. 客户端配置
mkdir -p /sharemount 192.168.40.10:/nfs/share /sharechown test:test /share
设置开机自动挂载
vi /etc/rc.localmount 192.168.40.10:/nfs/share /share