标签:serve client 共享目录 port emctl div src nfs-utils com
1. 安装 nfs工具
[root@D128 j]# yum install nfs-utils
2. 修改配置文件:
1. 查看一下语法。
[root@D128 j]# man exports
2. 改成这样
[root@D128 jcloud]# touch /etc/exports.d/source.exports
[root@D128 jcloud]# systemctl start nfs-server [root@D128 jcloud]# cat /etc/exports.d/source.exports /root/Src 192.168.50.129(rw) [root@D128 jcloud]# exportfs -arv exporting 192.168.50.129:/root/Src
3. 但是这个时候,client只能读,并没有写入的权限:
因为nfs-server没有root权限?
[root@D128 jcloud]# cat /etc/exports.d/source.exports
/root/Src 192.168.50.129(rw,no_root_squash)
服务端已设置成功。
客户端见:
NFS有各种各样的问题,如果用KVM的话,那么还有另一个更高级的方法:
virtio-9p
标签:serve client 共享目录 port emctl div src nfs-utils com
原文地址:https://www.cnblogs.com/hugetong/p/6068327.html