From: Sage Weil Date: Fri, 21 Jul 2017 15:21:38 +0000 (-0400) Subject: doc/man/8/ceph: document 'ceph mgr *' commands X-Git-Tag: v12.1.2~164^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F16460%2Fhead;p=ceph.git doc/man/8/ceph: document 'ceph mgr *' commands Signed-off-by: Sage Weil --- diff --git a/doc/man/8/ceph.rst b/doc/man/8/ceph.rst index bbe0092d1a62..78b82ba51d0e 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 + +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 + +Subcommand ``module disable`` will disable an active manager module. + +Usage:: + + ceph mgr module disable + +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 + + osd ---