linxu如何创建NFS共享文件系统

服务端搭建nfs服务器

(1)yum -y install nfs-utils #yum安装nfs共享文件系统包
(2)创建共享文件夹
[root@k8s-master01 ~]# mkdir /data

(3) 修改配置文件 vim /etc/exports
/data 172.16.16.0/24(rw,no_root_squash,no_all_squash,sync) #允许哪些网段的人访问

(4) 重启nfs服务
systemctl restart nfs
systemctl enable nfs

(5) 查看共享文件夹
[root@k8s-master01 storagefile]# showmount -e
Export list for k8s-master01:
/data 172.16.16.0/24

客户端操作
1 yum -y install nfs-utils #安装nfs软件服务包
2 mount -t nfs 172.18.1.228:/data /data 临时挂载/需要先创建需要挂载的文件夹
3.永久挂载 写入/etc/fstab
172.16.16.101:/data /data nfs rw,soft,intr 0 0

你可能感兴趣的:(linux,nfs)