目录


前言

安装 nfs-utils 和 rpcbind。


1、 下载

yum -y install --downloadonly --downloaddir=./ nfs-utils
yum -y install --downloadonly --downloaddir=./ rpcbind
[root@k8s-master nfs]# ll
total 1416
-rw-r--r--. 1 root root 113364 Jun 11  2021 gssproxy-0.7.0-30.el7_9.x86_64.rpm
-rw-r--r--. 1 root root  26268 Nov 12  2018 libbasicobjects-0.1.1-32.el7.x86_64.rpm
-rw-r--r--. 1 root root  42604 Nov 12  2018 libcollection-0.7.0-32.el7.x86_64.rpm
-rw-r--r--. 1 root root 219068 Jul  3  2014 libevent-2.0.21-4.el7.x86_64.rpm
-rw-r--r--. 1 root root  65172 Nov 12  2018 libini_config-1.3.1-32.el7.x86_64.rpm
-rw-r--r--. 1 root root  51000 Apr 25  2018 libnfsidmap-0.25-19.el7.x86_64.rpm
-rw-r--r--. 1 root root  28960 Nov 12  2018 libpath_utils-0.2.1-32.el7.x86_64.rpm
-rw-r--r--. 1 root root  27700 Nov 12  2018 libref_array-0.1.5-32.el7.x86_64.rpm
-rw-r--r--. 1 root root   9108 Jul  3  2014 libverto-libevent-0.2.5-4.el7.x86_64.rpm
-rw-r--r--. 1 root root 423356 Oct 15 10:00 nfs-utils-1.3.0-0.68.el7.2.x86_64.rpm
-rw-r--r--. 1 root root 182932 Aug 22  2019 quota-4.01-19.el7.x86_64.rpm
-rw-r--r--. 1 root root  92628 Aug 22  2019 quota-nls-4.01-19.el7.noarch.rpm
-rw-r--r--. 1 root root  61360 Apr  3  2020 rpcbind-0.2.0-49.el7.x86_64.rpm
-rw-r--r--. 1 root root  80380 Jul  4  2014 tcp_wrappers-7.6-77.el7.x86_64.rpm

2、 安装

[root@k8s-master nfs]# rpm -ivh *.rpm --nodeps --force

3、配置

在主节点上 编辑 /etc/exports

[root@k8s-master data]# cat /etc/exports
/data/nfsdata  *(rw,sync,no_root_squash)

4、设置启动和开机自启

	    systemctl start rpcbind
        systemctl enable rpcbind
        systemctl start nfs
        systemctl enable nfs

5、客户端挂载测试

(1)创建文件夹

 mkdir /data/tmp -p

(2)挂载

 mount -t nfs 172.16.10.158:/data/nfsdata /data/tmp/

(3)创建共享文件

cd /data/tmp/
vi a.txt

在/data/nfsdata共享目录查看,能够看到共享文件

在 /data/nfsdata创建文件,在/data/tmp/同样能够看到新文件。

Logo

K8S/Kubernetes社区为您提供最前沿的新闻资讯和知识内容

更多推荐