diff --git a/HowtoCeph.md b/HowtoCeph.md index e3894d61..3bd628f0 100644 --- a/HowtoCeph.md +++ b/HowtoCeph.md @@ -260,9 +260,9 @@ $ ceph health Il y a deux façons de procéder. La première avec `add` et la seconde avec `get-or-create` : ~~~ -$ ceph auth add client.slacker0 mon 'allow r' +$ ceph auth add client.john mon 'allow r' added key for client.john -$ ceph auth get-or-create client.slacker0 mon 'allow r' +$ ceph auth get-or-create client.paul mon 'allow r' [client.paul] key = **************************************** ~~~ @@ -275,14 +275,14 @@ La seconde méthode va, en plus de la création de l'utilisateur, afficher sa cl La commande suivante permet de modifier les droits d'un utilisateur. Cela va *écraser* ses droits actuels. ~~~ -$ ceph auth caps client.slacker0 mon 'profile rbd' osd 'profile rbd pool=rbd' +$ ceph auth caps client.john mon 'profile rbd' osd 'profile rbd pool=rbd' ~~~ ## Suppression ~~~ -$ ceph auth del client.slacker0 +$ ceph auth del client.john ~~~