哈哈哈,想想 还是 写写 关于 ceph 相关 的文章,本人 能力有限,不能 写出 NB 的 技术文章,不足 之处 愿和 大家 一起 交流,共同 进步
1、简介
作为 集群 管理 人员,可以 通过 很多种 方式 操纵 集群;可以 根据 实际 需要 开启、关闭 和 重启 ceph 进程 服务;本文 简单 描述 了 关于 systemctl 服务 管理 ceph 存储 集群(关于 systemctl 原理 后期 有机会 再 详细描述)
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} [email protected]{mon_instance}.service
4.2 mgr 实例
# systemctl { start | stop | restart} [email protected]{mgr_instance}.service
4.3 osd 实例
# systemctl { start | stop | restart} [email protected]{osd_instance}.service
4.4 rgw 实例
# systemctl { start | stop | restart} [email protected]{rgw_instance}.service
4.5 mds 实例
# systemctl { start | stop | restart} [email protected]{mds_instance}.service
原文地址:http://blog.51cto.com/11495268/2339451
时间: 2024-10-30 15:58:09