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