]> git.proxmox.com Git - ceph.git/blame - ceph/doc/mgr/administrator.rst
update sources to v12.1.1
[ceph.git] / ceph / doc / mgr / administrator.rst
CommitLineData
7c673cae
FG
1
2ceph-mgr administrator's guide
3==============================
4
31f18b77
FG
5Manual setup
6------------
7c673cae 7
31f18b77
FG
8Usually, you would set up a ceph-mgr daemon using a tool such
9as ceph-ansible. These instructions describe how to set up
10a ceph-mgr daemon manually.
7c673cae 11
31f18b77
FG
12First, create an authentication key for your daemon::
13
14 ceph auth get-or-create mgr.$name mon 'allow profile mgr' osd 'allow *' mds 'allow *'
7c673cae
FG
15
16Place that key into ``mgr data`` path, which for a cluster "ceph"
17and mgr $name "foo" would be ``/var/lib/ceph/mgr/ceph-foo``.
18
19Start the ceph-mgr daemon::
20
21 ceph-mgr -i $name
22
23Check that the mgr has come up by looking at the output
24of ``ceph status``, which should now include a mgr status line::
25
26 mgr active: $name
27
31f18b77
FG
28Client authentication
29---------------------
224ce89b 30
31f18b77
FG
31The manager is a new daemon which requires new CephX capabilities. If you upgrade
32a cluster from an old version of Ceph, or use the default install/deploy tools,
33your admin client should get this capability automatically. If you use tooling from
34elsewhere, you may get EACCES errors when invoking certain ceph cluster commands.
224ce89b 35To fix that, add a "mgr allow \*" stanza to your client's cephx capabilities by
31f18b77
FG
36`Modifying User Capabilities`_.
37
7c673cae
FG
38High availability
39-----------------
40
41In general, you should set up a ceph-mgr on each of the hosts
42running a ceph-mon daemon to achieve the same level of availability.
43
44By default, whichever ceph-mgr instance comes up first will be made
45active by the monitors, and the others will be standbys. There is
46no requirement for quorum among the ceph-mgr daemons.
47
48If the active daemon fails to send a beacon to the monitors for
49more than ``mon mgr beacon grace`` (default 30s), then it will be replaced
50by a standby.
51
52If you want to pre-empt failover, you can explicitly mark a ceph-mgr
53daemon as failed using ``ceph mgr fail <mgr name>``.
54
55Calling module commands
56-----------------------
57
58Where a module implements command line hooks, using the Ceph CLI's
59``tell`` command to call them like this::
60
61 ceph tell mgr <command | help>
62
63Note that it is not necessary to address a particular mgr instance,
64simply ``mgr`` will pick the current active daemon.
65
66Use the ``help`` command to get a list of available commands from all
67modules.
68
69Configuration
70-------------
71
72OPTION(mgr_module_path, OPT_STR, CEPH_PKGLIBDIR "/mgr") // where to load python modules from
73
74``mgr module path``
75
76:Description: Path to load modules from
77:Type: String
78:Default: ``"<library dir>/mgr"``
79
7c673cae
FG
80``mgr data``
81
82:Description: Path to load daemon data (such as keyring)
83:Type: String
84:Default: ``"/var/lib/ceph/mgr/$cluster-$id"``
85
31f18b77 86``mgr tick period``
7c673cae 87
31f18b77
FG
88:Description: How many seconds between mgr beacons to monitors, and other
89 periodic checks.
7c673cae
FG
90:Type: Integer
91:Default: ``5``
92
93``mon mgr beacon grace``
94
95:Description: How long after last beacon should a mgr be considered failed
96:Type: Integer
97:Default: ``30``
98
224ce89b 99.. _Modifying User Capabilities: ../../rados/operations/user-management/#modify-user-capabilities