码迷,mamicode.com
首页 > 系统相关 > 详细

Ceph 守护进程

时间:2020-12-28 11:57:38      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:操作   use   文件   而不是   cluster   运行   fuse   emctl   dos   

Ceph 守护进程

Operating a Cluster — Ceph Documentation

使用系统运行 CEPH

对于支持系统化的所有分发(CentOS 7、Fedora、Debian Jessie 8 及更晚,SUSE),现在使用本机系统文件而不是旧式系统脚本进行托管。例如:

sudo systemctl start ceph.target       # start all daemons
sudo systemctl status ceph-osd@12      # check status of osd.12

若要在节点上列出 Ceph 系统单元,请执行:

sudo systemctl status ceph\*.service ceph\*.target

启动所有守护程序

若要在 Ceph 节点上启动所有守护进程(无论类型如何),请执行以下操作:

sudo systemctl start ceph.target

停止所有守护进程

若要停止 Ceph 节点上的所有守护进程(无论类型如何),请执行以下操作:

sudo systemctl stop ceph\*.service ceph\*.target

按类型启动所有守护进程

若要在 Ceph 节点上启动特定类型的所有守护进程,请执行以下操作之一:

sudo systemctl start ceph-osd.target
sudo systemctl start ceph-mon.target
sudo systemctl start ceph-mds.target

按类型停止所有守护进程

若要停止 Ceph 节点上特定类型的所有守护进程,请执行以下操作之一:

sudo systemctl stop ceph-mon\*.service ceph-mon.target
sudo systemctl stop ceph-osd\*.service ceph-osd.target
sudo systemctl stop ceph-mds\*.service ceph-mds.target

启动守护进程

若要在 Ceph 节点上启动特定的守护进程实例,请执行以下操作之一:

sudo systemctl start ceph-osd@{id}
sudo systemctl start ceph-mon@{hostname}
sudo systemctl start ceph-mds@{hostname}

例如:

sudo systemctl start ceph-osd@1
sudo systemctl start ceph-mon@ceph-server
sudo systemctl start ceph-mds@ceph-server

停止守护进程

若要停止 Ceph 节点上的特定守护进程实例,请执行以下操作之一:

sudo systemctl stop ceph-osd@{id}
sudo systemctl stop ceph-mon@{hostname}
sudo systemctl stop ceph-mds@{hostname}

例如:

sudo systemctl stop ceph-osd@1
sudo systemctl stop ceph-mon@ceph-server
sudo systemctl stop ceph-mds@ceph-server
[root@node1 ~]# ls /usr/lib/systemd/system | grep ceph
ceph-crash.service
ceph-fuse@.service
ceph-fuse.target
ceph-mds@.service
ceph-mds.target
ceph-mgr@.service
ceph-mgr.target
ceph-mon@.service
ceph-mon.target
ceph-osd@.service
ceph-osd.target
ceph-radosgw@.service
ceph-radosgw.target
ceph.target
ceph-volume@.service

Ceph 守护进程

标签:操作   use   文件   而不是   cluster   运行   fuse   emctl   dos   

原文地址:https://blog.51cto.com/liujingyu/2569860

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!