千家信息网

ceph 集群 进程 管理 -- systemctl 管理(哈哈,开启 ceph 篇章)

发表于:2024-12-13 作者:千家信息网编辑
千家信息网最后更新 2024年12月13日,哈哈哈,想想 还是 写写 关于 ceph 相关 的文章,本人 能力有限,不能 写出 NB 的 技术文章,不足 之处 愿和 大家 一起 交流,共同 进步1、简介1.1 介绍作为 集群 管理 人员,可以
千家信息网最后更新 2024年12月13日ceph 集群 进程 管理 -- systemctl 管理(哈哈,开启 ceph 篇章)

哈哈哈,想想 还是 写写 关于 ceph 相关 的文章,本人 能力有限,不能 写出 NB 的 技术文章,不足 之处 愿和 大家 一起 交流,共同 进步

1、简介

1.1 介绍

作为 集群 管理 人员,可以 通过 很多种 方式 操纵 集群;可以 根据 实际 需要 开启、关闭 和 重启 ceph 进程 服务;本文 简单 描述 了 关于 systemctl 服务 管理 ceph 存储 集群(关于 systemctl 原理 后期 有机会 再 详细描述)

1.2 操作系统

## 本文操作系统 Ubuntu 16.04 amd64 ## 发行版本号 xenial# lsb_release -a

2、开启、关闭 和 重启 所有 ceph 服务

# systemctl { start | stop | restart} ceph.target 

3、根据 进程 类型 开启、关闭 和 重启 ceph 服务

3.1 mon 进程

# systemctl { start | stop | restart} ceph-mon.target 

3.2 mgr 进程

# systemctl { start | stop | restart} ceph-mgr.target 

3.3 osd 进程

# systemctl { start | stop | restart} ceph-osd.target 

3.4 rgw 进程

# systemctl { start | stop | restart} ceph-radosgw.target 

3.5 mds 进程

# systemctl { start | stop | restart} ceph-mds.target 

4、根据 进程 实例 开启、关闭 和 重启 所有 ceph 服务

4.1 mon 实例

# systemctl { start | stop | restart} ceph-mon@{mon_instance}.service

4.2 mgr 实例

# systemctl { start | stop | restart} ceph-mgr@{mgr_instance}.service

4.3 osd 实例

# systemctl { start | stop | restart} ceph-osd@{osd_instance}.service

4.4 rgw 实例

# systemctl { start | stop | restart} ceph-radosgw@{rgw_instance}.service

4.5 mds 实例

# systemctl { start | stop | restart} ceph-mds@{mds_instance}.service
0