diff options
author | John Wilkins <john.wilkins@inktank.com> | 2013-04-26 14:05:06 -0700 |
---|---|---|
committer | John Wilkins <john.wilkins@inktank.com> | 2013-04-26 14:05:06 -0700 |
commit | c25144e89a83650725e728bb9d9e79157bdfa0aa (patch) | |
tree | 1cf8a032592913a767f6096f58b8b401da26b326 | |
parent | d0d1554a8e072d1da8f5c920815dabb42c5462eb (diff) | |
download | ceph-c25144e89a83650725e728bb9d9e79157bdfa0aa.tar.gz |
doc: Added Key Management for ceph-deploy.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
-rw-r--r-- | doc/rados/deployment/ceph-deploy-keys.rst | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/rados/deployment/ceph-deploy-keys.rst b/doc/rados/deployment/ceph-deploy-keys.rst new file mode 100644 index 00000000000..5013a7cab33 --- /dev/null +++ b/doc/rados/deployment/ceph-deploy-keys.rst @@ -0,0 +1,28 @@ +================= + Keys Management +================= + + +Gather Keys +=========== + +Before you can provision a host to run OSDs or metadata servers, you must gather +monitor keys and the OSD and MDS bootstrap keyrings. To gather keys, enter the +following:: + + ceph-deploy gatherkeys {monitor-host} + + +.. note:: To retreive the keys, you specify a host that has a + Ceph monitor. + + +Forget Keys +=========== + +When you are no longer using ``ceph-deploy`` (or if you are recreating a +cluster), you should delete the keys in the local directory of your admin host. +To delete keys, enter the following:: + + ceph-deploy forgetkeys + |