标签:客户 组合 mod 文件 命令 async tab fstab yum
服务器客户端yum -y install rpcbind nfs-utils
服务器
vim /etc/exports
/data 192.168.10.0/24(rw,sync,no_root_squash)
* ro # 只读权限
* rw # 读写权限
* sync # 同步,数据更安全,速度慢
* async #异步,速度快,效率高,安全性低
systemctl enable nfs-server
systemctl enable rpcbind
systemctl start nfs-server
systemctl start rpcbind.service
exportfs
chmod o+w /data
exportfs -v
/data 192.168.10.0/24(rw,async,wdelay,hide,no_subtree_check,sec=sys,secure,root_squash,no_all_squash)
常用选项
* -a:全部卸载或全部挂载
* -r:重新挂载
* -u:卸载某个目录
* -v:显示共享目录
* 常用组合:exportfs -arv
* 服务端更改配置文件后,不重启服务,直接执行该命令就可以使更改后的配置文件生效。
注意: 在重启nfs服务之前需要先将所有挂载点卸载,否则将发生程序错误,严重者会拖垮系
客户端
yum -y install rpcbind nfs-utils
systemctl start rpcbind.service
showmount -e 192.168.10.100
mount 192.168.10.100:/data /data1
vim /etc/fstab
192.168.10.100:/data /data nfs rw
服务器客户端 # 使创建者 创建完之后,为创建者的用户。
vim /etc/idmapd.conf
5 Domain = xx.com
systemctl restart rpcbind.service
标签:客户 组合 mod 文件 命令 async tab fstab yum
原文地址:http://blog.51cto.com/hequan/2063689