Statistics
| Branch: | Tag: | Revision:

root / man / gnt-node.rst @ 23fe06c2

History | View | Annotate | Download (17.4 kB)

1 7db441e6 Iustin Pop
gnt-node(8) Ganeti | Version @GANETI_VERSION@
2 7db441e6 Iustin Pop
=============================================
3 7db441e6 Iustin Pop
4 7db441e6 Iustin Pop
Name
5 7db441e6 Iustin Pop
----
6 7db441e6 Iustin Pop
7 7db441e6 Iustin Pop
gnt-node - Node administration
8 7db441e6 Iustin Pop
9 7db441e6 Iustin Pop
Synopsis
10 7db441e6 Iustin Pop
--------
11 7db441e6 Iustin Pop
12 7db441e6 Iustin Pop
**gnt-node** {command} [arguments...]
13 7db441e6 Iustin Pop
14 7db441e6 Iustin Pop
DESCRIPTION
15 7db441e6 Iustin Pop
-----------
16 7db441e6 Iustin Pop
17 7db441e6 Iustin Pop
The **gnt-node** is used for managing the (physical) nodes in the
18 7db441e6 Iustin Pop
Ganeti system.
19 7db441e6 Iustin Pop
20 7db441e6 Iustin Pop
COMMANDS
21 7db441e6 Iustin Pop
--------
22 7db441e6 Iustin Pop
23 7db441e6 Iustin Pop
ADD
24 7db441e6 Iustin Pop
~~~
25 7db441e6 Iustin Pop
26 0a68e0ff Iustin Pop
| **add** [--readd] [{-s|--secondary-ip} *secondary\_ip*]
27 0a68e0ff Iustin Pop
| [{-g|--node-group} *nodegroup*]
28 4e37f591 René Nussbaumer
| [--master-capable=``yes|no``] [--vm-capable=``yes|no``]
29 4e37f591 René Nussbaumer
| [--node-parameters *ndparams*]
30 4e37f591 René Nussbaumer
| {*nodename*}
31 7db441e6 Iustin Pop
32 7db441e6 Iustin Pop
Adds the given node to the cluster.
33 7db441e6 Iustin Pop
34 7db441e6 Iustin Pop
This command is used to join a new node to the cluster. You will
35 7db441e6 Iustin Pop
have to provide the password for root of the node to be able to add
36 7db441e6 Iustin Pop
the node in the cluster. The command needs to be run on the Ganeti
37 7db441e6 Iustin Pop
master.
38 7db441e6 Iustin Pop
39 7db441e6 Iustin Pop
Note that the command is potentially destructive, as it will
40 7db441e6 Iustin Pop
forcibly join the specified host the cluster, not paying attention
41 7db441e6 Iustin Pop
to its current status (it could be already in a cluster, etc.)
42 7db441e6 Iustin Pop
43 0a68e0ff Iustin Pop
The ``-s (--secondary-ip)`` is used in dual-home clusters and
44 0a68e0ff Iustin Pop
specifies the new node's IP in the secondary network. See the
45 0a68e0ff Iustin Pop
discussion in **gnt-cluster**(8) for more information.
46 7db441e6 Iustin Pop
47 7db441e6 Iustin Pop
In case you're readding a node after hardware failure, you can use
48 7db441e6 Iustin Pop
the ``--readd`` parameter. In this case, you don't need to pass the
49 7db441e6 Iustin Pop
secondary IP again, it will reused from the cluster. Also, the
50 7db441e6 Iustin Pop
drained and offline flags of the node will be cleared before
51 7db441e6 Iustin Pop
re-adding it.
52 7db441e6 Iustin Pop
53 61413377 Stephen Shirley
The ``--force-join`` option is to proceed with adding a node even if it already
54 61413377 Stephen Shirley
appears to belong to another cluster. This is used during cluster merging, for
55 61413377 Stephen Shirley
example.
56 61413377 Stephen Shirley
57 0a68e0ff Iustin Pop
The ``-g (--node-group)`` option is used to add the new node into a
58 0a68e0ff Iustin Pop
specific node group, specified by UUID or name. If only one node group
59 0a68e0ff Iustin Pop
exists you can skip this option, otherwise it's mandatory.
60 7db441e6 Iustin Pop
61 4e37f591 René Nussbaumer
The ``vm_capable``, ``master_capable`` and ``ndparams`` options are
62 4e37f591 René Nussbaumer
described in **ganeti**(7), and are used to set the properties of the
63 4e37f591 René Nussbaumer
new node.
64 7db441e6 Iustin Pop
65 7db441e6 Iustin Pop
Example::
66 7db441e6 Iustin Pop
67 7db441e6 Iustin Pop
    # gnt-node add node5.example.com
68 7db441e6 Iustin Pop
    # gnt-node add -s 192.0.2.5 node5.example.com
69 7db441e6 Iustin Pop
    # gnt-node add -g group2 -s 192.0.2.9 node9.group2.example.com
70 7db441e6 Iustin Pop
71 7db441e6 Iustin Pop
72 7db441e6 Iustin Pop
ADD-TAGS
73 7db441e6 Iustin Pop
~~~~~~~~
74 7db441e6 Iustin Pop
75 7db441e6 Iustin Pop
**add-tags** [--from *file*] {*nodename*} {*tag*...}
76 7db441e6 Iustin Pop
77 7db441e6 Iustin Pop
Add tags to the given node. If any of the tags contains invalid
78 7db441e6 Iustin Pop
characters, the entire operation will abort.
79 7db441e6 Iustin Pop
80 7db441e6 Iustin Pop
If the ``--from`` option is given, the list of tags will be
81 7db441e6 Iustin Pop
extended with the contents of that file (each line becomes a tag).
82 7db441e6 Iustin Pop
In this case, there is not need to pass tags on the command line
83 7db441e6 Iustin Pop
(if you do, both sources will be used). A file name of - will be
84 7db441e6 Iustin Pop
interpreted as stdin.
85 7db441e6 Iustin Pop
86 7db441e6 Iustin Pop
EVACUATE
87 7db441e6 Iustin Pop
~~~~~~~~
88 7db441e6 Iustin Pop
89 7db441e6 Iustin Pop
**evacuate** [-f] [--early-release] [--iallocator *NAME* \|
90 aafee533 Michael Hanselmann
--new-secondary *destination\_node*]
91 aafee533 Michael Hanselmann
[--primary-only \| --secondary-only] [--early-release] {*node*}
92 7db441e6 Iustin Pop
93 aafee533 Michael Hanselmann
This command will move instances away from the given node. If
94 aafee533 Michael Hanselmann
``--primary-only`` is given, only primary instances are evacuated, with
95 aafee533 Michael Hanselmann
``--secondary-only`` only secondaries. If neither is given, all
96 aafee533 Michael Hanselmann
instances are evacuated. It works only for instances having a drbd disk
97 aafee533 Michael Hanselmann
template.
98 7db441e6 Iustin Pop
99 7db441e6 Iustin Pop
The new location for the instances can be specified in two ways:
100 7db441e6 Iustin Pop
101 0a68e0ff Iustin Pop
- as a single node for all instances, via the ``-n (--new-secondary)``
102 7db441e6 Iustin Pop
  option
103 7db441e6 Iustin Pop
104 0a68e0ff Iustin Pop
- or via the ``-I (--iallocator)`` option, giving a script name as
105 7db441e6 Iustin Pop
  parameter, so each instance will be in turn placed on the (per the
106 7db441e6 Iustin Pop
  script) optimal node
107 7db441e6 Iustin Pop
108 7db441e6 Iustin Pop
The ``--early-release`` changes the code so that the old storage on
109 7db441e6 Iustin Pop
node being evacuated is removed early (before the resync is
110 7db441e6 Iustin Pop
completed) and the internal Ganeti locks are also released for both
111 7db441e6 Iustin Pop
the current secondary and the new secondary, thus allowing more
112 7db441e6 Iustin Pop
parallelism in the cluster operation. This should be used only when
113 7db441e6 Iustin Pop
recovering from a disk failure on the current secondary (thus the
114 7db441e6 Iustin Pop
old storage is already broken) or when the storage on the primary
115 7db441e6 Iustin Pop
node is known to be fine (thus we won't need the old storage for
116 7db441e6 Iustin Pop
potential recovery).
117 7db441e6 Iustin Pop
118 78623223 Iustin Pop
Note that this command is equivalent to using per-instance commands for
119 78623223 Iustin Pop
each affected instance individually:
120 78623223 Iustin Pop
121 78623223 Iustin Pop
- ``--primary-only`` is equivalent to ``gnt-instance failover/migration``
122 78623223 Iustin Pop
- ``--secondary-only`` is equivalent to ``gnt-instance replace-disks``
123 78623223 Iustin Pop
  in the secondary node change mode (only valid for DRBD instances)
124 78623223 Iustin Pop
- when neither of the above is done a combination of the two cases is run
125 78623223 Iustin Pop
126 7db441e6 Iustin Pop
Example::
127 7db441e6 Iustin Pop
128 0a68e0ff Iustin Pop
    # gnt-node evacuate -I hail node3.example.com
129 7db441e6 Iustin Pop
130 7db441e6 Iustin Pop
131 7db441e6 Iustin Pop
FAILOVER
132 7db441e6 Iustin Pop
~~~~~~~~
133 7db441e6 Iustin Pop
134 7db441e6 Iustin Pop
**failover** [-f] [--ignore-consistency] {*node*}
135 7db441e6 Iustin Pop
136 7db441e6 Iustin Pop
This command will fail over all instances having the given node as
137 7db441e6 Iustin Pop
primary to their secondary nodes. This works only for instances having
138 7db441e6 Iustin Pop
a drbd disk template.
139 7db441e6 Iustin Pop
140 7db441e6 Iustin Pop
Normally the failover will check the consistency of the disks before
141 7db441e6 Iustin Pop
failing over the instance. If you are trying to migrate instances off
142 7db441e6 Iustin Pop
a dead node, this will fail. Use the ``--ignore-consistency`` option
143 7db441e6 Iustin Pop
for this purpose.
144 7db441e6 Iustin Pop
145 7db441e6 Iustin Pop
Example::
146 7db441e6 Iustin Pop
147 7db441e6 Iustin Pop
    # gnt-node failover node1.example.com
148 7db441e6 Iustin Pop
149 7db441e6 Iustin Pop
150 7db441e6 Iustin Pop
INFO
151 7db441e6 Iustin Pop
~~~~
152 7db441e6 Iustin Pop
153 7db441e6 Iustin Pop
**info** [*node*...]
154 7db441e6 Iustin Pop
155 7db441e6 Iustin Pop
Show detailed information about the nodes in the cluster. If you
156 7db441e6 Iustin Pop
don't give any arguments, all nodes will be shows, otherwise the
157 7db441e6 Iustin Pop
output will be restricted to the given names.
158 7db441e6 Iustin Pop
159 7db441e6 Iustin Pop
LIST
160 7db441e6 Iustin Pop
~~~~
161 7db441e6 Iustin Pop
162 7f5443a0 Michael Hanselmann
| **list**
163 7db441e6 Iustin Pop
| [--no-headers] [--separator=*SEPARATOR*]
164 0a68e0ff Iustin Pop
| [--units=*UNITS*] [-v] [{-o|--output} *[+]FIELD,...*]
165 2afd577f Michael Hanselmann
| [--filter]
166 7db441e6 Iustin Pop
| [node...]
167 7db441e6 Iustin Pop
168 7db441e6 Iustin Pop
Lists the nodes in the cluster.
169 7db441e6 Iustin Pop
170 7db441e6 Iustin Pop
The ``--no-headers`` option will skip the initial header line. The
171 7db441e6 Iustin Pop
``--separator`` option takes an argument which denotes what will be
172 7db441e6 Iustin Pop
used between the output fields. Both these options are to help
173 7db441e6 Iustin Pop
scripting.
174 7db441e6 Iustin Pop
175 7db441e6 Iustin Pop
The units used to display the numeric values in the output varies,
176 7db441e6 Iustin Pop
depending on the options given. By default, the values will be
177 7db441e6 Iustin Pop
formatted in the most appropriate unit. If the ``--separator``
178 7db441e6 Iustin Pop
option is given, then the values are shown in mebibytes to allow
179 7db441e6 Iustin Pop
parsing by scripts. In both cases, the ``--units`` option can be
180 7db441e6 Iustin Pop
used to enforce a given output unit.
181 7db441e6 Iustin Pop
182 7f5443a0 Michael Hanselmann
Queries of nodes will be done in parallel with any running jobs. This might
183 7f5443a0 Michael Hanselmann
give inconsistent results for the free disk/memory.
184 7db441e6 Iustin Pop
185 f0b1bafe Iustin Pop
The ``-v`` option activates verbose mode, which changes the display of
186 f0b1bafe Iustin Pop
special field states (see **ganeti(7)**).
187 f0b1bafe Iustin Pop
188 0a68e0ff Iustin Pop
The ``-o (--output)`` option takes a comma-separated list of output
189 0a68e0ff Iustin Pop
fields. The available fields and their meaning are:
190 7db441e6 Iustin Pop
191 fcdb582d Michael Hanselmann
@QUERY_FIELDS_NODE@
192 7db441e6 Iustin Pop
193 7db441e6 Iustin Pop
If the value of the option starts with the character ``+``, the new
194 f7b769b1 Iustin Pop
fields will be added to the default list. This allows one to quickly
195 7db441e6 Iustin Pop
see the default list plus a few other fields, instead of retyping
196 7db441e6 Iustin Pop
the entire list of fields.
197 7db441e6 Iustin Pop
198 2afd577f Michael Hanselmann
Note that some of these fields are known from the configuration of the
199 2afd577f Michael Hanselmann
cluster (e.g. ``name``, ``pinst``, ``sinst``, ``pip``, ``sip``) and thus
200 2afd577f Michael Hanselmann
the master does not need to contact the node for this data (making the
201 2afd577f Michael Hanselmann
listing fast if only fields from this set are selected), whereas the
202 2afd577f Michael Hanselmann
other fields are "live" fields and require a query to the cluster nodes.
203 2afd577f Michael Hanselmann
204 2afd577f Michael Hanselmann
Depending on the virtualization type and implementation details, the
205 2afd577f Michael Hanselmann
``mtotal``, ``mnode`` and ``mfree`` fields may have slighly varying
206 2afd577f Michael Hanselmann
meanings. For example, some solutions share the node memory with the
207 2afd577f Michael Hanselmann
pool of memory used for instances (KVM), whereas others have separate
208 7db441e6 Iustin Pop
memory for the node and for the instances (Xen).
209 7db441e6 Iustin Pop
210 2afd577f Michael Hanselmann
If exactly one argument is given and it appears to be a query filter
211 2afd577f Michael Hanselmann
(see **ganeti(7)**), the query result is filtered accordingly. For
212 2afd577f Michael Hanselmann
ambiguous cases (e.g. a single field name as a filter) the ``--filter``
213 2afd577f Michael Hanselmann
(``-F``) option forces the argument to be treated as a filter (e.g.
214 2afd577f Michael Hanselmann
``gnt-node list -F master_candidate``).
215 2afd577f Michael Hanselmann
216 7db441e6 Iustin Pop
If no node names are given, then all nodes are queried. Otherwise,
217 7db441e6 Iustin Pop
only the given nodes will be listed.
218 7db441e6 Iustin Pop
219 7f5443a0 Michael Hanselmann
220 7f5443a0 Michael Hanselmann
LIST-FIELDS
221 7f5443a0 Michael Hanselmann
~~~~~~~~~~~
222 7f5443a0 Michael Hanselmann
223 7f5443a0 Michael Hanselmann
**list-fields** [field...]
224 7f5443a0 Michael Hanselmann
225 7f5443a0 Michael Hanselmann
Lists available fields for nodes.
226 7f5443a0 Michael Hanselmann
227 7f5443a0 Michael Hanselmann
228 7db441e6 Iustin Pop
LIST-TAGS
229 7db441e6 Iustin Pop
~~~~~~~~~
230 7db441e6 Iustin Pop
231 7db441e6 Iustin Pop
**list-tags** {*nodename*}
232 7db441e6 Iustin Pop
233 7db441e6 Iustin Pop
List the tags of the given node.
234 7db441e6 Iustin Pop
235 7db441e6 Iustin Pop
MIGRATE
236 7db441e6 Iustin Pop
~~~~~~~
237 7db441e6 Iustin Pop
238 7db441e6 Iustin Pop
**migrate** [-f] [--non-live] [--migration-mode=live\|non-live]
239 7db441e6 Iustin Pop
{*node*}
240 7db441e6 Iustin Pop
241 7db441e6 Iustin Pop
This command will migrate all instances having the given node as
242 7db441e6 Iustin Pop
primary to their secondary nodes. This works only for instances
243 7db441e6 Iustin Pop
having a drbd disk template.
244 7db441e6 Iustin Pop
245 7db441e6 Iustin Pop
As for the **gnt-instance migrate** command, the options
246 7db441e6 Iustin Pop
``--no-live`` and ``--migration-mode`` can be given to influence
247 7db441e6 Iustin Pop
the migration type.
248 7db441e6 Iustin Pop
249 7db441e6 Iustin Pop
Example::
250 7db441e6 Iustin Pop
251 7db441e6 Iustin Pop
    # gnt-node migrate node1.example.com
252 7db441e6 Iustin Pop
253 7db441e6 Iustin Pop
254 7db441e6 Iustin Pop
MODIFY
255 7db441e6 Iustin Pop
~~~~~~
256 7db441e6 Iustin Pop
257 7db441e6 Iustin Pop
| **modify** [-f] [--submit]
258 0a68e0ff Iustin Pop
| [{-C|--master-candidate} ``yes|no``]
259 0a68e0ff Iustin Pop
| [{-D|--drained} ``yes|no``] [{-O|--offline} ``yes|no``]
260 7db441e6 Iustin Pop
| [--master-capable=``yes|no``] [--vm-capable=``yes|no``] [--auto-promote]
261 0a68e0ff Iustin Pop
| [{-s|--secondary-ip} *secondary_ip*]
262 4e37f591 René Nussbaumer
| [--node-parameters *ndparams*]
263 dd94e9f6 René Nussbaumer
| [--node-powered=``yes|no``]
264 7db441e6 Iustin Pop
| {*node*}
265 7db441e6 Iustin Pop
266 7db441e6 Iustin Pop
This command changes the role of the node. Each options takes
267 7db441e6 Iustin Pop
either a literal yes or no, and only one option should be given as
268 7db441e6 Iustin Pop
yes. The meaning of the roles and flags are described in the
269 7db441e6 Iustin Pop
manpage **ganeti**(7).
270 7db441e6 Iustin Pop
271 0a68e0ff Iustin Pop
The option ``--node-powered`` can be used to modify state-of-record if
272 0a68e0ff Iustin Pop
it doesn't reflect the reality anymore.
273 dd94e9f6 René Nussbaumer
274 7db441e6 Iustin Pop
In case a node is demoted from the master candidate role, the
275 7db441e6 Iustin Pop
operation will be refused unless you pass the ``--auto-promote``
276 7db441e6 Iustin Pop
option. This option will cause the operation to lock all cluster nodes
277 7db441e6 Iustin Pop
(thus it will not be able to run in parallel with most other jobs),
278 7db441e6 Iustin Pop
but it allows automated maintenance of the cluster candidate pool. If
279 7db441e6 Iustin Pop
locking all cluster node is too expensive, another option is to
280 7db441e6 Iustin Pop
promote manually another node to master candidate before demoting the
281 7db441e6 Iustin Pop
current one.
282 7db441e6 Iustin Pop
283 7db441e6 Iustin Pop
Example (setting a node offline, which will demote it from master
284 7db441e6 Iustin Pop
candidate role if is in that role)::
285 7db441e6 Iustin Pop
286 7db441e6 Iustin Pop
    # gnt-node modify --offline=yes node1.example.com
287 7db441e6 Iustin Pop
288 0a68e0ff Iustin Pop
The ``-s (--secondary-ip)`` option can be used to change the node's
289 0a68e0ff Iustin Pop
secondary ip. No drbd instances can be running on the node, while this
290 0a68e0ff Iustin Pop
operation is taking place.
291 7db441e6 Iustin Pop
292 7db441e6 Iustin Pop
Example (setting the node back to online and master candidate)::
293 7db441e6 Iustin Pop
294 7db441e6 Iustin Pop
    # gnt-node modify --offline=no --master-candidate=yes node1.example.com
295 7db441e6 Iustin Pop
296 7db441e6 Iustin Pop
297 7db441e6 Iustin Pop
REMOVE
298 7db441e6 Iustin Pop
~~~~~~
299 7db441e6 Iustin Pop
300 7db441e6 Iustin Pop
**remove** {*nodename*}
301 7db441e6 Iustin Pop
302 7db441e6 Iustin Pop
Removes a node from the cluster. Instances must be removed or
303 7db441e6 Iustin Pop
migrated to another cluster before.
304 7db441e6 Iustin Pop
305 7db441e6 Iustin Pop
Example::
306 7db441e6 Iustin Pop
307 7db441e6 Iustin Pop
    # gnt-node remove node5.example.com
308 7db441e6 Iustin Pop
309 7db441e6 Iustin Pop
310 7db441e6 Iustin Pop
REMOVE-TAGS
311 7db441e6 Iustin Pop
~~~~~~~~~~~
312 7db441e6 Iustin Pop
313 7db441e6 Iustin Pop
**remove-tags** [--from *file*] {*nodename*} {*tag*...}
314 7db441e6 Iustin Pop
315 7db441e6 Iustin Pop
Remove tags from the given node. If any of the tags are not
316 7db441e6 Iustin Pop
existing on the node, the entire operation will abort.
317 7db441e6 Iustin Pop
318 7db441e6 Iustin Pop
If the ``--from`` option is given, the list of tags to be removed will
319 7db441e6 Iustin Pop
be extended with the contents of that file (each line becomes a tag).
320 7db441e6 Iustin Pop
In this case, there is not need to pass tags on the command line (if
321 7db441e6 Iustin Pop
you do, tags from both sources will be removed). A file name of - will
322 7db441e6 Iustin Pop
be interpreted as stdin.
323 7db441e6 Iustin Pop
324 7db441e6 Iustin Pop
VOLUMES
325 7db441e6 Iustin Pop
~~~~~~~
326 7db441e6 Iustin Pop
327 7db441e6 Iustin Pop
| **volumes** [--no-headers] [--human-readable]
328 0a68e0ff Iustin Pop
| [--separator=*SEPARATOR*] [{-o|--output} *FIELDS*]
329 7db441e6 Iustin Pop
| [*node*...]
330 7db441e6 Iustin Pop
331 7db441e6 Iustin Pop
Lists all logical volumes and their physical disks from the node(s)
332 7db441e6 Iustin Pop
provided.
333 7db441e6 Iustin Pop
334 7db441e6 Iustin Pop
The ``--no-headers`` option will skip the initial header line. The
335 7db441e6 Iustin Pop
``--separator`` option takes an argument which denotes what will be
336 7db441e6 Iustin Pop
used between the output fields. Both these options are to help
337 7db441e6 Iustin Pop
scripting.
338 7db441e6 Iustin Pop
339 7db441e6 Iustin Pop
The units used to display the numeric values in the output varies,
340 7db441e6 Iustin Pop
depending on the options given. By default, the values will be
341 7db441e6 Iustin Pop
formatted in the most appropriate unit. If the ``--separator``
342 7db441e6 Iustin Pop
option is given, then the values are shown in mebibytes to allow
343 7db441e6 Iustin Pop
parsing by scripts. In both cases, the ``--units`` option can be
344 7db441e6 Iustin Pop
used to enforce a given output unit.
345 7db441e6 Iustin Pop
346 0a68e0ff Iustin Pop
The ``-o (--output)`` option takes a comma-separated list of output
347 0a68e0ff Iustin Pop
fields. The available fields and their meaning are:
348 7db441e6 Iustin Pop
349 7db441e6 Iustin Pop
node
350 7db441e6 Iustin Pop
    the node name on which the volume exists
351 7db441e6 Iustin Pop
352 7db441e6 Iustin Pop
phys
353 7db441e6 Iustin Pop
    the physical drive (on which the LVM physical volume lives)
354 7db441e6 Iustin Pop
355 7db441e6 Iustin Pop
vg
356 7db441e6 Iustin Pop
    the volume group name
357 7db441e6 Iustin Pop
358 7db441e6 Iustin Pop
name
359 7db441e6 Iustin Pop
    the logical volume name
360 7db441e6 Iustin Pop
361 7db441e6 Iustin Pop
size
362 7db441e6 Iustin Pop
    the logical volume size
363 7db441e6 Iustin Pop
364 7db441e6 Iustin Pop
instance
365 7db441e6 Iustin Pop
    The name of the instance to which this volume belongs, or (in case
366 7db441e6 Iustin Pop
    it's an orphan volume) the character "-"
367 7db441e6 Iustin Pop
368 7db441e6 Iustin Pop
369 7db441e6 Iustin Pop
Example::
370 7db441e6 Iustin Pop
371 7db441e6 Iustin Pop
    # gnt-node volumes node5.example.com
372 7db441e6 Iustin Pop
    Node              PhysDev   VG    Name                                 Size Instance
373 7db441e6 Iustin Pop
    node1.example.com /dev/hdc1 xenvg instance1.example.com-sda_11000.meta 128  instance1.example.com
374 7db441e6 Iustin Pop
    node1.example.com /dev/hdc1 xenvg instance1.example.com-sda_11001.data 256  instance1.example.com
375 7db441e6 Iustin Pop
376 7db441e6 Iustin Pop
377 7db441e6 Iustin Pop
LIST-STORAGE
378 7db441e6 Iustin Pop
~~~~~~~~~~~~
379 7db441e6 Iustin Pop
380 7db441e6 Iustin Pop
| **list-storage** [--no-headers] [--human-readable]
381 7db441e6 Iustin Pop
| [--separator=*SEPARATOR*] [--storage-type=*STORAGE\_TYPE*]
382 0a68e0ff Iustin Pop
| [{-o|--output} *FIELDS*]
383 7db441e6 Iustin Pop
| [*node*...]
384 7db441e6 Iustin Pop
385 7db441e6 Iustin Pop
Lists the available storage units and their details for the given
386 7db441e6 Iustin Pop
node(s).
387 7db441e6 Iustin Pop
388 7db441e6 Iustin Pop
The ``--no-headers`` option will skip the initial header line. The
389 7db441e6 Iustin Pop
``--separator`` option takes an argument which denotes what will be
390 7db441e6 Iustin Pop
used between the output fields. Both these options are to help
391 7db441e6 Iustin Pop
scripting.
392 7db441e6 Iustin Pop
393 7db441e6 Iustin Pop
The units used to display the numeric values in the output varies,
394 7db441e6 Iustin Pop
depending on the options given. By default, the values will be
395 7db441e6 Iustin Pop
formatted in the most appropriate unit. If the ``--separator``
396 7db441e6 Iustin Pop
option is given, then the values are shown in mebibytes to allow
397 7db441e6 Iustin Pop
parsing by scripts. In both cases, the ``--units`` option can be
398 7db441e6 Iustin Pop
used to enforce a given output unit.
399 7db441e6 Iustin Pop
400 7db441e6 Iustin Pop
The ``--storage-type`` option can be used to choose a storage unit
401 7db441e6 Iustin Pop
type. Possible choices are lvm-pv, lvm-vg or file.
402 7db441e6 Iustin Pop
403 0a68e0ff Iustin Pop
The ``-o (--output)`` option takes a comma-separated list of output
404 0a68e0ff Iustin Pop
fields. The available fields and their meaning are:
405 7db441e6 Iustin Pop
406 7db441e6 Iustin Pop
node
407 7db441e6 Iustin Pop
    the node name on which the volume exists
408 7db441e6 Iustin Pop
409 7db441e6 Iustin Pop
type
410 7db441e6 Iustin Pop
    the type of the storage unit (currently just what is passed in via
411 7db441e6 Iustin Pop
    ``--storage-type``)
412 7db441e6 Iustin Pop
413 7db441e6 Iustin Pop
name
414 7db441e6 Iustin Pop
    the path/identifier of the storage unit
415 7db441e6 Iustin Pop
416 7db441e6 Iustin Pop
size
417 7db441e6 Iustin Pop
    total size of the unit; for the file type see a note below
418 7db441e6 Iustin Pop
419 7db441e6 Iustin Pop
used
420 7db441e6 Iustin Pop
    used space in the unit; for the file type see a note below
421 7db441e6 Iustin Pop
422 7db441e6 Iustin Pop
free
423 7db441e6 Iustin Pop
    available disk space
424 7db441e6 Iustin Pop
425 7db441e6 Iustin Pop
allocatable
426 7db441e6 Iustin Pop
    whether we the unit is available for allocation (only lvm-pv can
427 7db441e6 Iustin Pop
    change this setting, the other types always report true)
428 7db441e6 Iustin Pop
429 7db441e6 Iustin Pop
430 7db441e6 Iustin Pop
Note that for the "file" type, the total disk space might not equal
431 7db441e6 Iustin Pop
to the sum of used and free, due to the method Ganeti uses to
432 7db441e6 Iustin Pop
compute each of them. The total and free values are computed as the
433 7db441e6 Iustin Pop
total and free space values for the filesystem to which the
434 7db441e6 Iustin Pop
directory belongs, but the used space is computed from the used
435 7db441e6 Iustin Pop
space under that directory *only*, which might not be necessarily
436 7db441e6 Iustin Pop
the root of the filesystem, and as such there could be files
437 7db441e6 Iustin Pop
outside the file storage directory using disk space and causing a
438 7db441e6 Iustin Pop
mismatch in the values.
439 7db441e6 Iustin Pop
440 7db441e6 Iustin Pop
Example::
441 7db441e6 Iustin Pop
442 7db441e6 Iustin Pop
    node1# gnt-node list-storage node2
443 7db441e6 Iustin Pop
    Node  Type   Name        Size Used   Free Allocatable
444 7db441e6 Iustin Pop
    node2 lvm-pv /dev/sda7 673.8G 1.5G 672.3G Y
445 7db441e6 Iustin Pop
    node2 lvm-pv /dev/sdb1 698.6G   0M 698.6G Y
446 7db441e6 Iustin Pop
447 7db441e6 Iustin Pop
448 7db441e6 Iustin Pop
MODIFY-STORAGE
449 7db441e6 Iustin Pop
~~~~~~~~~~~~~~
450 7db441e6 Iustin Pop
451 7db441e6 Iustin Pop
**modify-storage** [``--allocatable=yes|no``]
452 7db441e6 Iustin Pop
{*node*} {*storage-type*} {*volume-name*}
453 7db441e6 Iustin Pop
454 7db441e6 Iustin Pop
Modifies storage volumes on a node. Only LVM physical volumes can
455 7db441e6 Iustin Pop
be modified at the moment. They have a storage type of "lvm-pv".
456 7db441e6 Iustin Pop
457 7db441e6 Iustin Pop
Example::
458 7db441e6 Iustin Pop
459 7db441e6 Iustin Pop
    # gnt-node modify-storage --allocatable no node5.example.com lvm-pv /dev/sdb1
460 7db441e6 Iustin Pop
461 7db441e6 Iustin Pop
462 7db441e6 Iustin Pop
REPAIR-STORAGE
463 7db441e6 Iustin Pop
~~~~~~~~~~~~~~
464 7db441e6 Iustin Pop
465 7db441e6 Iustin Pop
**repair-storage** [--ignore-consistency] {*node*} {*storage-type*}
466 7db441e6 Iustin Pop
{*volume-name*}
467 7db441e6 Iustin Pop
468 7db441e6 Iustin Pop
Repairs a storage volume on a node. Only LVM volume groups can be
469 7db441e6 Iustin Pop
repaired at this time. They have the storage type "lvm-vg".
470 7db441e6 Iustin Pop
471 7db441e6 Iustin Pop
On LVM volume groups, **repair-storage** runs "vgreduce
472 7db441e6 Iustin Pop
--removemissing".
473 7db441e6 Iustin Pop
474 7db441e6 Iustin Pop
475 7db441e6 Iustin Pop
476 7db441e6 Iustin Pop
**Caution:** Running this command can lead to data loss. Use it with
477 7db441e6 Iustin Pop
care.
478 7db441e6 Iustin Pop
479 7db441e6 Iustin Pop
The ``--ignore-consistency`` option will ignore any inconsistent
480 7db441e6 Iustin Pop
disks (on the nodes paired with this one). Use of this option is
481 7db441e6 Iustin Pop
most likely to lead to data-loss.
482 7db441e6 Iustin Pop
483 7db441e6 Iustin Pop
Example::
484 7db441e6 Iustin Pop
485 7db441e6 Iustin Pop
    # gnt-node repair-storage node5.example.com lvm-vg xenvg
486 7db441e6 Iustin Pop
487 7db441e6 Iustin Pop
488 7db441e6 Iustin Pop
POWERCYCLE
489 7db441e6 Iustin Pop
~~~~~~~~~~
490 7db441e6 Iustin Pop
491 7db441e6 Iustin Pop
**powercycle** [``--yes``] [``--force``] {*node*}
492 7db441e6 Iustin Pop
493 71ed8d22 René Nussbaumer
This command (tries to) forcefully reboot a node. It is a command
494 7db441e6 Iustin Pop
that can be used if the node environemnt is broken, such that the
495 7db441e6 Iustin Pop
admin can no longer login over ssh, but the Ganeti node daemon is
496 7db441e6 Iustin Pop
still working.
497 7db441e6 Iustin Pop
498 7db441e6 Iustin Pop
Note that this command is not guaranteed to work; it depends on the
499 7db441e6 Iustin Pop
hypervisor how effective is the reboot attempt. For Linux, this
500 7db441e6 Iustin Pop
command require that the kernel option CONFIG\_MAGIC\_SYSRQ is
501 7db441e6 Iustin Pop
enabled.
502 7db441e6 Iustin Pop
503 7db441e6 Iustin Pop
The ``--yes`` option can be used to skip confirmation, while the
504 7db441e6 Iustin Pop
``--force`` option is needed if the target node is the master
505 7db441e6 Iustin Pop
node.
506 abefdcff René Nussbaumer
507 abefdcff René Nussbaumer
POWER
508 abefdcff René Nussbaumer
~~~~~
509 abefdcff René Nussbaumer
510 b497a636 René Nussbaumer
**power** [``--force``] [``--ignore-status``] [``--all``]
511 0a1fc31c René Nussbaumer
[``--power-delay``] on|off|cycle|status [*nodes*]
512 abefdcff René Nussbaumer
513 71ed8d22 René Nussbaumer
This command calls out to out-of-band management to change the power
514 abefdcff René Nussbaumer
state of given node. With ``status`` you get the power status as reported
515 abefdcff René Nussbaumer
by the out-of-band managment script.
516 bee8c465 Iustin Pop
517 bee8c465 Iustin Pop
Note that this command will only work if the out-of-band functionality
518 bee8c465 Iustin Pop
is configured and enabled on the cluster. If this is not the case,
519 bee8c465 Iustin Pop
please use the **powercycle** command above.
520 b497a636 René Nussbaumer
521 0a1fc31c René Nussbaumer
Using ``--force`` you skip the confirmation to do the operation.
522 0a1fc31c René Nussbaumer
Currently this only has effect on ``off`` and ``cycle``. On those two
523 0a1fc31c René Nussbaumer
you can *not* operate on the master. However, the command will provide
524 0a1fc31c René Nussbaumer
you with the command to invoke to operate on the master nerver-mind.
525 0a1fc31c René Nussbaumer
This is considered harmful and Ganeti does not support the use of it.
526 b497a636 René Nussbaumer
527 0a1fc31c René Nussbaumer
Providing ``--ignore-status`` will ignore the offline=N state of a node
528 0a1fc31c René Nussbaumer
and continue with power off.
529 0a1fc31c René Nussbaumer
530 0a1fc31c René Nussbaumer
``--power-delay`` specifies the time in seconds (factions allowed)
531 0a1fc31c René Nussbaumer
waited between powering on the next node. This is by default 2 seconds
532 0a1fc31c René Nussbaumer
but can increased if needed with this option.
533 0a1fc31c René Nussbaumer
534 0a1fc31c René Nussbaumer
*nodes* are optional. If not provided it will call out for every node in
535 0a1fc31c René Nussbaumer
the cluster. Except for the ``off`` and ``cycle`` command where you've
536 0a1fc31c René Nussbaumer
to explicit use ``--all`` to select all.
537 b497a636 René Nussbaumer
538 a0724772 René Nussbaumer
539 a0724772 René Nussbaumer
HEALTH
540 a0724772 René Nussbaumer
~~~~~~
541 a0724772 René Nussbaumer
542 a0724772 René Nussbaumer
**health** [*nodes*]
543 a0724772 René Nussbaumer
544 71ed8d22 René Nussbaumer
This command calls out to out-of-band management to ask for the health status
545 a0724772 René Nussbaumer
of all or given nodes. The health contains the node name and then the items
546 a0724772 René Nussbaumer
element with their status in a ``item=status`` manner. Where ``item`` is script
547 a0724772 René Nussbaumer
specific and ``status`` can be one of ``OK``, ``WARNING``, ``CRITICAL`` or
548 a0724772 René Nussbaumer
``UNKNOWN``. Items with status ``WARNING`` or ``CRITICAL`` are logged and
549 a0724772 René Nussbaumer
annotated in the command line output.
550 9ff4f2c0 Michael Hanselmann
551 9ff4f2c0 Michael Hanselmann
.. vim: set textwidth=72 :
552 9ff4f2c0 Michael Hanselmann
.. Local Variables:
553 9ff4f2c0 Michael Hanselmann
.. mode: rst
554 9ff4f2c0 Michael Hanselmann
.. fill-column: 72
555 9ff4f2c0 Michael Hanselmann
.. End: