zdq0394.github.com

Tech study and research.

Follow me on GitHub

Ceph daemon管理

Redhat类操作系统

所有进程

  1. All Ceph Daemons:
    systemctl start ceph.target
    systemctl stop ceph.target
    systemctl status ceph.target
    

    某类型进程

  2. All Monitor Daemons:
    systemctl start ceph-mon.target
    systemctl stop ceph-mon.target
    systemctl status ceph-mon.target
    
  3. All OSD Daemons:
    systemctl start ceph-osd.target
    systemctl stop ceph-osd.target
    systemctl status ceph-osd.target
    
  4. All RADOSGW Daemons:
    systemctl start ceph-radosgw.target
    systemctl stop ceph-radosgw.target
    systemctl status ceph-radosgw.target
    

    某个进程

  5. Some Monitor Daemon: ceph-mon@
    systemctl start ceph-mon@keceph1
    systemctl stop ceph-mon@keceph1
    systemctl status ceph-mon@keceph1
    
  6. Some OSD Daemon: ceph-osd@
    systemctl start ceph-osd@0
    systemctl stop ceph-osd@0
    systemctl status ceph-osd@0
    
  7. Some RADOSGW Daemon: ceph-radosgw@rgw.
    systemctl start ceph-radosgw@rgw.keceph1
    systemctl stop ceph-radosgw@rgw.keceph1
    systemctl status ceph-radosgw@rgw.keceph1