K8S-部署 nfs 服务器

说在前面:登录集群规划中的 NFS 服务器,逐步执行以下步骤

1、安装 nfs 和 rpc。

#安装nfs服务
[root@localhost ~]# yum install -y  nfs-utils
#安装rpc服务
[root@localhost ~]# yum install -y rpcbind

2、启动服务和设置开启启动:

注意:先启动rpc服务,再启动nfs服务

[root@localhost ~]# systemctl start rpcbind    #先启动rpc服务
[root@localhost ~]# systemctl enable rpcbind   #设置开机启动
[root@localhost ~]# systemctl start nfs-server
[root@localhost ~]# systemctl enable nfs-server

3、配置共享文件目录,编辑配置文件

首先创建共享目录,然后在/etc/exports配置文件中编辑配置即可。

[root@localhost /]# mkdir /data/k8sdata
#创建public共享目录
[root@localhost /]# vi /etc/exports
/data/k8sdata *(rw,sync,no_root_squash,insecure)
[root@localhost /]# systemctl reload nfs
#重新加载NFS服务,使配置文件生效
posted @ 2021-10-02 22:02  yaomianwei  阅读(78)  评论(0编辑  收藏  举报