summaryrefslogtreecommitdiffstats
path: root/doc/man
diff options
context:
space:
mode:
authorSage Weil <sage@redhat.com>2017-07-21 17:21:38 +0200
committerSage Weil <sage@redhat.com>2017-07-21 17:25:26 +0200
commit7d59d0d0b07a46655900fd8328db304704159009 (patch)
treec3741e5756d265017712d111d2da3e33f47ffaee /doc/man
parentmgr: use rvalue ref for MMgrBeacon metadata (diff)
downloadceph-7d59d0d0b07a46655900fd8328db304704159009.tar.xz
ceph-7d59d0d0b07a46655900fd8328db304704159009.zip
doc/man/8/ceph: document 'ceph mgr *' commands
Signed-off-by: Sage Weil <sage@redhat.com>
Diffstat (limited to 'doc/man')
-rw-r--r--doc/man/8/ceph.rst57
1 files changed, 57 insertions, 0 deletions
diff --git a/doc/man/8/ceph.rst b/doc/man/8/ceph.rst
index bbe0092d1a6..78b82ba51d0 100644
--- a/doc/man/8/ceph.rst
+++ b/doc/man/8/ceph.rst
@@ -442,6 +442,63 @@ Usage::
ceph mon_status
+mgr
+---
+
+Ceph manager daemon configuration and management.
+
+Subcommand ``dump`` dumps the latest MgrMap, which describes the active
+and standby manager daemons.
+
+Usage::
+
+ ceph mgr dump
+
+Subcommand ``fail`` will mark a manager daemon as failed, removing it
+from the manager map. If it is the active manager daemon a standby
+will take its place.
+
+Usage::
+
+ ceph mgr fail <name>
+
+Subcommand ``module ls`` will list currently enabled manager modules (plugins).
+
+Usage::
+
+ ceph mgr module ls
+
+Subcommand ``module enable`` will enable a manager module. Available modules are included in MgrMap and visible via ``mgr dump``.
+
+Usage::
+
+ ceph mgr module enable <module>
+
+Subcommand ``module disable`` will disable an active manager module.
+
+Usage::
+
+ ceph mgr module disable <module>
+
+Subcommand ``metadata`` will report metadata about all manager daemons or, if the name is specified, a single manager daemon.
+
+Usage::
+
+ ceph mgr metadata [name]
+
+Subcommand ``versions`` will report a count of running daemon versions.
+
+Usage::
+
+ ceph mgr versions
+
+Subcommand ``count-metadata`` will report a count of any daemon metadata field.
+
+Usage::
+
+ ceph mgr count-metadata <field>
+
+
osd
---