介绍:NFS可以实现服务器目录共享给客户端使用


NFS 服务器端设置

setenforce 0                       //临时关闭selinux

service iptables stop         //关闭防火墙

yum -y install nfs-utils-*

yum -y install rpcbind      //如果是5版本的请修改为portmap

mkdir /test

chmod 777 test/

vim /etc/exports               //配置目录文件

/test          192.168.49.141(rw)


service rpcbind restart

service nfs restart             //每次修改配置目录后都需要重启这两个


NFS 客户端设置

setenforce 0

service iptables stop

yum -y install nfs-utils

mkdir /test

chmod 777 test/

mount 192.168.49.140:/test /test



***portmap在CentOS 6上已经更名为rpcbind ***