介紹:NFS能夠實現服務器目錄共享給客戶端使用linux
NFS 服務器端設置vim
setenforce 0 //臨時關閉selinux服務器
service iptables stop //關閉防火牆ide
yum -y install nfs-utils-*spa
yum -y install rpcbind //若是是5版本的請修改成portmaprest
mkdir /testip
chmod 777 test/rpc
vim /etc/exports //配置目錄文件it
/test 192.168.49.141(rw)table
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 ***