從ceph集羣中刪除MDS server

若是你不須要cephfs,MDS就成了多餘的。爲了提升性能,能夠把MDS卸載掉。 shell

首先中止全部的MDS daemon: 性能

$ sudo service ceph stop mds
=== mds.0 ===
Stopping Ceph mds.0 on server-3...kill 1190...done
而後在ceph.conf中刪掉MDS相關的內容:
[mds]
    keyring = /etc/ceph/keyring.$name
[mds.0]
    host = server-3
而後進行刪除:
$ ceph mds rm mds.0
mds gid 0 dne
有時雖然刪除了,但在log中仍是會出現mds的信息:
$ ceph health
HEALTH_WARN mds 0 is laggy
$ ceph mds stat
e35: 1/1/1 up {0=0=up:active(laggy or crashed)}
能夠用如下命令解決:
$ ceph mds newfs metadata data --yes-i-really-mean-it
new fs with metadata pool 0 and data pool 0
$ ceph health
HEALTH_OK
新版本中須要將metadata、data等pool換成相應的id。

最後將cephfs相關的包卸載掉: code

$ sudo apt-get purge ceph-fuse ceph-mds libcephfs1 -y
相關文章
相關標籤/搜索