From: Zac Dover Date: Wed, 22 Apr 2020 12:59:56 +0000 (+1000) Subject: doc/cephadm/install.rst: Add troubleshooting for 'CIDR' error X-Git-Tag: v16.1.0~2476^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F34590%2Fhead;p=ceph.git doc/cephadm/install.rst: Add troubleshooting for 'CIDR' error add troubleshooting for 'failed to infer CIDR network...' error See also https://tracker.ceph.com/issues/44828 Signed-off-by: Zac Dover --- diff --git a/doc/cephadm/install.rst b/doc/cephadm/install.rst index ca4ff970d640..36aea18b6341 100644 --- a/doc/cephadm/install.rst +++ b/doc/cephadm/install.rst @@ -167,6 +167,8 @@ To add each new host to the cluster, perform two steps: # ceph orch host add host3 +.. _deploy_additional_monitors: + Deploy additional monitors (optional) ===================================== diff --git a/doc/cephadm/troubleshooting.rst b/doc/cephadm/troubleshooting.rst index da4f55317b62..f7ee0700e915 100644 --- a/doc/cephadm/troubleshooting.rst +++ b/doc/cephadm/troubleshooting.rst @@ -148,3 +148,16 @@ To verify that the public key is in the authorized_keys file, run the following [root@mon1 ~]# cephadm shell -- ceph config-key get mgr/cephadm/ssh_identity_pub > key.pub [root@mon1 ~]# grep "`cat key.pub`" /root/.ssh/authorized_keys + +Failed to infer CIDR network error +---------------------------------- + +If you see this error:: + + ERROR: Failed to infer CIDR network for mon ip ***; pass --skip-mon-network to configure it later + +This means that you must run a command of this form:: + + ceph config set mon public_network + +For more detail on operations of this kind, see :ref:`deploy_additional_monitors`