启动Monitor
根据守护进程进行启动
要启动某一Ceph节点上的monitor守护进程,用下列命令:
sudo systemctl start ceph-mon.target
根据特定进程进行启动
要启动某一Ceph节点上的monitor守护进程,也可以通过下列指定进程的方式:
sudo systemctl start ceph-mon@{hostname}
停止Monitor
根据守护进程进行停止
要停止某一Ceph节点上的monitor守护进程,用下列命令:
sudo systemctl stop ceph-mon.target
根据特定进程进行停止
要停止某一Ceph节点上的monitor守护进程,也可以通过下列指定进程的方式:
sudo systemctl stop ceph-mon@{hostname}
重启Monitor
根据守护进程进行重启
要重启某一Ceph节点上的monitor守护进程,用下列命令:
sudo systemctl restart ceph-mon.target
根据特定进程进行重启
要重启某一Ceph节点上的monitor守护进程,也可以通过下列指定进程的方式:
sudo systemctl restart ceph-mon@{hostname}
查询Monitor状态
根据守护进程查看状态
要查看某一Ceph节点上的monitor守护进程运行状态,用下列命令:
sudo systemctl status ceph-mon.target
根据特定进程查看状态
要查看某一Ceph节点上的monitor守护进程运行状态,也可以通过下列指定进程的方式:
sudo systemctl status ceph-mon@{hostname}