From d13370f5d816ce63d0a77f652a2d4171cba4fdec Mon Sep 17 00:00:00 2001 From: Alexis Ben Miloud--Josselin Date: Thu, 24 Nov 2022 09:24:26 +0100 Subject: [PATCH] =?UTF-8?q?ceph:=20V=C3=A9rifier=20=C3=A9tat=20mon=5Fauth?= =?UTF-8?q?=5Fallow=5Finsecure=5Fglobal=5Fid=5Freclaim?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HowtoCeph.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/HowtoCeph.md b/HowtoCeph.md index b342d84b..ca000f7f 100644 --- a/HowtoCeph.md +++ b/HowtoCeph.md @@ -1061,14 +1061,20 @@ Si on a le *warning* suivant : On peut désactiver la fonctionnalité. **Attention** : si le *warning* `client is using insecure global_id reclaim` est aussi présent, il faut d'abord mettre à jour Ceph sur les nœuds clients ou désactiver le *warning* pour un moment. Pour désactiver le *warning* : -```bash -ceph health mute AUTH_INSECURE_GLOBAL_ID_RECLAIM_ALLOWED 1w # 1 week +``` +# ceph health mute AUTH_INSECURE_GLOBAL_ID_RECLAIM_ALLOWED 1w # 1 week ``` Pour désactiver la fonctionnalité : -```bash -ceph config set mon auth_allow_insecure_global_id_reclaim false +``` +# ceph config set mon auth_allow_insecure_global_id_reclaim false +``` + +Pour avoir l’état de la variable : + +``` +# ceph config get mon_auth_allow_insecure_global_id_reclaim ``` Source : [Ceph Documention - Health checks](https://docs.ceph.com/en/latest/rados/operations/health-checks/#auth-insecure-global-id-reclaim-allowed)