CentOS7下安装NFS初体验

  |   0 评论   |   0 浏览

背景

服务端

安装软件

yum -y install nfs-utils rpcbind

更改配置文件

增加文件 /etc/exports,内容如下:

/home/exports 172.16.0.0/24(rw,async,no_root_squash)

更改目录权限

chmod 777 /home/exports

启动服务

systemctl start rpcbind nfs

客户端

安装软件

yum -y install nfs-utils

查看服务端

# showmount -e 172.16.0.109
Export list for 172.16.0.109:
/home/exports 172.16.0.*

手动挂载

mount 172.16.0.109:/home/exports /home/exports

自动挂载

echo "172.16.0.109:/home/exports /home/exports nfs defaults 0 0" >> /etc/fstab

写入测试

客户端

touch /home/exports/1

服务端

# ll /home/exports/
总用量 0
-rw-r--r--. 1 root root 0 12月  3 10:02 1