ceph.conf 文件中 MDS怎么配置
时间: 2024-05-07 21:23:23 浏览: 125
Ceph 部署文档.md
在 `ceph.conf` 文件中,配置 MDS(Metadata Server)需要指定以下参数:
1. `fsid`: Ceph 集群的唯一标识符,需要与其他组件的 `fsid` 保持一致。
2. `mon_host`: Monitor 的 IP 地址和端口号,多个地址用逗号隔开。
3. `auth_cluster_required`: MDS 访问集群需要使用的认证类型,默认为 `cephx`。
4. `auth_service_required`: MDS 访问服务需要使用的认证类型,默认为 `cephx`。
5. `auth_client_required`: MDS 访问客户端需要使用的认证类型,默认为 `cephx`。
6. `public_network`: MDS 使用的公共网络地址和子网掩码。
7. `cluster_network`: MDS 使用的集群网络地址和子网掩码。
8. `mds_cluster_name`: MDS 所属的 CephFS 文件系统名称。
9. `mds_data`: MDS 数据存储路径。
10. `mds_root_ino_uid`: 根目录的 UID,默认为 `0`。
11. `mds_root_ino_gid`: 根目录的 GID,默认为 `0`。
以下是一个 MDS 配置示例:
```
[mds]
fsid = cephfs
mon_host = 192.168.1.1:6789,192.168.1.2:6789,192.168.1.3:6789
auth_cluster_required = cephx
auth_service_required = cephx
auth_client_required = cephx
public_network = 192.168.1.0/24
cluster_network = 10.0.0.0/24
mds_cluster_name = cephfs
mds_data = /var/lib/ceph/mds/ceph-$id
mds_root_ino_uid = 0
mds_root_ino_gid = 0
```
阅读全文