3.2.2. 以互动方式使用 Ceph 命令行界面
您可以使用 ceph
命令行工具与 Ceph 存储集群进行交互。
先决条件
- 一个正在运行的 Red Hat Ceph Storage 集群。
- 节点的根级别访问权限。
流程
以交互模式运行
ceph
实用程序。裸机部署:
示例
[root@mon ~]# ceph ceph> health ceph> status ceph> quorum_status ceph> mon_status
容器部署:
Red Hat Enterprise Linux 7
docker exec -it ceph-mon-MONITOR_NAME /bin/bash
Red Hat Enterprise Linux 8
podman exec -it ceph-mon-MONITOR_NAME /bin/bash
- 替换
MONITOR_NAME 使用 Ceph Monitor 容器的名称,分别通过分别运行
docker ps
或podman ps
命令找到。Example
[root@container-host ~]# podman exec -it ceph-mon-mon01 /bin/bash
本例在
mon01
上打开一个交互式终端会话,您可以在其中启动 Ceph 交互式 shell。