6.2. 自定义 NFS 配置
使用配置文件自定义 NFS 集群。因此,NFS 集群使用指定的配置,并优先于默认配置块。
先决条件
- 一个运行良好、健康的 Red Hat Ceph Storage 集群。
- 对 Ceph 元数据服务器(MDS)节点的根级访问。
-
使用
ceph nfs cluster create
命令创建的 NFS 集群。
流程
创建配置文件:
示例
[ceph: root@host01 /]# touch nfs-cephfs.conf
使用以下块在配置文件中启用日志记录:
示例
[ceph: root@host01 /]# vi nfs-cephfs.conf LOG { COMPONENTS { ALL = FULL_DEBUG; } }
设置新配置:
语法
ceph nfs cluster config set CLUSTER_NAME -i PATH_TO_CONFIG_FILE
示例
[ceph: root@host01 /]# ceph nfs cluster config set nfs-cephfs -i nfs-cephfs.conf NFS-Ganesha Config Set Successfully
查看自定义的 NFS Ganesha 配置:
语法
ceph nfs cluster config get CLUSTER_NAME
示例
[ceph: root@host01 /]# ceph nfs cluster config get nfs-cephfs LOG { COMPONENTS { ALL = FULL_DEBUG; } }
这将提供用户定义的配置的输出(若有)。
可选:如果要删除用户定义的配置,请运行以下命令:
语法
ceph nfs cluster config reset CLUSTER_NAME
示例
[ceph: root@host01 /]# ceph nfs cluster config reset nfs-cephfs NFS-Ganesha Config Reset Successfully