From: Satoru Takeuchi Date: Thu, 4 Feb 2021 05:37:27 +0000 (+0000) Subject: doc: fix the procedure of recovery mon quorum using osd X-Git-Tag: v17.1.0~2877^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=7f9dad3eb5adcd962444981d009af29b74723d09;p=ceph-ci.git doc: fix the procedure of recovery mon quorum using osd `ceph-monstore-tool` expects mons names are sorted by ip adrress. However, this is not always true after the following PR. https://github.com/ceph/ceph/pull/22193 We can bypass this problem by using `--mon-ids` option. Signed-off-by: Satoru Takeuchi --- diff --git a/doc/rados/troubleshooting/troubleshooting-mon.rst b/doc/rados/troubleshooting/troubleshooting-mon.rst index 48e3483916c..b185f4a3413 100644 --- a/doc/rados/troubleshooting/troubleshooting-mon.rst +++ b/doc/rados/troubleshooting/troubleshooting-mon.rst @@ -472,7 +472,10 @@ information stored in OSDs.:: # deployed ceph-authtool /path/to/admin.keyring --add-key 'AQDN8kBe9PLWARAAZwxXMr+n85SBYbSlLcZnMA==' -n mgr.x \ --cap mon 'allow profile mgr' --cap osd 'allow *' --cap mds 'allow *' - # if your monitors' ids are not single characters like 'a', 'b', 'c', please + # If your monitors' ids are not sorted by ip address, please specify them in order. + # For example. if mon 'a' is 10.0.0.3, mon 'b' is 10.0.0.2, and mon 'c' is 10.0.0.4, + # please passing "--mon-ids b a c". + # In addition, if your monitors' ids are not single characters like 'a', 'b', 'c', please # specify them in the command line by passing them as arguments of the "--mon-ids" # option. if you are not sure, please check your ceph.conf to see if there is any # sections named like '[mon.foo]'. don't pass the "--mon-ids" option, if you are