第 3 章 管理在容器中运行的 Ceph 集群
本章论述了在容器中运行的 Ceph 集群上执行的基本管理任务,例如:
3.1. 启动、停止和重启在容器中运行的 Ceph 守护进程
使用 systemctl
命令启动、停止或重启在容器中运行的 Ceph 守护进程。
步骤
要启动、停止或重启在容器中运行的 Ceph 守护进程,以
root
用户身份运行systemctl
命令,其格式由以下格式组成:systemctl action ceph-daemon@ID
其中:
-
action 是要执行的操作;
启动
、停止
或restart
-
守护进程是守护进程 ;osd
、
mon、
mds 或rgw
ID 是
-
ceph-mon
、ceph-mds
或ceph-rgw
守护进程的短主机名正在运行 -
将
osd_scenario
参数设置为lvm
,则ceph-osd
守护进程的 ID -
如果
ceph-osd
守护进程使用的设备名称与osd_scenario
参数设置为collocated
或non-collocated
即可。
-
例如,要重启 ID
osd01
的ceph-osd
守护进程:# systemctl restart ceph-osd@osd01
要启动在
ceph-monitor01
主机上运行的ceph-mon
demon:# systemctl start ceph-mon@ceph-monitor01
停止在
ceph-rgw
01# systemctl stop ceph-radosgw@ceph-rgw01
-
action 是要执行的操作;
验证操作是否已成功完成。
systemctl status ceph-daemon@_ID
例如:
# systemctl status ceph-mon@ceph-monitor01
其它资源
- 在 Red Hat Ceph Storage 3 的管理指南中,将 Ceph 作为 systemd 服务运行部分。