Bootstrap

centos 7 NFS部署

共享目录

共享要求

/var/tmp

所有人都可以读取,root写入的文件还具有root的权限

1.安装所需软件包

yum install nfs*

yum install rpcbind

2.启动服务

 systemctl start rpcbind

 systemctl start nfs

3.设置为开机启动

systemctl enable rpcbind

systemctl enable nfs

3.设置分享的目录

vi /etc/exports

/var/tmp   *(ro,no_root_squash)



 systemctl restart nfs

 exportfs

/var/tmp        <world>

4.在另一台机器上挂载:

mount -t nfs 192.168.80.102:/var/tmp /abc

;