Statistics
| Branch: | Tag: | Revision:

root / doc / admin.rst @ 2a50e2e8

History | View | Annotate | Download (57.2 kB)

1 ffa6869f Iustin Pop
Ganeti administrator's guide
2 ffa6869f Iustin Pop
============================
3 ffa6869f Iustin Pop
4 fd07c6b3 Iustin Pop
Documents Ganeti version |version|
5 ffa6869f Iustin Pop
6 ffa6869f Iustin Pop
.. contents::
7 ffa6869f Iustin Pop
8 c71a1a3d Iustin Pop
.. highlight:: text
9 c71a1a3d Iustin Pop
10 ffa6869f Iustin Pop
Introduction
11 ffa6869f Iustin Pop
------------
12 ffa6869f Iustin Pop
13 c71a1a3d Iustin Pop
Ganeti is a virtualization cluster management software. You are expected
14 c71a1a3d Iustin Pop
to be a system administrator familiar with your Linux distribution and
15 c71a1a3d Iustin Pop
the Xen or KVM virtualization environments before using it.
16 ffa6869f Iustin Pop
17 ffa6869f Iustin Pop
The various components of Ganeti all have man pages and interactive
18 c71a1a3d Iustin Pop
help. This manual though will help you getting familiar with the system
19 c71a1a3d Iustin Pop
by explaining the most common operations, grouped by related use.
20 ffa6869f Iustin Pop
21 ffa6869f Iustin Pop
After a terminology glossary and a section on the prerequisites needed
22 c71a1a3d Iustin Pop
to use this manual, the rest of this document is divided in sections
23 c71a1a3d Iustin Pop
for the different targets that a command affects: instance, nodes, etc.
24 ffa6869f Iustin Pop
25 c71a1a3d Iustin Pop
.. _terminology-label:
26 ffa6869f Iustin Pop
27 ffa6869f Iustin Pop
Ganeti terminology
28 c71a1a3d Iustin Pop
++++++++++++++++++
29 ffa6869f Iustin Pop
30 c71a1a3d Iustin Pop
This section provides a small introduction to Ganeti terminology, which
31 c71a1a3d Iustin Pop
might be useful when reading the rest of the document.
32 ffa6869f Iustin Pop
33 ffa6869f Iustin Pop
Cluster
34 c71a1a3d Iustin Pop
~~~~~~~
35 ffa6869f Iustin Pop
36 c71a1a3d Iustin Pop
A set of machines (nodes) that cooperate to offer a coherent, highly
37 c71a1a3d Iustin Pop
available virtualization service under a single administration domain.
38 ffa6869f Iustin Pop
39 c71a1a3d Iustin Pop
Node
40 c71a1a3d Iustin Pop
~~~~
41 c71a1a3d Iustin Pop
42 c71a1a3d Iustin Pop
A physical machine which is member of a cluster.  Nodes are the basic
43 c71a1a3d Iustin Pop
cluster infrastructure, and they don't need to be fault tolerant in
44 c71a1a3d Iustin Pop
order to achieve high availability for instances.
45 c71a1a3d Iustin Pop
46 c71a1a3d Iustin Pop
Node can be added and removed (if they host no instances) at will from
47 c71a1a3d Iustin Pop
the cluster. In a HA cluster and only with HA instances, the loss of any
48 c71a1a3d Iustin Pop
single node will not cause disk data loss for any instance; of course,
49 c71a1a3d Iustin Pop
a node crash will cause the crash of the its primary instances.
50 c71a1a3d Iustin Pop
51 c71a1a3d Iustin Pop
A node belonging to a cluster can be in one of the following roles at a
52 c71a1a3d Iustin Pop
given time:
53 c71a1a3d Iustin Pop
54 c71a1a3d Iustin Pop
- *master* node, which is the node from which the cluster is controlled
55 c71a1a3d Iustin Pop
- *master candidate* node, only nodes in this role have the full cluster
56 c71a1a3d Iustin Pop
  configuration and knowledge, and only master candidates can become the
57 c71a1a3d Iustin Pop
  master node
58 c71a1a3d Iustin Pop
- *regular* node, which is the state in which most nodes will be on
59 c71a1a3d Iustin Pop
  bigger clusters (>20 nodes)
60 c71a1a3d Iustin Pop
- *drained* node, nodes in this state are functioning normally but the
61 c71a1a3d Iustin Pop
  cannot receive new instances; the intention is that nodes in this role
62 c71a1a3d Iustin Pop
  have some issue and they are being evacuated for hardware repairs
63 c71a1a3d Iustin Pop
- *offline* node, in which there is a record in the cluster
64 c71a1a3d Iustin Pop
  configuration about the node, but the daemons on the master node will
65 c71a1a3d Iustin Pop
  not talk to this node; any instances declared as having an offline
66 c71a1a3d Iustin Pop
  node as either primary or secondary will be flagged as an error in the
67 c71a1a3d Iustin Pop
  cluster verify operation
68 c71a1a3d Iustin Pop
69 c71a1a3d Iustin Pop
Depending on the role, each node will run a set of daemons:
70 c71a1a3d Iustin Pop
71 c71a1a3d Iustin Pop
- the :command:`ganeti-noded` daemon, which control the manipulation of
72 c71a1a3d Iustin Pop
  this node's hardware resources; it runs on all nodes which are in a
73 c71a1a3d Iustin Pop
  cluster
74 c71a1a3d Iustin Pop
- the :command:`ganeti-confd` daemon (Ganeti 2.1+) which runs on all
75 10d3f678 Iustin Pop
  nodes, but is only functional on master candidate nodes; this daemon
76 10d3f678 Iustin Pop
  can be disabled at configuration time if you don't need its
77 10d3f678 Iustin Pop
  functionality
78 c71a1a3d Iustin Pop
- the :command:`ganeti-rapi` daemon which runs on the master node and
79 c71a1a3d Iustin Pop
  offers an HTTP-based API for the cluster
80 c71a1a3d Iustin Pop
- the :command:`ganeti-masterd` daemon which runs on the master node and
81 c71a1a3d Iustin Pop
  allows control of the cluster
82 ffa6869f Iustin Pop
83 feec31d1 Iustin Pop
Beside the node role, there are other node flags that influence its
84 feec31d1 Iustin Pop
behaviour:
85 feec31d1 Iustin Pop
86 feec31d1 Iustin Pop
- the *master_capable* flag denotes whether the node can ever become a
87 feec31d1 Iustin Pop
  master candidate; setting this to 'no' means that auto-promotion will
88 feec31d1 Iustin Pop
  never make this node a master candidate; this flag can be useful for a
89 feec31d1 Iustin Pop
  remote node that only runs local instances, and having it become a
90 feec31d1 Iustin Pop
  master is impractical due to networking or other constraints
91 feec31d1 Iustin Pop
- the *vm_capable* flag denotes whether the node can host instances or
92 feec31d1 Iustin Pop
  not; for example, one might use a non-vm_capable node just as a master
93 feec31d1 Iustin Pop
  candidate, for configuration backups; setting this flag to no
94 feec31d1 Iustin Pop
  disallows placement of instances of this node, deactivates hypervisor
95 feec31d1 Iustin Pop
  and related checks on it (e.g. bridge checks, LVM check, etc.), and
96 feec31d1 Iustin Pop
  removes it from cluster capacity computations
97 feec31d1 Iustin Pop
98 feec31d1 Iustin Pop
99 ffa6869f Iustin Pop
Instance
100 c71a1a3d Iustin Pop
~~~~~~~~
101 ffa6869f Iustin Pop
102 c71a1a3d Iustin Pop
A virtual machine which runs on a cluster. It can be a fault tolerant,
103 c71a1a3d Iustin Pop
highly available entity.
104 ffa6869f Iustin Pop
105 c71a1a3d Iustin Pop
An instance has various parameters, which are classified in three
106 c71a1a3d Iustin Pop
categories: hypervisor related-parameters (called ``hvparams``), general
107 c71a1a3d Iustin Pop
parameters (called ``beparams``) and per network-card parameters (called
108 c71a1a3d Iustin Pop
``nicparams``). All these parameters can be modified either at instance
109 c71a1a3d Iustin Pop
level or via defaults at cluster level.
110 ffa6869f Iustin Pop
111 c71a1a3d Iustin Pop
Disk template
112 ffa6869f Iustin Pop
~~~~~~~~~~~~~
113 ffa6869f Iustin Pop
114 c71a1a3d Iustin Pop
The are multiple options for the storage provided to an instance; while
115 c71a1a3d Iustin Pop
the instance sees the same virtual drive in all cases, the node-level
116 c71a1a3d Iustin Pop
configuration varies between them.
117 ffa6869f Iustin Pop
118 c71a1a3d Iustin Pop
There are four disk templates you can choose from:
119 ffa6869f Iustin Pop
120 c71a1a3d Iustin Pop
diskless
121 c71a1a3d Iustin Pop
  The instance has no disks. Only used for special purpose operating
122 c71a1a3d Iustin Pop
  systems or for testing.
123 c71a1a3d Iustin Pop
124 c71a1a3d Iustin Pop
file
125 c71a1a3d Iustin Pop
  The instance will use plain files as backend for its disks. No
126 c71a1a3d Iustin Pop
  redundancy is provided, and this is somewhat more difficult to
127 c71a1a3d Iustin Pop
  configure for high performance.
128 c71a1a3d Iustin Pop
129 c71a1a3d Iustin Pop
plain
130 c71a1a3d Iustin Pop
  The instance will use LVM devices as backend for its disks. No
131 c71a1a3d Iustin Pop
  redundancy is provided.
132 c71a1a3d Iustin Pop
133 c71a1a3d Iustin Pop
drbd
134 c71a1a3d Iustin Pop
  .. note:: This is only valid for multi-node clusters using DRBD 8.0+
135 c71a1a3d Iustin Pop
136 c71a1a3d Iustin Pop
  A mirror is set between the local node and a remote one, which must be
137 c71a1a3d Iustin Pop
  specified with the second value of the --node option. Use this option
138 c71a1a3d Iustin Pop
  to obtain a highly available instance that can be failed over to a
139 c71a1a3d Iustin Pop
  remote node should the primary one fail.
140 c71a1a3d Iustin Pop
141 c71a1a3d Iustin Pop
IAllocator
142 c71a1a3d Iustin Pop
~~~~~~~~~~
143 c71a1a3d Iustin Pop
144 c71a1a3d Iustin Pop
A framework for using external (user-provided) scripts to compute the
145 c71a1a3d Iustin Pop
placement of instances on the cluster nodes. This eliminates the need to
146 c71a1a3d Iustin Pop
manually specify nodes in instance add, instance moves, node evacuate,
147 c71a1a3d Iustin Pop
etc.
148 c71a1a3d Iustin Pop
149 c71a1a3d Iustin Pop
In order for Ganeti to be able to use these scripts, they must be place
150 c71a1a3d Iustin Pop
in the iallocator directory (usually ``lib/ganeti/iallocators`` under
151 c71a1a3d Iustin Pop
the installation prefix, e.g. ``/usr/local``).
152 c71a1a3d Iustin Pop
153 c71a1a3d Iustin Pop
“Primary” and “secondary” concepts
154 c71a1a3d Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
155 c71a1a3d Iustin Pop
156 c71a1a3d Iustin Pop
An instance has a primary and depending on the disk configuration, might
157 c71a1a3d Iustin Pop
also have a secondary node. The instance always runs on the primary node
158 c71a1a3d Iustin Pop
and only uses its secondary node for disk replication.
159 c71a1a3d Iustin Pop
160 c71a1a3d Iustin Pop
Similarly, the term of primary and secondary instances when talking
161 c71a1a3d Iustin Pop
about a node refers to the set of instances having the given node as
162 c71a1a3d Iustin Pop
primary, respectively secondary.
163 c71a1a3d Iustin Pop
164 c71a1a3d Iustin Pop
Tags
165 c71a1a3d Iustin Pop
~~~~
166 c71a1a3d Iustin Pop
167 c71a1a3d Iustin Pop
Tags are short strings that can be attached to either to cluster itself,
168 c71a1a3d Iustin Pop
or to nodes or instances. They are useful as a very simplistic
169 c71a1a3d Iustin Pop
information store for helping with cluster administration, for example
170 c71a1a3d Iustin Pop
by attaching owner information to each instance after it's created::
171 ffa6869f Iustin Pop
172 c71a1a3d Iustin Pop
  gnt-instance add … instance1
173 c71a1a3d Iustin Pop
  gnt-instance add-tags instance1 owner:user2
174 c71a1a3d Iustin Pop
175 c71a1a3d Iustin Pop
And then by listing each instance and its tags, this information could
176 c71a1a3d Iustin Pop
be used for contacting the users of each instance.
177 c71a1a3d Iustin Pop
178 c71a1a3d Iustin Pop
Jobs and OpCodes
179 c71a1a3d Iustin Pop
~~~~~~~~~~~~~~~~
180 c71a1a3d Iustin Pop
181 c71a1a3d Iustin Pop
While not directly visible by an end-user, it's useful to know that a
182 c71a1a3d Iustin Pop
basic cluster operation (e.g. starting an instance) is represented
183 c71a1a3d Iustin Pop
internall by Ganeti as an *OpCode* (abbreviation from operation
184 c71a1a3d Iustin Pop
code). These OpCodes are executed as part of a *Job*. The OpCodes in a
185 c71a1a3d Iustin Pop
single Job are processed serially by Ganeti, but different Jobs will be
186 f313e7be Michael Hanselmann
processed (depending on resource availability) in parallel. They will
187 f313e7be Michael Hanselmann
not be executed in the submission order, but depending on resource
188 f313e7be Michael Hanselmann
availability, locks and (starting with Ganeti 2.3) priority. An earlier
189 f313e7be Michael Hanselmann
job may have to wait for a lock while a newer job doesn't need any locks
190 f313e7be Michael Hanselmann
and can be executed right away. Operations requiring a certain order
191 f313e7be Michael Hanselmann
need to be submitted as a single job, or the client must submit one job
192 f313e7be Michael Hanselmann
at a time and wait for it to finish before continuing.
193 c71a1a3d Iustin Pop
194 c71a1a3d Iustin Pop
For example, shutting down the entire cluster can be done by running the
195 c71a1a3d Iustin Pop
command ``gnt-instance shutdown --all``, which will submit for each
196 c71a1a3d Iustin Pop
instance a separate job containing the “shutdown instance” OpCode.
197 c71a1a3d Iustin Pop
198 c71a1a3d Iustin Pop
199 c71a1a3d Iustin Pop
Prerequisites
200 c71a1a3d Iustin Pop
+++++++++++++
201 c71a1a3d Iustin Pop
202 c71a1a3d Iustin Pop
You need to have your Ganeti cluster installed and configured before you
203 c71a1a3d Iustin Pop
try any of the commands in this document. Please follow the
204 c71a1a3d Iustin Pop
:doc:`install` for instructions on how to do that.
205 c71a1a3d Iustin Pop
206 c71a1a3d Iustin Pop
Instance management
207 c71a1a3d Iustin Pop
-------------------
208 c71a1a3d Iustin Pop
209 c71a1a3d Iustin Pop
Adding an instance
210 c71a1a3d Iustin Pop
++++++++++++++++++
211 c71a1a3d Iustin Pop
212 c71a1a3d Iustin Pop
The add operation might seem complex due to the many parameters it
213 c71a1a3d Iustin Pop
accepts, but once you have understood the (few) required parameters and
214 c71a1a3d Iustin Pop
the customisation capabilities you will see it is an easy operation.
215 c71a1a3d Iustin Pop
216 c71a1a3d Iustin Pop
The add operation requires at minimum five parameters:
217 c71a1a3d Iustin Pop
218 c71a1a3d Iustin Pop
- the OS for the instance
219 c71a1a3d Iustin Pop
- the disk template
220 c71a1a3d Iustin Pop
- the disk count and size
221 c71a1a3d Iustin Pop
- the node specification or alternatively the iallocator to use
222 c71a1a3d Iustin Pop
- and finally the instance name
223 c71a1a3d Iustin Pop
224 c71a1a3d Iustin Pop
The OS for the instance must be visible in the output of the command
225 c71a1a3d Iustin Pop
``gnt-os list`` and specifies which guest OS to install on the instance.
226 c71a1a3d Iustin Pop
227 c71a1a3d Iustin Pop
The disk template specifies what kind of storage to use as backend for
228 c71a1a3d Iustin Pop
the (virtual) disks presented to the instance; note that for instances
229 c71a1a3d Iustin Pop
with multiple virtual disks, they all must be of the same type.
230 c71a1a3d Iustin Pop
231 c71a1a3d Iustin Pop
The node(s) on which the instance will run can be given either manually,
232 c71a1a3d Iustin Pop
via the ``-n`` option, or computed automatically by Ganeti, if you have
233 c71a1a3d Iustin Pop
installed any iallocator script.
234 c71a1a3d Iustin Pop
235 c71a1a3d Iustin Pop
With the above parameters in mind, the command is::
236 ffa6869f Iustin Pop
237 ffa6869f Iustin Pop
  gnt-instance add \
238 c71a1a3d Iustin Pop
    -n TARGET_NODE:SECONDARY_NODE \
239 c71a1a3d Iustin Pop
    -o OS_TYPE \
240 c71a1a3d Iustin Pop
    -t DISK_TEMPLATE -s DISK_SIZE \
241 ffa6869f Iustin Pop
    INSTANCE_NAME
242 ffa6869f Iustin Pop
243 ffa6869f Iustin Pop
The instance name must be resolvable (e.g. exist in DNS) and usually
244 c71a1a3d Iustin Pop
points to an address in the same subnet as the cluster itself.
245 ffa6869f Iustin Pop
246 c71a1a3d Iustin Pop
The above command has the minimum required options; other options you
247 c71a1a3d Iustin Pop
can give include, among others:
248 ffa6869f Iustin Pop
249 d4fcd298 Guido Trotter
- The maximum/minimum memory size (``-B maxmem``, ``-B minmem``)
250 d4fcd298 Guido Trotter
  (``-B memory`` can be used to specify only one size)
251 ffa6869f Iustin Pop
252 ffa6869f Iustin Pop
- The number of virtual CPUs (``-B vcpus``)
253 ffa6869f Iustin Pop
254 ffa6869f Iustin Pop
- Arguments for the NICs of the instance; by default, a single-NIC
255 ffa6869f Iustin Pop
  instance is created. The IP and/or bridge of the NIC can be changed
256 ffa6869f Iustin Pop
  via ``--nic 0:ip=IP,bridge=BRIDGE``
257 ffa6869f Iustin Pop
258 c71a1a3d Iustin Pop
See the manpage for gnt-instance for the detailed option list.
259 ffa6869f Iustin Pop
260 c71a1a3d Iustin Pop
For example if you want to create an highly available instance, with a
261 c71a1a3d Iustin Pop
single disk of 50GB and the default memory size, having primary node
262 c71a1a3d Iustin Pop
``node1`` and secondary node ``node3``, use the following command::
263 ffa6869f Iustin Pop
264 c71a1a3d Iustin Pop
  gnt-instance add -n node1:node3 -o debootstrap -t drbd \
265 c71a1a3d Iustin Pop
    instance1
266 ffa6869f Iustin Pop
267 c71a1a3d Iustin Pop
There is a also a command for batch instance creation from a
268 c71a1a3d Iustin Pop
specification file, see the ``batch-create`` operation in the
269 c71a1a3d Iustin Pop
gnt-instance manual page.
270 ffa6869f Iustin Pop
271 c71a1a3d Iustin Pop
Regular instance operations
272 c71a1a3d Iustin Pop
+++++++++++++++++++++++++++
273 ffa6869f Iustin Pop
274 c71a1a3d Iustin Pop
Removal
275 c71a1a3d Iustin Pop
~~~~~~~
276 ffa6869f Iustin Pop
277 c71a1a3d Iustin Pop
Removing an instance is even easier than creating one. This operation is
278 c71a1a3d Iustin Pop
irreversible and destroys all the contents of your instance. Use with
279 c71a1a3d Iustin Pop
care::
280 ffa6869f Iustin Pop
281 ffa6869f Iustin Pop
  gnt-instance remove INSTANCE_NAME
282 ffa6869f Iustin Pop
283 d4fcd298 Guido Trotter
.. _instance-startup-label:
284 d4fcd298 Guido Trotter
285 c71a1a3d Iustin Pop
Startup/shutdown
286 c71a1a3d Iustin Pop
~~~~~~~~~~~~~~~~
287 ffa6869f Iustin Pop
288 ffa6869f Iustin Pop
Instances are automatically started at instance creation time. To
289 ffa6869f Iustin Pop
manually start one which is currently stopped you can run::
290 ffa6869f Iustin Pop
291 ffa6869f Iustin Pop
  gnt-instance startup INSTANCE_NAME
292 ffa6869f Iustin Pop
293 d4fcd298 Guido Trotter
Ganeti will start an instance with up to its maximum instance memory. If
294 d4fcd298 Guido Trotter
not enough memory is available Ganeti will use all the available memory
295 d4fcd298 Guido Trotter
down to the instance minumum memory. If not even that amount of memory
296 d4fcd298 Guido Trotter
is free Ganeti will refuse to start the instance.
297 d4fcd298 Guido Trotter
298 edc282ad Agata Murawska
Note, that this will not work when an instance is in a permanently
299 edc282ad Agata Murawska
stopped state ``offline``. In this case, you will first have to
300 edc282ad Agata Murawska
put it back to online mode by running::
301 edc282ad Agata Murawska
302 edc282ad Agata Murawska
  gnt-instance modify --online INSTANCE_NAME
303 edc282ad Agata Murawska
304 edc282ad Agata Murawska
The command to stop the running instance is::
305 ffa6869f Iustin Pop
306 ffa6869f Iustin Pop
  gnt-instance shutdown INSTANCE_NAME
307 ffa6869f Iustin Pop
308 edc282ad Agata Murawska
If you want to shut the instance down more permanently, so that it
309 edc282ad Agata Murawska
does not require dynamically allocated resources (memory and vcpus),
310 edc282ad Agata Murawska
after shutting down an instance, execute the following::
311 edc282ad Agata Murawska
312 d4fcd298 Guido Trotter
  gnt-instance modify --offline INSTANCE_NAME
313 edc282ad Agata Murawska
314 c71a1a3d Iustin Pop
.. warning:: Do not use the Xen or KVM commands directly to stop
315 c71a1a3d Iustin Pop
   instances. If you run for example ``xm shutdown`` or ``xm destroy``
316 44275c2d Andrea Spadaccini
   on an instance Ganeti will automatically restart it (via
317 44275c2d Andrea Spadaccini
   the :command:`ganeti-watcher` command which is launched via cron).
318 c71a1a3d Iustin Pop
319 c71a1a3d Iustin Pop
Querying instances
320 c71a1a3d Iustin Pop
~~~~~~~~~~~~~~~~~~
321 c71a1a3d Iustin Pop
322 c71a1a3d Iustin Pop
There are two ways to get information about instances: listing
323 c71a1a3d Iustin Pop
instances, which does a tabular output containing a given set of fields
324 c71a1a3d Iustin Pop
about each instance, and querying detailed information about a set of
325 c71a1a3d Iustin Pop
instances.
326 c71a1a3d Iustin Pop
327 ffa6869f Iustin Pop
The command to see all the instances configured and their status is::
328 ffa6869f Iustin Pop
329 ffa6869f Iustin Pop
  gnt-instance list
330 ffa6869f Iustin Pop
331 c71a1a3d Iustin Pop
The command can return a custom set of information when using the ``-o``
332 c71a1a3d Iustin Pop
option (as always, check the manpage for a detailed specification). Each
333 c71a1a3d Iustin Pop
instance will be represented on a line, thus making it easy to parse
334 c71a1a3d Iustin Pop
this output via the usual shell utilities (grep, sed, etc.).
335 c71a1a3d Iustin Pop
336 c71a1a3d Iustin Pop
To get more detailed information about an instance, you can run::
337 c71a1a3d Iustin Pop
338 c71a1a3d Iustin Pop
  gnt-instance info INSTANCE
339 c71a1a3d Iustin Pop
340 c71a1a3d Iustin Pop
which will give a multi-line block of information about the instance,
341 c71a1a3d Iustin Pop
it's hardware resources (especially its disks and their redundancy
342 c71a1a3d Iustin Pop
status), etc. This is harder to parse and is more expensive than the
343 c71a1a3d Iustin Pop
list operation, but returns much more detailed information.
344 ffa6869f Iustin Pop
345 d4fcd298 Guido Trotter
Changing an instance's runtime memory
346 d4fcd298 Guido Trotter
+++++++++++++++++++++++++++++++++++++
347 d4fcd298 Guido Trotter
348 d4fcd298 Guido Trotter
Ganeti will always make sure an instance has a value between its maximum
349 d4fcd298 Guido Trotter
and its minimum memory available as runtime memory. As of version 2.6
350 d4fcd298 Guido Trotter
Ganeti will only choose a size different than the maximum size when
351 d4fcd298 Guido Trotter
starting up, failing over, or migrating an instance on a node with less
352 d4fcd298 Guido Trotter
than the maximum memory available. It won't resize other instances in
353 d4fcd298 Guido Trotter
order to free up space for an instance.
354 d4fcd298 Guido Trotter
355 d4fcd298 Guido Trotter
If you find that you need more memory on a node any instance can be
356 d4fcd298 Guido Trotter
manually resized without downtime, with the command::
357 d4fcd298 Guido Trotter
358 d4fcd298 Guido Trotter
  gnt-instance modify -m SIZE INSTANCE_NAME
359 d4fcd298 Guido Trotter
360 d4fcd298 Guido Trotter
The same command can also be used to increase the memory available on an
361 d4fcd298 Guido Trotter
instance, provided that enough free memory is available on its node, and
362 d4fcd298 Guido Trotter
the specified size is not larger than the maximum memory size the
363 d4fcd298 Guido Trotter
instance had when it was first booted (an instance will be unable to see
364 d4fcd298 Guido Trotter
new memory above the maximum that was specified to the hypervisor at its
365 d4fcd298 Guido Trotter
boot time, if it needs to grow further a reboot becomes necessary).
366 ffa6869f Iustin Pop
367 c71a1a3d Iustin Pop
Export/Import
368 c71a1a3d Iustin Pop
+++++++++++++
369 c71a1a3d Iustin Pop
370 c71a1a3d Iustin Pop
You can create a snapshot of an instance disk and its Ganeti
371 ffa6869f Iustin Pop
configuration, which then you can backup, or import into another
372 ffa6869f Iustin Pop
cluster. The way to export an instance is::
373 ffa6869f Iustin Pop
374 ffa6869f Iustin Pop
  gnt-backup export -n TARGET_NODE INSTANCE_NAME
375 ffa6869f Iustin Pop
376 c71a1a3d Iustin Pop
377 ffa6869f Iustin Pop
The target node can be any node in the cluster with enough space under
378 c71a1a3d Iustin Pop
``/srv/ganeti`` to hold the instance image. Use the ``--noshutdown``
379 c71a1a3d Iustin Pop
option to snapshot an instance without rebooting it. Note that Ganeti
380 c71a1a3d Iustin Pop
only keeps one snapshot for an instance - any previous snapshot of the
381 c71a1a3d Iustin Pop
same instance existing cluster-wide under ``/srv/ganeti`` will be
382 c71a1a3d Iustin Pop
removed by this operation: if you want to keep them, you need to move
383 c71a1a3d Iustin Pop
them out of the Ganeti exports directory.
384 ffa6869f Iustin Pop
385 c71a1a3d Iustin Pop
Importing an instance is similar to creating a new one, but additionally
386 c71a1a3d Iustin Pop
one must specify the location of the snapshot. The command is::
387 ffa6869f Iustin Pop
388 33ea43b6 Iustin Pop
  gnt-backup import -n TARGET_NODE \
389 ffa6869f Iustin Pop
    --src-node=NODE --src-dir=DIR INSTANCE_NAME
390 ffa6869f Iustin Pop
391 33ea43b6 Iustin Pop
By default, parameters will be read from the export information, but you
392 33ea43b6 Iustin Pop
can of course pass them in via the command line - most of the options
393 33ea43b6 Iustin Pop
available for the command :command:`gnt-instance add` are supported here
394 33ea43b6 Iustin Pop
too.
395 ffa6869f Iustin Pop
396 17227cd1 Iustin Pop
Import of foreign instances
397 17227cd1 Iustin Pop
+++++++++++++++++++++++++++
398 17227cd1 Iustin Pop
399 17227cd1 Iustin Pop
There is a possibility to import a foreign instance whose disk data is
400 17227cd1 Iustin Pop
already stored as LVM volumes without going through copying it: the disk
401 17227cd1 Iustin Pop
adoption mode.
402 17227cd1 Iustin Pop
403 17227cd1 Iustin Pop
For this, ensure that the original, non-managed instance is stopped,
404 17227cd1 Iustin Pop
then create a Ganeti instance in the usual way, except that instead of
405 17227cd1 Iustin Pop
passing the disk information you specify the current volumes::
406 17227cd1 Iustin Pop
407 17227cd1 Iustin Pop
  gnt-instance add -t plain -n HOME_NODE ... \
408 7af3534e Dmitry Chernyak
    --disk 0:adopt=lv_name[,vg=vg_name] INSTANCE_NAME
409 17227cd1 Iustin Pop
410 17227cd1 Iustin Pop
This will take over the given logical volumes, rename them to the Ganeti
411 17227cd1 Iustin Pop
standard (UUID-based), and without installing the OS on them start
412 17227cd1 Iustin Pop
directly the instance. If you configure the hypervisor similar to the
413 17227cd1 Iustin Pop
non-managed configuration that the instance had, the transition should
414 17227cd1 Iustin Pop
be seamless for the instance. For more than one disk, just pass another
415 17227cd1 Iustin Pop
disk parameter (e.g. ``--disk 1:adopt=...``).
416 17227cd1 Iustin Pop
417 fc3914e6 Iustin Pop
Instance kernel selection
418 fc3914e6 Iustin Pop
+++++++++++++++++++++++++
419 fc3914e6 Iustin Pop
420 fc3914e6 Iustin Pop
The kernel that instances uses to bootup can come either from the node,
421 fc3914e6 Iustin Pop
or from instances themselves, depending on the setup.
422 fc3914e6 Iustin Pop
423 fc3914e6 Iustin Pop
Xen-PVM
424 fc3914e6 Iustin Pop
~~~~~~~
425 fc3914e6 Iustin Pop
426 fc3914e6 Iustin Pop
With Xen PVM, there are three options.
427 fc3914e6 Iustin Pop
428 fc3914e6 Iustin Pop
First, you can use a kernel from the node, by setting the hypervisor
429 fc3914e6 Iustin Pop
parameters as such:
430 fc3914e6 Iustin Pop
431 fc3914e6 Iustin Pop
- ``kernel_path`` to a valid file on the node (and appropriately
432 fc3914e6 Iustin Pop
  ``initrd_path``)
433 fc3914e6 Iustin Pop
- ``kernel_args`` optionally set to a valid Linux setting (e.g. ``ro``)
434 fc3914e6 Iustin Pop
- ``root_path`` to a valid setting (e.g. ``/dev/xvda1``)
435 fc3914e6 Iustin Pop
- ``bootloader_path`` and ``bootloader_args`` to empty
436 fc3914e6 Iustin Pop
437 96514751 Michael Hanselmann
Alternatively, you can delegate the kernel management to instances, and
438 fc3914e6 Iustin Pop
use either ``pvgrub`` or the deprecated ``pygrub``. For this, you must
439 96514751 Michael Hanselmann
install the kernels and initrds in the instance and create a valid GRUB
440 fc3914e6 Iustin Pop
v1 configuration file.
441 fc3914e6 Iustin Pop
442 fc3914e6 Iustin Pop
For ``pvgrub`` (new in version 2.4.2), you need to set:
443 fc3914e6 Iustin Pop
444 fc3914e6 Iustin Pop
- ``kernel_path`` to point to the ``pvgrub`` loader present on the node
445 fc3914e6 Iustin Pop
  (e.g. ``/usr/lib/xen/boot/pv-grub-x86_32.gz``)
446 96514751 Michael Hanselmann
- ``kernel_args`` to the path to the GRUB config file, relative to the
447 fc3914e6 Iustin Pop
  instance (e.g. ``(hd0,0)/grub/menu.lst``)
448 fc3914e6 Iustin Pop
- ``root_path`` **must** be empty
449 fc3914e6 Iustin Pop
- ``bootloader_path`` and ``bootloader_args`` to empty
450 fc3914e6 Iustin Pop
451 fc3914e6 Iustin Pop
While ``pygrub`` is deprecated, here is how you can configure it:
452 fc3914e6 Iustin Pop
453 fc3914e6 Iustin Pop
- ``bootloader_path`` to the pygrub binary (e.g. ``/usr/bin/pygrub``)
454 fc3914e6 Iustin Pop
- the other settings are not important
455 fc3914e6 Iustin Pop
456 fc3914e6 Iustin Pop
More information can be found in the Xen wiki pages for `pvgrub
457 fc3914e6 Iustin Pop
<http://wiki.xensource.com/xenwiki/PvGrub>`_ and `pygrub
458 fc3914e6 Iustin Pop
<http://wiki.xensource.com/xenwiki/PyGrub>`_.
459 fc3914e6 Iustin Pop
460 fc3914e6 Iustin Pop
KVM
461 fc3914e6 Iustin Pop
~~~
462 fc3914e6 Iustin Pop
463 fc3914e6 Iustin Pop
For KVM also the kernel can be loaded either way.
464 fc3914e6 Iustin Pop
465 fc3914e6 Iustin Pop
For loading the kernels from the node, you need to set:
466 fc3914e6 Iustin Pop
467 fc3914e6 Iustin Pop
- ``kernel_path`` to a valid value
468 fc3914e6 Iustin Pop
- ``initrd_path`` optionally set if you use an initrd
469 fc3914e6 Iustin Pop
- ``kernel_args`` optionally set to a valid value (e.g. ``ro``)
470 fc3914e6 Iustin Pop
471 fc3914e6 Iustin Pop
If you want instead to have the instance boot from its disk (and execute
472 fc3914e6 Iustin Pop
its bootloader), simply set the ``kernel_path`` parameter to an empty
473 fc3914e6 Iustin Pop
string, and all the others will be ignored.
474 fc3914e6 Iustin Pop
475 c71a1a3d Iustin Pop
Instance HA features
476 c71a1a3d Iustin Pop
--------------------
477 ffa6869f Iustin Pop
478 ffa6869f Iustin Pop
.. note:: This section only applies to multi-node clusters
479 ffa6869f Iustin Pop
480 c71a1a3d Iustin Pop
.. _instance-change-primary-label:
481 c71a1a3d Iustin Pop
482 c71a1a3d Iustin Pop
Changing the primary node
483 c71a1a3d Iustin Pop
+++++++++++++++++++++++++
484 c71a1a3d Iustin Pop
485 c71a1a3d Iustin Pop
There are three ways to exchange an instance's primary and secondary
486 c71a1a3d Iustin Pop
nodes; the right one to choose depends on how the instance has been
487 c71a1a3d Iustin Pop
created and the status of its current primary node. See
488 c71a1a3d Iustin Pop
:ref:`rest-redundancy-label` for information on changing the secondary
489 c71a1a3d Iustin Pop
node. Note that it's only possible to change the primary node to the
490 c71a1a3d Iustin Pop
secondary and vice-versa; a direct change of the primary node with a
491 c71a1a3d Iustin Pop
third node, while keeping the current secondary is not possible in a
492 c71a1a3d Iustin Pop
single step, only via multiple operations as detailed in
493 c71a1a3d Iustin Pop
:ref:`instance-relocation-label`.
494 c71a1a3d Iustin Pop
495 ffa6869f Iustin Pop
Failing over an instance
496 ffa6869f Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~
497 ffa6869f Iustin Pop
498 ffa6869f Iustin Pop
If an instance is built in highly available mode you can at any time
499 ffa6869f Iustin Pop
fail it over to its secondary node, even if the primary has somehow
500 ffa6869f Iustin Pop
failed and it's not up anymore. Doing it is really easy, on the master
501 ffa6869f Iustin Pop
node you can just run::
502 ffa6869f Iustin Pop
503 ffa6869f Iustin Pop
  gnt-instance failover INSTANCE_NAME
504 ffa6869f Iustin Pop
505 ffa6869f Iustin Pop
That's it. After the command completes the secondary node is now the
506 c71a1a3d Iustin Pop
primary, and vice-versa.
507 ffa6869f Iustin Pop
508 d4fcd298 Guido Trotter
The instance will be started with an amount of memory between its
509 d4fcd298 Guido Trotter
``maxmem`` and its ``minmem`` value, depending on the free memory on its
510 d4fcd298 Guido Trotter
target node, or the operation will fail if that's not possible. See
511 d4fcd298 Guido Trotter
:ref:`instance-startup-label` for details.
512 d4fcd298 Guido Trotter
513 ffa6869f Iustin Pop
Live migrating an instance
514 ffa6869f Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~~
515 ffa6869f Iustin Pop
516 c71a1a3d Iustin Pop
If an instance is built in highly available mode, it currently runs and
517 c71a1a3d Iustin Pop
both its nodes are running fine, you can at migrate it over to its
518 c71a1a3d Iustin Pop
secondary node, without downtime. On the master node you need to run::
519 ffa6869f Iustin Pop
520 ffa6869f Iustin Pop
  gnt-instance migrate INSTANCE_NAME
521 ffa6869f Iustin Pop
522 c71a1a3d Iustin Pop
The current load on the instance and its memory size will influence how
523 c71a1a3d Iustin Pop
long the migration will take. In any case, for both KVM and Xen
524 c71a1a3d Iustin Pop
hypervisors, the migration will be transparent to the instance.
525 ffa6869f Iustin Pop
526 d4fcd298 Guido Trotter
If the destination node has less memory than the instance's current
527 d4fcd298 Guido Trotter
runtime memory, but at least the instance's minimum memory available
528 d4fcd298 Guido Trotter
Ganeti will automatically reduce the instance runtime memory before
529 d4fcd298 Guido Trotter
migrating it, unless the ``--no-runtime-changes`` option is passed, in
530 d4fcd298 Guido Trotter
which case the target node should have at least the instance's current
531 d4fcd298 Guido Trotter
runtime memory free.
532 d4fcd298 Guido Trotter
533 c71a1a3d Iustin Pop
Moving an instance (offline)
534 c71a1a3d Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
535 ffa6869f Iustin Pop
536 c71a1a3d Iustin Pop
If an instance has not been create as mirrored, then the only way to
537 c71a1a3d Iustin Pop
change its primary node is to execute the move command::
538 ffa6869f Iustin Pop
539 c71a1a3d Iustin Pop
  gnt-instance move -n NEW_NODE INSTANCE
540 ffa6869f Iustin Pop
541 c71a1a3d Iustin Pop
This has a few prerequisites:
542 ffa6869f Iustin Pop
543 c71a1a3d Iustin Pop
- the instance must be stopped
544 c71a1a3d Iustin Pop
- its current primary node must be on-line and healthy
545 c71a1a3d Iustin Pop
- the disks of the instance must not have any errors
546 ffa6869f Iustin Pop
547 c71a1a3d Iustin Pop
Since this operation actually copies the data from the old node to the
548 c71a1a3d Iustin Pop
new node, expect it to take proportional to the size of the instance's
549 c71a1a3d Iustin Pop
disks and the speed of both the nodes' I/O system and their networking.
550 ffa6869f Iustin Pop
551 c71a1a3d Iustin Pop
Disk operations
552 c71a1a3d Iustin Pop
+++++++++++++++
553 ffa6869f Iustin Pop
554 c71a1a3d Iustin Pop
Disk failures are a common cause of errors in any server
555 c71a1a3d Iustin Pop
deployment. Ganeti offers protection from single-node failure if your
556 c71a1a3d Iustin Pop
instances were created in HA mode, and it also offers ways to restore
557 c71a1a3d Iustin Pop
redundancy after a failure.
558 ffa6869f Iustin Pop
559 c71a1a3d Iustin Pop
Preparing for disk operations
560 c71a1a3d Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
561 ffa6869f Iustin Pop
562 c71a1a3d Iustin Pop
It is important to note that for Ganeti to be able to do any disk
563 c71a1a3d Iustin Pop
operation, the Linux machines on top of which Ganeti must be consistent;
564 c71a1a3d Iustin Pop
for LVM, this means that the LVM commands must not return failures; it
565 c71a1a3d Iustin Pop
is common that after a complete disk failure, any LVM command aborts
566 c71a1a3d Iustin Pop
with an error similar to::
567 ffa6869f Iustin Pop
568 c71a1a3d Iustin Pop
  # vgs
569 c71a1a3d Iustin Pop
  /dev/sdb1: read failed after 0 of 4096 at 0: Input/output error
570 c71a1a3d Iustin Pop
  /dev/sdb1: read failed after 0 of 4096 at 750153695232: Input/output
571 c71a1a3d Iustin Pop
  error
572 c71a1a3d Iustin Pop
  /dev/sdb1: read failed after 0 of 4096 at 0: Input/output error
573 c71a1a3d Iustin Pop
  Couldn't find device with uuid
574 c71a1a3d Iustin Pop
  't30jmN-4Rcf-Fr5e-CURS-pawt-z0jU-m1TgeJ'.
575 c71a1a3d Iustin Pop
  Couldn't find all physical volumes for volume group xenvg.
576 ffa6869f Iustin Pop
577 c71a1a3d Iustin Pop
Before restoring an instance's disks to healthy status, it's needed to
578 c71a1a3d Iustin Pop
fix the volume group used by Ganeti so that we can actually create and
579 c71a1a3d Iustin Pop
manage the logical volumes. This is usually done in a multi-step
580 c71a1a3d Iustin Pop
process:
581 ffa6869f Iustin Pop
582 c71a1a3d Iustin Pop
#. first, if the disk is completely gone and LVM commands exit with
583 c71a1a3d Iustin Pop
   “Couldn't find device with uuid…” then you need to run the command::
584 c71a1a3d Iustin Pop
585 c71a1a3d Iustin Pop
    vgreduce --removemissing VOLUME_GROUP
586 c71a1a3d Iustin Pop
587 c71a1a3d Iustin Pop
#. after the above command, the LVM commands should be executing
588 c71a1a3d Iustin Pop
   normally (warnings are normal, but the commands will not fail
589 c71a1a3d Iustin Pop
   completely).
590 c71a1a3d Iustin Pop
591 c71a1a3d Iustin Pop
#. if the failed disk is still visible in the output of the ``pvs``
592 c71a1a3d Iustin Pop
   command, you need to deactivate it from allocations by running::
593 c71a1a3d Iustin Pop
594 c71a1a3d Iustin Pop
    pvs -x n /dev/DISK
595 ffa6869f Iustin Pop
596 c71a1a3d Iustin Pop
At this point, the volume group should be consistent and any bad
597 c71a1a3d Iustin Pop
physical volumes should not longer be available for allocation.
598 c71a1a3d Iustin Pop
599 c71a1a3d Iustin Pop
Note that since version 2.1 Ganeti provides some commands to automate
600 c71a1a3d Iustin Pop
these two operations, see :ref:`storage-units-label`.
601 c71a1a3d Iustin Pop
602 c71a1a3d Iustin Pop
.. _rest-redundancy-label:
603 c71a1a3d Iustin Pop
604 c71a1a3d Iustin Pop
Restoring redundancy for DRBD-based instances
605 c71a1a3d Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
606 c71a1a3d Iustin Pop
607 c71a1a3d Iustin Pop
A DRBD instance has two nodes, and the storage on one of them has
608 c71a1a3d Iustin Pop
failed. Depending on which node (primary or secondary) has failed, you
609 c71a1a3d Iustin Pop
have three options at hand:
610 c71a1a3d Iustin Pop
611 c71a1a3d Iustin Pop
- if the storage on the primary node has failed, you need to re-create
612 c71a1a3d Iustin Pop
  the disks on it
613 c71a1a3d Iustin Pop
- if the storage on the secondary node has failed, you can either
614 c71a1a3d Iustin Pop
  re-create the disks on it or change the secondary and recreate
615 c71a1a3d Iustin Pop
  redundancy on the new secondary node
616 c71a1a3d Iustin Pop
617 c71a1a3d Iustin Pop
Of course, at any point it's possible to force re-creation of disks even
618 c71a1a3d Iustin Pop
though everything is already fine.
619 c71a1a3d Iustin Pop
620 c71a1a3d Iustin Pop
For all three cases, the ``replace-disks`` operation can be used::
621 c71a1a3d Iustin Pop
622 c71a1a3d Iustin Pop
  # re-create disks on the primary node
623 c71a1a3d Iustin Pop
  gnt-instance replace-disks -p INSTANCE_NAME
624 c71a1a3d Iustin Pop
  # re-create disks on the current secondary
625 c71a1a3d Iustin Pop
  gnt-instance replace-disks -s INSTANCE_NAME
626 c71a1a3d Iustin Pop
  # change the secondary node, via manual specification
627 c71a1a3d Iustin Pop
  gnt-instance replace-disks -n NODE INSTANCE_NAME
628 c71a1a3d Iustin Pop
  # change the secondary node, via an iallocator script
629 c71a1a3d Iustin Pop
  gnt-instance replace-disks -I SCRIPT INSTANCE_NAME
630 c71a1a3d Iustin Pop
  # since Ganeti 2.1: automatically fix the primary or secondary node
631 c71a1a3d Iustin Pop
  gnt-instance replace-disks -a INSTANCE_NAME
632 c71a1a3d Iustin Pop
633 c71a1a3d Iustin Pop
Since the process involves copying all data from the working node to the
634 c71a1a3d Iustin Pop
target node, it will take a while, depending on the instance's disk
635 1cdc9dbb Bernardo Dal Seno
size, node I/O system and network speed. But it is (barring any network
636 c71a1a3d Iustin Pop
interruption) completely transparent for the instance.
637 c71a1a3d Iustin Pop
638 c71a1a3d Iustin Pop
Re-creating disks for non-redundant instances
639 c71a1a3d Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
640 c71a1a3d Iustin Pop
641 c71a1a3d Iustin Pop
.. versionadded:: 2.1
642 c71a1a3d Iustin Pop
643 c71a1a3d Iustin Pop
For non-redundant instances, there isn't a copy (except backups) to
644 c71a1a3d Iustin Pop
re-create the disks. But it's possible to at-least re-create empty
645 c71a1a3d Iustin Pop
disks, after which a reinstall can be run, via the ``recreate-disks``
646 c71a1a3d Iustin Pop
command::
647 c71a1a3d Iustin Pop
648 c71a1a3d Iustin Pop
  gnt-instance recreate-disks INSTANCE
649 c71a1a3d Iustin Pop
650 c71a1a3d Iustin Pop
Note that this will fail if the disks already exists.
651 c71a1a3d Iustin Pop
652 bbf74a76 Iustin Pop
Conversion of an instance's disk type
653 bbf74a76 Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
654 bbf74a76 Iustin Pop
655 bbf74a76 Iustin Pop
It is possible to convert between a non-redundant instance of type
656 bbf74a76 Iustin Pop
``plain`` (LVM storage) and redundant ``drbd`` via the ``gnt-instance
657 bbf74a76 Iustin Pop
modify`` command::
658 bbf74a76 Iustin Pop
659 bbf74a76 Iustin Pop
  # start with a non-redundant instance
660 bbf74a76 Iustin Pop
  gnt-instance add -t plain ... INSTANCE
661 bbf74a76 Iustin Pop
662 bbf74a76 Iustin Pop
  # later convert it to redundant
663 bbf74a76 Iustin Pop
  gnt-instance stop INSTANCE
664 3e039592 Iustin Pop
  gnt-instance modify -t drbd -n NEW_SECONDARY INSTANCE
665 bbf74a76 Iustin Pop
  gnt-instance start INSTANCE
666 bbf74a76 Iustin Pop
667 bbf74a76 Iustin Pop
  # and convert it back
668 bbf74a76 Iustin Pop
  gnt-instance stop INSTANCE
669 bbf74a76 Iustin Pop
  gnt-instance modify -t plain INSTANCE
670 bbf74a76 Iustin Pop
  gnt-instance start INSTANCE
671 bbf74a76 Iustin Pop
672 bbf74a76 Iustin Pop
The conversion must be done while the instance is stopped, and
673 bbf74a76 Iustin Pop
converting from plain to drbd template presents a small risk, especially
674 bbf74a76 Iustin Pop
if the instance has multiple disks and/or if one node fails during the
675 bbf74a76 Iustin Pop
conversion procedure). As such, it's recommended (as always) to make
676 bbf74a76 Iustin Pop
sure that downtime for manual recovery is acceptable and that the
677 bbf74a76 Iustin Pop
instance has up-to-date backups.
678 bbf74a76 Iustin Pop
679 c71a1a3d Iustin Pop
Debugging instances
680 c71a1a3d Iustin Pop
+++++++++++++++++++
681 ffa6869f Iustin Pop
682 ffa6869f Iustin Pop
Accessing an instance's disks
683 ffa6869f Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
684 ffa6869f Iustin Pop
685 c71a1a3d Iustin Pop
From an instance's primary node you can have access to its disks. Never
686 ffa6869f Iustin Pop
ever mount the underlying logical volume manually on a fault tolerant
687 c71a1a3d Iustin Pop
instance, or will break replication and your data will be
688 c71a1a3d Iustin Pop
inconsistent. The correct way to access an instance's disks is to run
689 c71a1a3d Iustin Pop
(on the master node, as usual) the command::
690 c71a1a3d Iustin Pop
691 c71a1a3d Iustin Pop
  gnt-instance activate-disks INSTANCE
692 c71a1a3d Iustin Pop
693 c71a1a3d Iustin Pop
And then, *on the primary node of the instance*, access the device that
694 c71a1a3d Iustin Pop
gets created. For example, you could mount the given disks, then edit
695 c71a1a3d Iustin Pop
files on the filesystem, etc.
696 c71a1a3d Iustin Pop
697 c71a1a3d Iustin Pop
Note that with partitioned disks (as opposed to whole-disk filesystems),
698 c71a1a3d Iustin Pop
you will need to use a tool like :manpage:`kpartx(8)`::
699 ffa6869f Iustin Pop
700 c71a1a3d Iustin Pop
  node1# gnt-instance activate-disks instance1
701 c71a1a3d Iustin Pop
702 c71a1a3d Iustin Pop
  node1# ssh node3
703 c71a1a3d Iustin Pop
  node3# kpartx -l /dev/…
704 c71a1a3d Iustin Pop
  node3# kpartx -a /dev/…
705 c71a1a3d Iustin Pop
  node3# mount /dev/mapper/… /mnt/
706 c71a1a3d Iustin Pop
  # edit files under mnt as desired
707 c71a1a3d Iustin Pop
  node3# umount /mnt/
708 c71a1a3d Iustin Pop
  node3# kpartx -d /dev/…
709 c71a1a3d Iustin Pop
  node3# exit
710 c71a1a3d Iustin Pop
  node1#
711 ffa6869f Iustin Pop
712 c71a1a3d Iustin Pop
After you've finished you can deactivate them with the deactivate-disks
713 c71a1a3d Iustin Pop
command, which works in the same way::
714 c71a1a3d Iustin Pop
715 c71a1a3d Iustin Pop
  gnt-instance deactivate-disks INSTANCE
716 c71a1a3d Iustin Pop
717 c71a1a3d Iustin Pop
Note that if any process started by you is still using the disks, the
718 c71a1a3d Iustin Pop
above command will error out, and you **must** cleanup and ensure that
719 c71a1a3d Iustin Pop
the above command runs successfully before you start the instance,
720 c71a1a3d Iustin Pop
otherwise the instance will suffer corruption.
721 ffa6869f Iustin Pop
722 ffa6869f Iustin Pop
Accessing an instance's console
723 fd07c6b3 Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
724 ffa6869f Iustin Pop
725 ffa6869f Iustin Pop
The command to access a running instance's console is::
726 ffa6869f Iustin Pop
727 ffa6869f Iustin Pop
  gnt-instance console INSTANCE_NAME
728 ffa6869f Iustin Pop
729 c71a1a3d Iustin Pop
Use the console normally and then type ``^]`` when done, to exit.
730 c71a1a3d Iustin Pop
731 c71a1a3d Iustin Pop
Other instance operations
732 c71a1a3d Iustin Pop
+++++++++++++++++++++++++
733 c71a1a3d Iustin Pop
734 c71a1a3d Iustin Pop
Reboot
735 c71a1a3d Iustin Pop
~~~~~~
736 ffa6869f Iustin Pop
737 c71a1a3d Iustin Pop
There is a wrapper command for rebooting instances::
738 ffa6869f Iustin Pop
739 c71a1a3d Iustin Pop
  gnt-instance reboot instance2
740 c71a1a3d Iustin Pop
741 c71a1a3d Iustin Pop
By default, this does the equivalent of shutting down and then starting
742 c71a1a3d Iustin Pop
the instance, but it accepts parameters to perform a soft-reboot (via
743 c71a1a3d Iustin Pop
the hypervisor), a hard reboot (hypervisor shutdown and then startup) or
744 c71a1a3d Iustin Pop
a full one (the default, which also de-configures and then configures
745 c71a1a3d Iustin Pop
again the disks of the instance).
746 c71a1a3d Iustin Pop
747 c71a1a3d Iustin Pop
Instance OS definitions debugging
748 c71a1a3d Iustin Pop
+++++++++++++++++++++++++++++++++
749 c71a1a3d Iustin Pop
750 c71a1a3d Iustin Pop
Should you have any problems with instance operating systems the command
751 c71a1a3d Iustin Pop
to see a complete status for all your nodes is::
752 ffa6869f Iustin Pop
753 ffa6869f Iustin Pop
   gnt-os diagnose
754 ffa6869f Iustin Pop
755 c71a1a3d Iustin Pop
.. _instance-relocation-label:
756 ffa6869f Iustin Pop
757 c71a1a3d Iustin Pop
Instance relocation
758 c71a1a3d Iustin Pop
~~~~~~~~~~~~~~~~~~~
759 ffa6869f Iustin Pop
760 c71a1a3d Iustin Pop
While it is not possible to move an instance from nodes ``(A, B)`` to
761 c71a1a3d Iustin Pop
nodes ``(C, D)`` in a single move, it is possible to do so in a few
762 c71a1a3d Iustin Pop
steps::
763 ffa6869f Iustin Pop
764 c71a1a3d Iustin Pop
  # instance is located on A, B
765 c71a1a3d Iustin Pop
  node1# gnt-instance replace -n nodeC instance1
766 c71a1a3d Iustin Pop
  # instance has moved from (A, B) to (A, C)
767 c71a1a3d Iustin Pop
  # we now flip the primary/secondary nodes
768 c71a1a3d Iustin Pop
  node1# gnt-instance migrate instance1
769 c71a1a3d Iustin Pop
  # instance lives on (C, A)
770 c71a1a3d Iustin Pop
  # we can then change A to D via:
771 c71a1a3d Iustin Pop
  node1# gnt-instance replace -n nodeD instance1
772 56c9a709 Iustin Pop
773 c71a1a3d Iustin Pop
Which brings it into the final configuration of ``(C, D)``. Note that we
774 c71a1a3d Iustin Pop
needed to do two replace-disks operation (two copies of the instance
775 c71a1a3d Iustin Pop
disks), because we needed to get rid of both the original nodes (A and
776 c71a1a3d Iustin Pop
B).
777 c71a1a3d Iustin Pop
778 c71a1a3d Iustin Pop
Node operations
779 c71a1a3d Iustin Pop
---------------
780 c71a1a3d Iustin Pop
781 c71a1a3d Iustin Pop
There are much fewer node operations available than for instances, but
782 c71a1a3d Iustin Pop
they are equivalently important for maintaining a healthy cluster.
783 c71a1a3d Iustin Pop
784 c71a1a3d Iustin Pop
Add/readd
785 c71a1a3d Iustin Pop
+++++++++
786 c71a1a3d Iustin Pop
787 c71a1a3d Iustin Pop
It is at any time possible to extend the cluster with one more node, by
788 c71a1a3d Iustin Pop
using the node add operation::
789 c71a1a3d Iustin Pop
790 c71a1a3d Iustin Pop
  gnt-node add NEW_NODE
791 c71a1a3d Iustin Pop
792 c71a1a3d Iustin Pop
If the cluster has a replication network defined, then you need to pass
793 c71a1a3d Iustin Pop
the ``-s REPLICATION_IP`` parameter to this option.
794 c71a1a3d Iustin Pop
795 c71a1a3d Iustin Pop
A variation of this command can be used to re-configure a node if its
796 c71a1a3d Iustin Pop
Ganeti configuration is broken, for example if it has been reinstalled
797 c71a1a3d Iustin Pop
by mistake::
798 c71a1a3d Iustin Pop
799 c71a1a3d Iustin Pop
  gnt-node add --readd EXISTING_NODE
800 c71a1a3d Iustin Pop
801 c71a1a3d Iustin Pop
This will reinitialise the node as if it's been newly added, but while
802 c71a1a3d Iustin Pop
keeping its existing configuration in the cluster (primary/secondary IP,
803 c71a1a3d Iustin Pop
etc.), in other words you won't need to use ``-s`` here.
804 c71a1a3d Iustin Pop
805 c71a1a3d Iustin Pop
Changing the node role
806 c71a1a3d Iustin Pop
++++++++++++++++++++++
807 c71a1a3d Iustin Pop
808 c71a1a3d Iustin Pop
A node can be in different roles, as explained in the
809 c71a1a3d Iustin Pop
:ref:`terminology-label` section. Promoting a node to the master role is
810 c71a1a3d Iustin Pop
special, while the other roles are handled all via a single command.
811 c71a1a3d Iustin Pop
812 c71a1a3d Iustin Pop
Failing over the master node
813 c71a1a3d Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
814 c71a1a3d Iustin Pop
815 c71a1a3d Iustin Pop
If you want to promote a different node to the master role (for whatever
816 c71a1a3d Iustin Pop
reason), run on any other master-candidate node the command::
817 c71a1a3d Iustin Pop
818 c28502b1 Iustin Pop
  gnt-cluster master-failover
819 c71a1a3d Iustin Pop
820 c71a1a3d Iustin Pop
and the node you ran it on is now the new master. In case you try to run
821 c71a1a3d Iustin Pop
this on a non master-candidate node, you will get an error telling you
822 c71a1a3d Iustin Pop
which nodes are valid.
823 c71a1a3d Iustin Pop
824 c71a1a3d Iustin Pop
Changing between the other roles
825 c71a1a3d Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
826 c71a1a3d Iustin Pop
827 c71a1a3d Iustin Pop
The ``gnt-node modify`` command can be used to select a new role::
828 c71a1a3d Iustin Pop
829 c71a1a3d Iustin Pop
  # change to master candidate
830 c71a1a3d Iustin Pop
  gnt-node modify -C yes NODE
831 c71a1a3d Iustin Pop
  # change to drained status
832 c71a1a3d Iustin Pop
  gnt-node modify -D yes NODE
833 c71a1a3d Iustin Pop
  # change to offline status
834 c71a1a3d Iustin Pop
  gnt-node modify -O yes NODE
835 c71a1a3d Iustin Pop
  # change to regular mode (reset all flags)
836 c71a1a3d Iustin Pop
  gnt-node modify -O no -D no -C no NODE
837 c71a1a3d Iustin Pop
838 c71a1a3d Iustin Pop
Note that the cluster requires that at any point in time, a certain
839 c71a1a3d Iustin Pop
number of nodes are master candidates, so changing from master candidate
840 c71a1a3d Iustin Pop
to other roles might fail. It is recommended to either force the
841 c71a1a3d Iustin Pop
operation (via the ``--force`` option) or first change the number of
842 c71a1a3d Iustin Pop
master candidates in the cluster - see :ref:`cluster-config-label`.
843 c71a1a3d Iustin Pop
844 c71a1a3d Iustin Pop
Evacuating nodes
845 c71a1a3d Iustin Pop
++++++++++++++++
846 c71a1a3d Iustin Pop
847 c71a1a3d Iustin Pop
There are two steps of moving instances off a node:
848 c71a1a3d Iustin Pop
849 c71a1a3d Iustin Pop
- moving the primary instances (actually converting them into secondary
850 c71a1a3d Iustin Pop
  instances)
851 c71a1a3d Iustin Pop
- moving the secondary instances (including any instances converted in
852 c71a1a3d Iustin Pop
  the step above)
853 c71a1a3d Iustin Pop
854 c71a1a3d Iustin Pop
Primary instance conversion
855 c71a1a3d Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~~~
856 c71a1a3d Iustin Pop
857 c71a1a3d Iustin Pop
For this step, you can use either individual instance move
858 c71a1a3d Iustin Pop
commands (as seen in :ref:`instance-change-primary-label`) or the bulk
859 c71a1a3d Iustin Pop
per-node versions; these are::
860 c71a1a3d Iustin Pop
861 c71a1a3d Iustin Pop
  gnt-node migrate NODE
862 c71a1a3d Iustin Pop
  gnt-node evacuate NODE
863 c71a1a3d Iustin Pop
864 c71a1a3d Iustin Pop
Note that the instance “move” command doesn't currently have a node
865 c71a1a3d Iustin Pop
equivalent.
866 c71a1a3d Iustin Pop
867 c71a1a3d Iustin Pop
Both these commands, or the equivalent per-instance command, will make
868 c71a1a3d Iustin Pop
this node the secondary node for the respective instances, whereas their
869 c71a1a3d Iustin Pop
current secondary node will become primary. Note that it is not possible
870 c71a1a3d Iustin Pop
to change in one step the primary node to another node as primary, while
871 c71a1a3d Iustin Pop
keeping the same secondary node.
872 c71a1a3d Iustin Pop
873 c71a1a3d Iustin Pop
Secondary instance evacuation
874 c71a1a3d Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
875 c71a1a3d Iustin Pop
876 c71a1a3d Iustin Pop
For the evacuation of secondary instances, a command called
877 c71a1a3d Iustin Pop
:command:`gnt-node evacuate` is provided and its syntax is::
878 c71a1a3d Iustin Pop
879 c71a1a3d Iustin Pop
  gnt-node evacuate -I IALLOCATOR_SCRIPT NODE
880 c71a1a3d Iustin Pop
  gnt-node evacuate -n DESTINATION_NODE NODE
881 c71a1a3d Iustin Pop
882 c71a1a3d Iustin Pop
The first version will compute the new secondary for each instance in
883 c71a1a3d Iustin Pop
turn using the given iallocator script, whereas the second one will
884 c71a1a3d Iustin Pop
simply move all instances to DESTINATION_NODE.
885 c71a1a3d Iustin Pop
886 c71a1a3d Iustin Pop
Removal
887 c71a1a3d Iustin Pop
+++++++
888 c71a1a3d Iustin Pop
889 c71a1a3d Iustin Pop
Once a node no longer has any instances (neither primary nor secondary),
890 c71a1a3d Iustin Pop
it's easy to remove it from the cluster::
891 c71a1a3d Iustin Pop
892 c71a1a3d Iustin Pop
  gnt-node remove NODE_NAME
893 c71a1a3d Iustin Pop
894 c71a1a3d Iustin Pop
This will deconfigure the node, stop the ganeti daemons on it and leave
895 c71a1a3d Iustin Pop
it hopefully like before it joined to the cluster.
896 c71a1a3d Iustin Pop
897 c71a1a3d Iustin Pop
Storage handling
898 c71a1a3d Iustin Pop
++++++++++++++++
899 c71a1a3d Iustin Pop
900 c71a1a3d Iustin Pop
When using LVM (either standalone or with DRBD), it can become tedious
901 c71a1a3d Iustin Pop
to debug and fix it in case of errors. Furthermore, even file-based
902 c71a1a3d Iustin Pop
storage can become complicated to handle manually on many hosts. Ganeti
903 c71a1a3d Iustin Pop
provides a couple of commands to help with automation.
904 c71a1a3d Iustin Pop
905 c71a1a3d Iustin Pop
Logical volumes
906 c71a1a3d Iustin Pop
~~~~~~~~~~~~~~~
907 c71a1a3d Iustin Pop
908 c71a1a3d Iustin Pop
This is a command specific to LVM handling. It allows listing the
909 c71a1a3d Iustin Pop
logical volumes on a given node or on all nodes and their association to
910 c71a1a3d Iustin Pop
instances via the ``volumes`` command::
911 c71a1a3d Iustin Pop
912 c71a1a3d Iustin Pop
  node1# gnt-node volumes
913 c71a1a3d Iustin Pop
  Node  PhysDev   VG    Name             Size Instance
914 c71a1a3d Iustin Pop
  node1 /dev/sdb1 xenvg e61fbc97-….disk0 512M instance17
915 c71a1a3d Iustin Pop
  node1 /dev/sdb1 xenvg ebd1a7d1-….disk0 512M instance19
916 c71a1a3d Iustin Pop
  node2 /dev/sdb1 xenvg 0af08a3d-….disk0 512M instance20
917 c71a1a3d Iustin Pop
  node2 /dev/sdb1 xenvg cc012285-….disk0 512M instance16
918 c71a1a3d Iustin Pop
  node2 /dev/sdb1 xenvg f0fac192-….disk0 512M instance18
919 c71a1a3d Iustin Pop
920 c71a1a3d Iustin Pop
The above command maps each logical volume to a volume group and
921 c71a1a3d Iustin Pop
underlying physical volume and (possibly) to an instance.
922 c71a1a3d Iustin Pop
923 c71a1a3d Iustin Pop
.. _storage-units-label:
924 c71a1a3d Iustin Pop
925 c71a1a3d Iustin Pop
Generalized storage handling
926 c71a1a3d Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
927 c71a1a3d Iustin Pop
928 c71a1a3d Iustin Pop
.. versionadded:: 2.1
929 c71a1a3d Iustin Pop
930 c71a1a3d Iustin Pop
Starting with Ganeti 2.1, a new storage framework has been implemented
931 c71a1a3d Iustin Pop
that tries to abstract the handling of the storage type the cluster
932 c71a1a3d Iustin Pop
uses.
933 c71a1a3d Iustin Pop
934 c71a1a3d Iustin Pop
First is listing the backend storage and their space situation::
935 c71a1a3d Iustin Pop
936 c71a1a3d Iustin Pop
  node1# gnt-node list-storage
937 c71a1a3d Iustin Pop
  Node  Name        Size Used   Free
938 c71a1a3d Iustin Pop
  node1 /dev/sda7 673.8G   0M 673.8G
939 c71a1a3d Iustin Pop
  node1 /dev/sdb1 698.6G 1.5G 697.1G
940 c71a1a3d Iustin Pop
  node2 /dev/sda7 673.8G   0M 673.8G
941 c71a1a3d Iustin Pop
  node2 /dev/sdb1 698.6G 1.0G 697.6G
942 c71a1a3d Iustin Pop
943 c71a1a3d Iustin Pop
The default is to list LVM physical volumes. It's also possible to list
944 c71a1a3d Iustin Pop
the LVM volume groups::
945 c71a1a3d Iustin Pop
946 c71a1a3d Iustin Pop
  node1# gnt-node list-storage -t lvm-vg
947 c71a1a3d Iustin Pop
  Node  Name  Size
948 c71a1a3d Iustin Pop
  node1 xenvg 1.3T
949 c71a1a3d Iustin Pop
  node2 xenvg 1.3T
950 c71a1a3d Iustin Pop
951 c71a1a3d Iustin Pop
Next is repairing storage units, which is currently only implemented for
952 c71a1a3d Iustin Pop
volume groups and does the equivalent of ``vgreduce --removemissing``::
953 c71a1a3d Iustin Pop
954 c71a1a3d Iustin Pop
  node1# gnt-node repair-storage node2 lvm-vg xenvg
955 c71a1a3d Iustin Pop
  Sun Oct 25 22:21:45 2009 Repairing storage unit 'xenvg' on node2 ...
956 c71a1a3d Iustin Pop
957 c71a1a3d Iustin Pop
Last is the modification of volume properties, which is (again) only
958 c71a1a3d Iustin Pop
implemented for LVM physical volumes and allows toggling the
959 c71a1a3d Iustin Pop
``allocatable`` value::
960 c71a1a3d Iustin Pop
961 c71a1a3d Iustin Pop
  node1# gnt-node modify-storage --allocatable=no node2 lvm-pv /dev/sdb1
962 c71a1a3d Iustin Pop
963 c71a1a3d Iustin Pop
Use of the storage commands
964 56c9a709 Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~~~
965 56c9a709 Iustin Pop
966 c71a1a3d Iustin Pop
All these commands are needed when recovering a node from a disk
967 c71a1a3d Iustin Pop
failure:
968 c71a1a3d Iustin Pop
969 c71a1a3d Iustin Pop
- first, we need to recover from complete LVM failure (due to missing
970 c71a1a3d Iustin Pop
  disk), by running the ``repair-storage`` command
971 c71a1a3d Iustin Pop
- second, we need to change allocation on any partially-broken disk
972 c71a1a3d Iustin Pop
  (i.e. LVM still sees it, but it has bad blocks) by running
973 c71a1a3d Iustin Pop
  ``modify-storage``
974 c71a1a3d Iustin Pop
- then we can evacuate the instances as needed
975 56c9a709 Iustin Pop
976 56c9a709 Iustin Pop
977 c71a1a3d Iustin Pop
Cluster operations
978 c71a1a3d Iustin Pop
------------------
979 c71a1a3d Iustin Pop
980 c71a1a3d Iustin Pop
Beside the cluster initialisation command (which is detailed in the
981 c71a1a3d Iustin Pop
:doc:`install` document) and the master failover command which is
982 c71a1a3d Iustin Pop
explained under node handling, there are a couple of other cluster
983 c71a1a3d Iustin Pop
operations available.
984 c71a1a3d Iustin Pop
985 c71a1a3d Iustin Pop
.. _cluster-config-label:
986 c71a1a3d Iustin Pop
987 c71a1a3d Iustin Pop
Standard operations
988 c71a1a3d Iustin Pop
+++++++++++++++++++
989 c71a1a3d Iustin Pop
990 c71a1a3d Iustin Pop
One of the few commands that can be run on any node (not only the
991 c71a1a3d Iustin Pop
master) is the ``getmaster`` command::
992 c71a1a3d Iustin Pop
993 c71a1a3d Iustin Pop
  node2# gnt-cluster getmaster
994 c71a1a3d Iustin Pop
  node1.example.com
995 c71a1a3d Iustin Pop
  node2#
996 c71a1a3d Iustin Pop
997 c71a1a3d Iustin Pop
It is possible to query and change global cluster parameters via the
998 c71a1a3d Iustin Pop
``info`` and ``modify`` commands::
999 c71a1a3d Iustin Pop
1000 c71a1a3d Iustin Pop
  node1# gnt-cluster info
1001 c71a1a3d Iustin Pop
  Cluster name: cluster.example.com
1002 c71a1a3d Iustin Pop
  Cluster UUID: 07805e6f-f0af-4310-95f1-572862ee939c
1003 c71a1a3d Iustin Pop
  Creation time: 2009-09-25 05:04:15
1004 c71a1a3d Iustin Pop
  Modification time: 2009-10-18 22:11:47
1005 c71a1a3d Iustin Pop
  Master node: node1.example.com
1006 c71a1a3d Iustin Pop
  Architecture (this node): 64bit (x86_64)
1007 c71a1a3d Iustin Pop
1008 c71a1a3d Iustin Pop
  Tags: foo
1009 c71a1a3d Iustin Pop
  Default hypervisor: xen-pvm
1010 c71a1a3d Iustin Pop
  Enabled hypervisors: xen-pvm
1011 c71a1a3d Iustin Pop
  Hypervisor parameters:
1012 c71a1a3d Iustin Pop
    - xen-pvm:
1013 c71a1a3d Iustin Pop
        root_path: /dev/sda1
1014 c71a1a3d Iustin Pop
1015 c71a1a3d Iustin Pop
  Cluster parameters:
1016 c71a1a3d Iustin Pop
    - candidate pool size: 10
1017 c71a1a3d Iustin Pop
1018 c71a1a3d Iustin Pop
  Default instance parameters:
1019 c71a1a3d Iustin Pop
    - default:
1020 c71a1a3d Iustin Pop
        memory: 128
1021 c71a1a3d Iustin Pop
1022 c71a1a3d Iustin Pop
  Default nic parameters:
1023 c71a1a3d Iustin Pop
    - default:
1024 c71a1a3d Iustin Pop
        link: xen-br0
1025 c71a1a3d Iustin Pop
1026 c71a1a3d Iustin Pop
1027 c71a1a3d Iustin Pop
There various parameters above can be changed via the ``modify``
1028 c71a1a3d Iustin Pop
commands as follows:
1029 c71a1a3d Iustin Pop
1030 c71a1a3d Iustin Pop
- the hypervisor parameters can be changed via ``modify -H
1031 c71a1a3d Iustin Pop
  xen-pvm:root_path=…``, and so on for other hypervisors/key/values
1032 c71a1a3d Iustin Pop
- the "default instance parameters" are changeable via ``modify -B
1033 c71a1a3d Iustin Pop
  parameter=value…`` syntax
1034 c71a1a3d Iustin Pop
- the cluster parameters are changeable via separate options to the
1035 c71a1a3d Iustin Pop
  modify command (e.g. ``--candidate-pool-size``, etc.)
1036 c71a1a3d Iustin Pop
1037 c71a1a3d Iustin Pop
For detailed option list see the :manpage:`gnt-cluster(8)` man page.
1038 c71a1a3d Iustin Pop
1039 c71a1a3d Iustin Pop
The cluster version can be obtained via the ``version`` command::
1040 c71a1a3d Iustin Pop
  node1# gnt-cluster version
1041 c71a1a3d Iustin Pop
  Software version: 2.1.0
1042 c71a1a3d Iustin Pop
  Internode protocol: 20
1043 c71a1a3d Iustin Pop
  Configuration format: 2010000
1044 c71a1a3d Iustin Pop
  OS api version: 15
1045 c71a1a3d Iustin Pop
  Export interface: 0
1046 c71a1a3d Iustin Pop
1047 c71a1a3d Iustin Pop
This is not very useful except when debugging Ganeti.
1048 c71a1a3d Iustin Pop
1049 c71a1a3d Iustin Pop
Global node commands
1050 c71a1a3d Iustin Pop
++++++++++++++++++++
1051 c71a1a3d Iustin Pop
1052 c71a1a3d Iustin Pop
There are two commands provided for replicating files to all nodes of a
1053 c71a1a3d Iustin Pop
cluster and for running commands on all the nodes::
1054 c71a1a3d Iustin Pop
1055 c71a1a3d Iustin Pop
  node1# gnt-cluster copyfile /path/to/file
1056 c71a1a3d Iustin Pop
  node1# gnt-cluster command ls -l /path/to/file
1057 c71a1a3d Iustin Pop
1058 c71a1a3d Iustin Pop
These are simple wrappers over scp/ssh and more advanced usage can be
1059 c71a1a3d Iustin Pop
obtained using :manpage:`dsh(1)` and similar commands. But they are
1060 c71a1a3d Iustin Pop
useful to update an OS script from the master node, for example.
1061 c71a1a3d Iustin Pop
1062 c71a1a3d Iustin Pop
Cluster verification
1063 c71a1a3d Iustin Pop
++++++++++++++++++++
1064 c71a1a3d Iustin Pop
1065 c71a1a3d Iustin Pop
There are three commands that relate to global cluster checks. The first
1066 c71a1a3d Iustin Pop
one is ``verify`` which gives an overview on the cluster state,
1067 c71a1a3d Iustin Pop
highlighting any issues. In normal operation, this command should return
1068 c71a1a3d Iustin Pop
no ``ERROR`` messages::
1069 c71a1a3d Iustin Pop
1070 c71a1a3d Iustin Pop
  node1# gnt-cluster verify
1071 c71a1a3d Iustin Pop
  Sun Oct 25 23:08:58 2009 * Verifying global settings
1072 c71a1a3d Iustin Pop
  Sun Oct 25 23:08:58 2009 * Gathering data (2 nodes)
1073 c71a1a3d Iustin Pop
  Sun Oct 25 23:09:00 2009 * Verifying node status
1074 c71a1a3d Iustin Pop
  Sun Oct 25 23:09:00 2009 * Verifying instance status
1075 c71a1a3d Iustin Pop
  Sun Oct 25 23:09:00 2009 * Verifying orphan volumes
1076 c71a1a3d Iustin Pop
  Sun Oct 25 23:09:00 2009 * Verifying remaining instances
1077 c71a1a3d Iustin Pop
  Sun Oct 25 23:09:00 2009 * Verifying N+1 Memory redundancy
1078 c71a1a3d Iustin Pop
  Sun Oct 25 23:09:00 2009 * Other Notes
1079 c71a1a3d Iustin Pop
  Sun Oct 25 23:09:00 2009   - NOTICE: 5 non-redundant instance(s) found.
1080 c71a1a3d Iustin Pop
  Sun Oct 25 23:09:00 2009 * Hooks Results
1081 c71a1a3d Iustin Pop
1082 c71a1a3d Iustin Pop
The second command is ``verify-disks``, which checks that the instance's
1083 c71a1a3d Iustin Pop
disks have the correct status based on the desired instance state
1084 c71a1a3d Iustin Pop
(up/down)::
1085 c71a1a3d Iustin Pop
1086 c71a1a3d Iustin Pop
  node1# gnt-cluster verify-disks
1087 c71a1a3d Iustin Pop
1088 c71a1a3d Iustin Pop
Note that this command will show no output when disks are healthy.
1089 c71a1a3d Iustin Pop
1090 c71a1a3d Iustin Pop
The last command is used to repair any discrepancies in Ganeti's
1091 c71a1a3d Iustin Pop
recorded disk size and the actual disk size (disk size information is
1092 c71a1a3d Iustin Pop
needed for proper activation and growth of DRBD-based disks)::
1093 c71a1a3d Iustin Pop
1094 c71a1a3d Iustin Pop
  node1# gnt-cluster repair-disk-sizes
1095 c71a1a3d Iustin Pop
  Sun Oct 25 23:13:16 2009  - INFO: Disk 0 of instance instance1 has mismatched size, correcting: recorded 512, actual 2048
1096 c71a1a3d Iustin Pop
  Sun Oct 25 23:13:17 2009  - WARNING: Invalid result from node node4, ignoring node results
1097 c71a1a3d Iustin Pop
1098 c71a1a3d Iustin Pop
The above shows one instance having wrong disk size, and a node which
1099 c71a1a3d Iustin Pop
returned invalid data, and thus we ignored all primary instances of that
1100 c71a1a3d Iustin Pop
node.
1101 c71a1a3d Iustin Pop
1102 c71a1a3d Iustin Pop
Configuration redistribution
1103 c71a1a3d Iustin Pop
++++++++++++++++++++++++++++
1104 c71a1a3d Iustin Pop
1105 c71a1a3d Iustin Pop
If the verify command complains about file mismatches between the master
1106 c71a1a3d Iustin Pop
and other nodes, due to some node problems or if you manually modified
1107 c71a1a3d Iustin Pop
configuration files, you can force an push of the master configuration
1108 c71a1a3d Iustin Pop
to all other nodes via the ``redist-conf`` command::
1109 c71a1a3d Iustin Pop
1110 c71a1a3d Iustin Pop
  node1# gnt-cluster redist-conf
1111 c71a1a3d Iustin Pop
  node1#
1112 c71a1a3d Iustin Pop
1113 c71a1a3d Iustin Pop
This command will be silent unless there are problems sending updates to
1114 c71a1a3d Iustin Pop
the other nodes.
1115 c71a1a3d Iustin Pop
1116 c71a1a3d Iustin Pop
1117 c71a1a3d Iustin Pop
Cluster renaming
1118 c71a1a3d Iustin Pop
++++++++++++++++
1119 c71a1a3d Iustin Pop
1120 c71a1a3d Iustin Pop
It is possible to rename a cluster, or to change its IP address, via the
1121 c71a1a3d Iustin Pop
``rename`` command. If only the IP has changed, you need to pass the
1122 c71a1a3d Iustin Pop
current name and Ganeti will realise its IP has changed::
1123 c71a1a3d Iustin Pop
1124 c71a1a3d Iustin Pop
  node1# gnt-cluster rename cluster.example.com
1125 c71a1a3d Iustin Pop
  This will rename the cluster to 'cluster.example.com'. If
1126 c71a1a3d Iustin Pop
  you are connected over the network to the cluster name, the operation
1127 c71a1a3d Iustin Pop
  is very dangerous as the IP address will be removed from the node and
1128 c71a1a3d Iustin Pop
  the change may not go through. Continue?
1129 c71a1a3d Iustin Pop
  y/[n]/?: y
1130 c71a1a3d Iustin Pop
  Failure: prerequisites not met for this operation:
1131 c71a1a3d Iustin Pop
  Neither the name nor the IP address of the cluster has changed
1132 c71a1a3d Iustin Pop
1133 c71a1a3d Iustin Pop
In the above output, neither value has changed since the cluster
1134 c71a1a3d Iustin Pop
initialisation so the operation is not completed.
1135 c71a1a3d Iustin Pop
1136 c71a1a3d Iustin Pop
Queue operations
1137 c71a1a3d Iustin Pop
++++++++++++++++
1138 c71a1a3d Iustin Pop
1139 c71a1a3d Iustin Pop
The job queue execution in Ganeti 2.0 and higher can be inspected,
1140 c71a1a3d Iustin Pop
suspended and resumed via the ``queue`` command::
1141 c71a1a3d Iustin Pop
1142 c71a1a3d Iustin Pop
  node1~# gnt-cluster queue info
1143 c71a1a3d Iustin Pop
  The drain flag is unset
1144 c71a1a3d Iustin Pop
  node1~# gnt-cluster queue drain
1145 c71a1a3d Iustin Pop
  node1~# gnt-instance stop instance1
1146 c71a1a3d Iustin Pop
  Failed to submit job for instance1: Job queue is drained, refusing job
1147 c71a1a3d Iustin Pop
  node1~# gnt-cluster queue info
1148 c71a1a3d Iustin Pop
  The drain flag is set
1149 c71a1a3d Iustin Pop
  node1~# gnt-cluster queue undrain
1150 c71a1a3d Iustin Pop
1151 c71a1a3d Iustin Pop
This is most useful if you have an active cluster and you need to
1152 c71a1a3d Iustin Pop
upgrade the Ganeti software, or simply restart the software on any node:
1153 c71a1a3d Iustin Pop
1154 c71a1a3d Iustin Pop
#. suspend the queue via ``queue drain``
1155 c71a1a3d Iustin Pop
#. wait until there are no more running jobs via ``gnt-job list``
1156 c71a1a3d Iustin Pop
#. restart the master or another node, or upgrade the software
1157 c71a1a3d Iustin Pop
#. resume the queue via ``queue undrain``
1158 c71a1a3d Iustin Pop
1159 c71a1a3d Iustin Pop
.. note:: this command only stores a local flag file, and if you
1160 c71a1a3d Iustin Pop
   failover the master, it will not have effect on the new master.
1161 c71a1a3d Iustin Pop
1162 c71a1a3d Iustin Pop
1163 c71a1a3d Iustin Pop
Watcher control
1164 c71a1a3d Iustin Pop
+++++++++++++++
1165 c71a1a3d Iustin Pop
1166 c71a1a3d Iustin Pop
The :manpage:`ganeti-watcher` is a program, usually scheduled via
1167 c71a1a3d Iustin Pop
``cron``, that takes care of cluster maintenance operations (restarting
1168 c71a1a3d Iustin Pop
downed instances, activating down DRBD disks, etc.). However, during
1169 c71a1a3d Iustin Pop
maintenance and troubleshooting, this can get in your way; disabling it
1170 c71a1a3d Iustin Pop
via commenting out the cron job is not so good as this can be
1171 c71a1a3d Iustin Pop
forgotten. Thus there are some commands for automated control of the
1172 c71a1a3d Iustin Pop
watcher: ``pause``, ``info`` and ``continue``::
1173 c71a1a3d Iustin Pop
1174 c71a1a3d Iustin Pop
  node1~# gnt-cluster watcher info
1175 c71a1a3d Iustin Pop
  The watcher is not paused.
1176 c71a1a3d Iustin Pop
  node1~# gnt-cluster watcher pause 1h
1177 c71a1a3d Iustin Pop
  The watcher is paused until Mon Oct 26 00:30:37 2009.
1178 c71a1a3d Iustin Pop
  node1~# gnt-cluster watcher info
1179 c71a1a3d Iustin Pop
  The watcher is paused until Mon Oct 26 00:30:37 2009.
1180 c71a1a3d Iustin Pop
  node1~# ganeti-watcher -d
1181 c71a1a3d Iustin Pop
  2009-10-25 23:30:47,984:  pid=28867 ganeti-watcher:486 DEBUG Pause has been set, exiting
1182 c71a1a3d Iustin Pop
  node1~# gnt-cluster watcher continue
1183 c71a1a3d Iustin Pop
  The watcher is no longer paused.
1184 c71a1a3d Iustin Pop
  node1~# ganeti-watcher -d
1185 c71a1a3d Iustin Pop
  2009-10-25 23:31:04,789:  pid=28976 ganeti-watcher:345 DEBUG Archived 0 jobs, left 0
1186 c71a1a3d Iustin Pop
  2009-10-25 23:31:05,884:  pid=28976 ganeti-watcher:280 DEBUG Got data from cluster, writing instance status file
1187 c71a1a3d Iustin Pop
  2009-10-25 23:31:06,061:  pid=28976 ganeti-watcher:150 DEBUG Data didn't change, just touching status file
1188 c71a1a3d Iustin Pop
  node1~# gnt-cluster watcher info
1189 c71a1a3d Iustin Pop
  The watcher is not paused.
1190 c71a1a3d Iustin Pop
  node1~#
1191 c71a1a3d Iustin Pop
1192 c71a1a3d Iustin Pop
The exact details of the argument to the ``pause`` command are available
1193 c71a1a3d Iustin Pop
in the manpage.
1194 c71a1a3d Iustin Pop
1195 c71a1a3d Iustin Pop
.. note:: this command only stores a local flag file, and if you
1196 c71a1a3d Iustin Pop
   failover the master, it will not have effect on the new master.
1197 c71a1a3d Iustin Pop
1198 6328fea3 Iustin Pop
Node auto-maintenance
1199 6328fea3 Iustin Pop
+++++++++++++++++++++
1200 6328fea3 Iustin Pop
1201 6328fea3 Iustin Pop
If the cluster parameter ``maintain_node_health`` is enabled (see the
1202 6328fea3 Iustin Pop
manpage for :command:`gnt-cluster`, the init and modify subcommands),
1203 6328fea3 Iustin Pop
then the following will happen automatically:
1204 6328fea3 Iustin Pop
1205 6328fea3 Iustin Pop
- the watcher will shutdown any instances running on offline nodes
1206 6328fea3 Iustin Pop
- the watcher will deactivate any DRBD devices on offline nodes
1207 6328fea3 Iustin Pop
1208 6328fea3 Iustin Pop
In the future, more actions are planned, so only enable this parameter
1209 6328fea3 Iustin Pop
if the nodes are completely dedicated to Ganeti; otherwise it might be
1210 6328fea3 Iustin Pop
possible to lose data due to auto-maintenance actions.
1211 6328fea3 Iustin Pop
1212 c71a1a3d Iustin Pop
Removing a cluster entirely
1213 c71a1a3d Iustin Pop
+++++++++++++++++++++++++++
1214 c71a1a3d Iustin Pop
1215 c71a1a3d Iustin Pop
The usual method to cleanup a cluster is to run ``gnt-cluster destroy``
1216 c71a1a3d Iustin Pop
however if the Ganeti installation is broken in any way then this will
1217 c71a1a3d Iustin Pop
not run.
1218 c71a1a3d Iustin Pop
1219 c71a1a3d Iustin Pop
It is possible in such a case to cleanup manually most if not all traces
1220 c71a1a3d Iustin Pop
of a cluster installation by following these steps on all of the nodes:
1221 c71a1a3d Iustin Pop
1222 c71a1a3d Iustin Pop
1. Shutdown all instances. This depends on the virtualisation method
1223 c71a1a3d Iustin Pop
   used (Xen, KVM, etc.):
1224 56c9a709 Iustin Pop
1225 56c9a709 Iustin Pop
  - Xen: run ``xm list`` and ``xm destroy`` on all the non-Domain-0
1226 56c9a709 Iustin Pop
    instances
1227 56c9a709 Iustin Pop
  - KVM: kill all the KVM processes
1228 56c9a709 Iustin Pop
  - chroot: kill all processes under the chroot mountpoints
1229 56c9a709 Iustin Pop
1230 c71a1a3d Iustin Pop
2. If using DRBD, shutdown all DRBD minors (which should by at this time
1231 c71a1a3d Iustin Pop
   no-longer in use by instances); on each node, run ``drbdsetup
1232 56c9a709 Iustin Pop
   /dev/drbdN down`` for each active DRBD minor.
1233 56c9a709 Iustin Pop
1234 c71a1a3d Iustin Pop
3. If using LVM, cleanup the Ganeti volume group; if only Ganeti created
1235 c71a1a3d Iustin Pop
   logical volumes (and you are not sharing the volume group with the
1236 c71a1a3d Iustin Pop
   OS, for example), then simply running ``lvremove -f xenvg`` (replace
1237 c71a1a3d Iustin Pop
   'xenvg' with your volume group name) should do the required cleanup.
1238 56c9a709 Iustin Pop
1239 56c9a709 Iustin Pop
4. If using file-based storage, remove recursively all files and
1240 56c9a709 Iustin Pop
   directories under your file-storage directory: ``rm -rf
1241 c71a1a3d Iustin Pop
   /srv/ganeti/file-storage/*`` replacing the path with the correct path
1242 c71a1a3d Iustin Pop
   for your cluster.
1243 56c9a709 Iustin Pop
1244 56c9a709 Iustin Pop
5. Stop the ganeti daemons (``/etc/init.d/ganeti stop``) and kill any
1245 56c9a709 Iustin Pop
   that remain alive (``pgrep ganeti`` and ``pkill ganeti``).
1246 56c9a709 Iustin Pop
1247 56c9a709 Iustin Pop
6. Remove the ganeti state directory (``rm -rf /var/lib/ganeti/*``),
1248 56c9a709 Iustin Pop
   replacing the path with the correct path for your installation.
1249 56c9a709 Iustin Pop
1250 56c9a709 Iustin Pop
On the master node, remove the cluster from the master-netdev (usually
1251 c71a1a3d Iustin Pop
``xen-br0`` for bridged mode, otherwise ``eth0`` or similar), by running
1252 c71a1a3d Iustin Pop
``ip a del $clusterip/32 dev xen-br0`` (use the correct cluster ip and
1253 c71a1a3d Iustin Pop
network device name).
1254 56c9a709 Iustin Pop
1255 56c9a709 Iustin Pop
At this point, the machines are ready for a cluster creation; in case
1256 c71a1a3d Iustin Pop
you want to remove Ganeti completely, you need to also undo some of the
1257 c71a1a3d Iustin Pop
SSH changes and log directories:
1258 56c9a709 Iustin Pop
1259 7faf5110 Michael Hanselmann
- ``rm -rf /var/log/ganeti /srv/ganeti`` (replace with the correct
1260 7faf5110 Michael Hanselmann
  paths)
1261 c71a1a3d Iustin Pop
- remove from ``/root/.ssh`` the keys that Ganeti added (check the
1262 c71a1a3d Iustin Pop
  ``authorized_keys`` and ``id_dsa`` files)
1263 56c9a709 Iustin Pop
- regenerate the host's SSH keys (check the OpenSSH startup scripts)
1264 56c9a709 Iustin Pop
- uninstall Ganeti
1265 56c9a709 Iustin Pop
1266 56c9a709 Iustin Pop
Otherwise, if you plan to re-create the cluster, you can just go ahead
1267 56c9a709 Iustin Pop
and rerun ``gnt-cluster init``.
1268 558fd122 Michael Hanselmann
1269 c71a1a3d Iustin Pop
Tags handling
1270 c71a1a3d Iustin Pop
-------------
1271 c71a1a3d Iustin Pop
1272 c71a1a3d Iustin Pop
The tags handling (addition, removal, listing) is similar for all the
1273 c71a1a3d Iustin Pop
objects that support it (instances, nodes, and the cluster).
1274 c71a1a3d Iustin Pop
1275 c71a1a3d Iustin Pop
Limitations
1276 c71a1a3d Iustin Pop
+++++++++++
1277 c71a1a3d Iustin Pop
1278 c71a1a3d Iustin Pop
Note that the set of characters present in a tag and the maximum tag
1279 c71a1a3d Iustin Pop
length are restricted. Currently the maximum length is 128 characters,
1280 c71a1a3d Iustin Pop
there can be at most 4096 tags per object, and the set of characters is
1281 bde65914 Iustin Pop
comprised by alphanumeric characters and additionally ``.+*/:@-``.
1282 c71a1a3d Iustin Pop
1283 c71a1a3d Iustin Pop
Operations
1284 c71a1a3d Iustin Pop
++++++++++
1285 c71a1a3d Iustin Pop
1286 c71a1a3d Iustin Pop
Tags can be added via ``add-tags``::
1287 c71a1a3d Iustin Pop
1288 c71a1a3d Iustin Pop
  gnt-instance add-tags INSTANCE a b c
1289 c71a1a3d Iustin Pop
  gnt-node add-tags INSTANCE a b c
1290 c71a1a3d Iustin Pop
  gnt-cluster add-tags a b c
1291 c71a1a3d Iustin Pop
1292 c71a1a3d Iustin Pop
1293 c71a1a3d Iustin Pop
The above commands add three tags to an instance, to a node and to the
1294 c71a1a3d Iustin Pop
cluster. Note that the cluster command only takes tags as arguments,
1295 c71a1a3d Iustin Pop
whereas the node and instance commands first required the node and
1296 c71a1a3d Iustin Pop
instance name.
1297 c71a1a3d Iustin Pop
1298 c71a1a3d Iustin Pop
Tags can also be added from a file, via the ``--from=FILENAME``
1299 c71a1a3d Iustin Pop
argument. The file is expected to contain one tag per line.
1300 c71a1a3d Iustin Pop
1301 c71a1a3d Iustin Pop
Tags can also be remove via a syntax very similar to the add one::
1302 c71a1a3d Iustin Pop
1303 c71a1a3d Iustin Pop
  gnt-instance remove-tags INSTANCE a b c
1304 c71a1a3d Iustin Pop
1305 c71a1a3d Iustin Pop
And listed via::
1306 c71a1a3d Iustin Pop
1307 c71a1a3d Iustin Pop
  gnt-instance list-tags
1308 c71a1a3d Iustin Pop
  gnt-node list-tags
1309 c71a1a3d Iustin Pop
  gnt-cluster list-tags
1310 c71a1a3d Iustin Pop
1311 c71a1a3d Iustin Pop
Global tag search
1312 c71a1a3d Iustin Pop
+++++++++++++++++
1313 c71a1a3d Iustin Pop
1314 c71a1a3d Iustin Pop
It is also possible to execute a global search on the all tags defined
1315 c71a1a3d Iustin Pop
in the cluster configuration, via a cluster command::
1316 c71a1a3d Iustin Pop
1317 c71a1a3d Iustin Pop
  gnt-cluster search-tags REGEXP
1318 c71a1a3d Iustin Pop
1319 c71a1a3d Iustin Pop
The parameter expected is a regular expression (see
1320 c71a1a3d Iustin Pop
:manpage:`regex(7)`). This will return all tags that match the search,
1321 c71a1a3d Iustin Pop
together with the object they are defined in (the names being show in a
1322 c71a1a3d Iustin Pop
hierarchical kind of way)::
1323 c71a1a3d Iustin Pop
1324 c71a1a3d Iustin Pop
  node1# gnt-cluster search-tags o
1325 c71a1a3d Iustin Pop
  /cluster foo
1326 c71a1a3d Iustin Pop
  /instances/instance1 owner:bar
1327 c71a1a3d Iustin Pop
1328 c71a1a3d Iustin Pop
1329 c71a1a3d Iustin Pop
Job operations
1330 c71a1a3d Iustin Pop
--------------
1331 c71a1a3d Iustin Pop
1332 c71a1a3d Iustin Pop
The various jobs submitted by the instance/node/cluster commands can be
1333 c71a1a3d Iustin Pop
examined, canceled and archived by various invocations of the
1334 c71a1a3d Iustin Pop
``gnt-job`` command.
1335 c71a1a3d Iustin Pop
1336 c71a1a3d Iustin Pop
First is the job list command::
1337 c71a1a3d Iustin Pop
1338 c71a1a3d Iustin Pop
  node1# gnt-job list
1339 c71a1a3d Iustin Pop
  17771 success INSTANCE_QUERY_DATA
1340 c71a1a3d Iustin Pop
  17773 success CLUSTER_VERIFY_DISKS
1341 c71a1a3d Iustin Pop
  17775 success CLUSTER_REPAIR_DISK_SIZES
1342 c71a1a3d Iustin Pop
  17776 error   CLUSTER_RENAME(cluster.example.com)
1343 c71a1a3d Iustin Pop
  17780 success CLUSTER_REDIST_CONF
1344 c71a1a3d Iustin Pop
  17792 success INSTANCE_REBOOT(instance1.example.com)
1345 c71a1a3d Iustin Pop
1346 c71a1a3d Iustin Pop
More detailed information about a job can be found via the ``info``
1347 c71a1a3d Iustin Pop
command::
1348 c71a1a3d Iustin Pop
1349 c71a1a3d Iustin Pop
  node1# gnt-job info 17776
1350 c71a1a3d Iustin Pop
  Job ID: 17776
1351 c71a1a3d Iustin Pop
    Status: error
1352 c71a1a3d Iustin Pop
    Received:         2009-10-25 23:18:02.180569
1353 c71a1a3d Iustin Pop
    Processing start: 2009-10-25 23:18:02.200335 (delta 0.019766s)
1354 c71a1a3d Iustin Pop
    Processing end:   2009-10-25 23:18:02.279743 (delta 0.079408s)
1355 c71a1a3d Iustin Pop
    Total processing time: 0.099174 seconds
1356 c71a1a3d Iustin Pop
    Opcodes:
1357 c71a1a3d Iustin Pop
      OP_CLUSTER_RENAME
1358 c71a1a3d Iustin Pop
        Status: error
1359 c71a1a3d Iustin Pop
        Processing start: 2009-10-25 23:18:02.200335
1360 c71a1a3d Iustin Pop
        Processing end:   2009-10-25 23:18:02.252282
1361 c71a1a3d Iustin Pop
        Input fields:
1362 c71a1a3d Iustin Pop
          name: cluster.example.com
1363 c71a1a3d Iustin Pop
        Result:
1364 c71a1a3d Iustin Pop
          OpPrereqError
1365 c71a1a3d Iustin Pop
          [Neither the name nor the IP address of the cluster has changed]
1366 c71a1a3d Iustin Pop
        Execution log:
1367 c71a1a3d Iustin Pop
1368 c71a1a3d Iustin Pop
During the execution of a job, it's possible to follow the output of a
1369 c71a1a3d Iustin Pop
job, similar to the log that one get from the ``gnt-`` commands, via the
1370 c71a1a3d Iustin Pop
watch command::
1371 c71a1a3d Iustin Pop
1372 c71a1a3d Iustin Pop
  node1# gnt-instance add --submit … instance1
1373 c71a1a3d Iustin Pop
  JobID: 17818
1374 c71a1a3d Iustin Pop
  node1# gnt-job watch 17818
1375 c71a1a3d Iustin Pop
  Output from job 17818 follows
1376 c71a1a3d Iustin Pop
  -----------------------------
1377 c71a1a3d Iustin Pop
  Mon Oct 26 00:22:48 2009  - INFO: Selected nodes for instance instance1 via iallocator dumb: node1, node2
1378 c71a1a3d Iustin Pop
  Mon Oct 26 00:22:49 2009 * creating instance disks...
1379 c71a1a3d Iustin Pop
  Mon Oct 26 00:22:52 2009 adding instance instance1 to cluster config
1380 c71a1a3d Iustin Pop
  Mon Oct 26 00:22:52 2009  - INFO: Waiting for instance instance1 to sync disks.
1381 c71a1a3d Iustin Pop
1382 e0897adf Michael Hanselmann
  Mon Oct 26 00:23:03 2009 creating os for instance instance1 on node node1
1383 c71a1a3d Iustin Pop
  Mon Oct 26 00:23:03 2009 * running the instance OS create scripts...
1384 c71a1a3d Iustin Pop
  Mon Oct 26 00:23:13 2009 * starting instance...
1385 c71a1a3d Iustin Pop
  node1#
1386 c71a1a3d Iustin Pop
1387 c71a1a3d Iustin Pop
This is useful if you need to follow a job's progress from multiple
1388 c71a1a3d Iustin Pop
terminals.
1389 c71a1a3d Iustin Pop
1390 c71a1a3d Iustin Pop
A job that has not yet started to run can be canceled::
1391 c71a1a3d Iustin Pop
1392 c71a1a3d Iustin Pop
  node1# gnt-job cancel 17810
1393 c71a1a3d Iustin Pop
1394 c71a1a3d Iustin Pop
But not one that has already started execution::
1395 c71a1a3d Iustin Pop
1396 c71a1a3d Iustin Pop
  node1# gnt-job cancel 17805
1397 c71a1a3d Iustin Pop
  Job 17805 is no longer waiting in the queue
1398 c71a1a3d Iustin Pop
1399 c71a1a3d Iustin Pop
There are two queues for jobs: the *current* and the *archive*
1400 c71a1a3d Iustin Pop
queue. Jobs are initially submitted to the current queue, and they stay
1401 c71a1a3d Iustin Pop
in that queue until they have finished execution (either successfully or
1402 89907375 Michael Hanselmann
not). At that point, they can be moved into the archive queue using e.g.
1403 89907375 Michael Hanselmann
``gnt-job autoarchive all``. The ``ganeti-watcher`` script will do this
1404 89907375 Michael Hanselmann
automatically 6 hours after a job is finished. The ``ganeti-cleaner``
1405 89907375 Michael Hanselmann
script will then remove archived the jobs from the archive directory
1406 c71a1a3d Iustin Pop
after three weeks.
1407 c71a1a3d Iustin Pop
1408 89907375 Michael Hanselmann
Note that ``gnt-job list`` only shows jobs in the current queue.
1409 89907375 Michael Hanselmann
Archived jobs can be viewed using ``gnt-job info <id>``.
1410 c71a1a3d Iustin Pop
1411 bde65914 Iustin Pop
Special Ganeti deployments
1412 bde65914 Iustin Pop
--------------------------
1413 bde65914 Iustin Pop
1414 bde65914 Iustin Pop
Since Ganeti 2.4, it is possible to extend the Ganeti deployment with
1415 bde65914 Iustin Pop
two custom scenarios: Ganeti inside Ganeti and multi-site model.
1416 bde65914 Iustin Pop
1417 bde65914 Iustin Pop
Running Ganeti under Ganeti
1418 bde65914 Iustin Pop
+++++++++++++++++++++++++++
1419 bde65914 Iustin Pop
1420 bde65914 Iustin Pop
It is sometimes useful to be able to use a Ganeti instance as a Ganeti
1421 bde65914 Iustin Pop
node (part of another cluster, usually). One example scenario is two
1422 bde65914 Iustin Pop
small clusters, where we want to have an additional master candidate
1423 bde65914 Iustin Pop
that holds the cluster configuration and can be used for helping with
1424 bde65914 Iustin Pop
the master voting process.
1425 bde65914 Iustin Pop
1426 bde65914 Iustin Pop
However, these Ganeti instance should not host instances themselves, and
1427 bde65914 Iustin Pop
should not be considered in the normal capacity planning, evacuation
1428 bde65914 Iustin Pop
strategies, etc. In order to accomplish this, mark these nodes as
1429 bde65914 Iustin Pop
non-``vm_capable``::
1430 bde65914 Iustin Pop
1431 bde65914 Iustin Pop
  node1# gnt-node modify --vm-capable=no node3
1432 bde65914 Iustin Pop
1433 bde65914 Iustin Pop
The vm_capable status can be listed as usual via ``gnt-node list``::
1434 bde65914 Iustin Pop
1435 bde65914 Iustin Pop
  node1# gnt-node list -oname,vm_capable
1436 bde65914 Iustin Pop
  Node  VMCapable
1437 bde65914 Iustin Pop
  node1 Y
1438 bde65914 Iustin Pop
  node2 Y
1439 bde65914 Iustin Pop
  node3 N
1440 bde65914 Iustin Pop
1441 bde65914 Iustin Pop
When this flag is set, the cluster will not do any operations that
1442 bde65914 Iustin Pop
relate to instances on such nodes, e.g. hypervisor operations,
1443 bde65914 Iustin Pop
disk-related operations, etc. Basically they will just keep the ssconf
1444 bde65914 Iustin Pop
files, and if master candidates the full configuration.
1445 bde65914 Iustin Pop
1446 bde65914 Iustin Pop
Multi-site model
1447 bde65914 Iustin Pop
++++++++++++++++
1448 bde65914 Iustin Pop
1449 bde65914 Iustin Pop
If Ganeti is deployed in multi-site model, with each site being a node
1450 bde65914 Iustin Pop
group (so that instances are not relocated across the WAN by mistake),
1451 bde65914 Iustin Pop
it is conceivable that either the WAN latency is high or that some sites
1452 bde65914 Iustin Pop
have a lower reliability than others. In this case, it doesn't make
1453 bde65914 Iustin Pop
sense to replicate the job information across all sites (or even outside
1454 bde65914 Iustin Pop
of a “central” node group), so it should be possible to restrict which
1455 bde65914 Iustin Pop
nodes can become master candidates via the auto-promotion algorithm.
1456 bde65914 Iustin Pop
1457 bde65914 Iustin Pop
Ganeti 2.4 introduces for this purpose a new ``master_capable`` flag,
1458 bde65914 Iustin Pop
which (when unset) prevents nodes from being marked as master
1459 bde65914 Iustin Pop
candidates, either manually or automatically.
1460 bde65914 Iustin Pop
1461 bde65914 Iustin Pop
As usual, the node modify operation can change this flag::
1462 bde65914 Iustin Pop
1463 bde65914 Iustin Pop
  node1# gnt-node modify --auto-promote --master-capable=no node3
1464 bde65914 Iustin Pop
  Fri Jan  7 06:23:07 2011  - INFO: Demoting from master candidate
1465 bde65914 Iustin Pop
  Fri Jan  7 06:23:08 2011  - INFO: Promoted nodes to master candidate role: node4
1466 bde65914 Iustin Pop
  Modified node node3
1467 bde65914 Iustin Pop
   - master_capable -> False
1468 bde65914 Iustin Pop
   - master_candidate -> False
1469 bde65914 Iustin Pop
1470 bde65914 Iustin Pop
And the node list operation will list this flag::
1471 bde65914 Iustin Pop
1472 bde65914 Iustin Pop
  node1# gnt-node list -oname,master_capable node1 node2 node3
1473 bde65914 Iustin Pop
  Node  MasterCapable
1474 bde65914 Iustin Pop
  node1 Y
1475 bde65914 Iustin Pop
  node2 Y
1476 bde65914 Iustin Pop
  node3 N
1477 bde65914 Iustin Pop
1478 bde65914 Iustin Pop
Note that marking a node both not ``vm_capable`` and not
1479 bde65914 Iustin Pop
``master_capable`` makes the node practically unusable from Ganeti's
1480 bde65914 Iustin Pop
point of view. Hence these two flags should be used probably in
1481 bde65914 Iustin Pop
contrast: some nodes will be only master candidates (master_capable but
1482 bde65914 Iustin Pop
not vm_capable), and other nodes will only hold instances (vm_capable
1483 bde65914 Iustin Pop
but not master_capable).
1484 bde65914 Iustin Pop
1485 bde65914 Iustin Pop
1486 c71a1a3d Iustin Pop
Ganeti tools
1487 c71a1a3d Iustin Pop
------------
1488 c71a1a3d Iustin Pop
1489 c71a1a3d Iustin Pop
Beside the usual ``gnt-`` and ``ganeti-`` commands which are provided
1490 c71a1a3d Iustin Pop
and installed in ``$prefix/sbin`` at install time, there are a couple of
1491 c71a1a3d Iustin Pop
other tools installed which are used seldom but can be helpful in some
1492 c71a1a3d Iustin Pop
cases.
1493 c71a1a3d Iustin Pop
1494 c71a1a3d Iustin Pop
lvmstrap
1495 c71a1a3d Iustin Pop
++++++++
1496 c71a1a3d Iustin Pop
1497 c71a1a3d Iustin Pop
The ``lvmstrap`` tool, introduced in :ref:`configure-lvm-label` section,
1498 c71a1a3d Iustin Pop
has two modes of operation:
1499 c71a1a3d Iustin Pop
1500 c71a1a3d Iustin Pop
- ``diskinfo`` shows the discovered disks on the system and their status
1501 c71a1a3d Iustin Pop
- ``create`` takes all not-in-use disks and creates a volume group out
1502 c71a1a3d Iustin Pop
  of them
1503 c71a1a3d Iustin Pop
1504 c71a1a3d Iustin Pop
.. warning:: The ``create`` argument to this command causes data-loss!
1505 c71a1a3d Iustin Pop
1506 c71a1a3d Iustin Pop
cfgupgrade
1507 c71a1a3d Iustin Pop
++++++++++
1508 c71a1a3d Iustin Pop
1509 c71a1a3d Iustin Pop
The ``cfgupgrade`` tools is used to upgrade between major (and minor)
1510 c71a1a3d Iustin Pop
Ganeti versions. Point-releases are usually transparent for the admin.
1511 c71a1a3d Iustin Pop
1512 c71a1a3d Iustin Pop
More information about the upgrade procedure is listed on the wiki at
1513 c71a1a3d Iustin Pop
http://code.google.com/p/ganeti/wiki/UpgradeNotes.
1514 c71a1a3d Iustin Pop
1515 b5672ea0 Iustin Pop
There is also a script designed to upgrade from Ganeti 1.2 to 2.0,
1516 b5672ea0 Iustin Pop
called ``cfgupgrade12``.
1517 b5672ea0 Iustin Pop
1518 c71a1a3d Iustin Pop
cfgshell
1519 c71a1a3d Iustin Pop
++++++++
1520 c71a1a3d Iustin Pop
1521 c71a1a3d Iustin Pop
.. note:: This command is not actively maintained; make sure you backup
1522 c71a1a3d Iustin Pop
   your configuration before using it
1523 c71a1a3d Iustin Pop
1524 c71a1a3d Iustin Pop
This can be used as an alternative to direct editing of the
1525 c71a1a3d Iustin Pop
main configuration file if Ganeti has a bug and prevents you, for
1526 c71a1a3d Iustin Pop
example, from removing an instance or a node from the configuration
1527 c71a1a3d Iustin Pop
file.
1528 c71a1a3d Iustin Pop
1529 c71a1a3d Iustin Pop
.. _burnin-label:
1530 c71a1a3d Iustin Pop
1531 c71a1a3d Iustin Pop
burnin
1532 c71a1a3d Iustin Pop
++++++
1533 c71a1a3d Iustin Pop
1534 c71a1a3d Iustin Pop
.. warning:: This command will erase existing instances if given as
1535 c71a1a3d Iustin Pop
   arguments!
1536 c71a1a3d Iustin Pop
1537 c71a1a3d Iustin Pop
This tool is used to exercise either the hardware of machines or
1538 c71a1a3d Iustin Pop
alternatively the Ganeti software. It is safe to run on an existing
1539 c71a1a3d Iustin Pop
cluster **as long as you don't pass it existing instance names**.
1540 c71a1a3d Iustin Pop
1541 c71a1a3d Iustin Pop
The command will, by default, execute a comprehensive set of operations
1542 c71a1a3d Iustin Pop
against a list of instances, these being:
1543 c71a1a3d Iustin Pop
1544 c71a1a3d Iustin Pop
- creation
1545 c71a1a3d Iustin Pop
- disk replacement (for redundant instances)
1546 c71a1a3d Iustin Pop
- failover and migration (for redundant instances)
1547 c71a1a3d Iustin Pop
- move (for non-redundant instances)
1548 c71a1a3d Iustin Pop
- disk growth
1549 c71a1a3d Iustin Pop
- add disks, remove disk
1550 c71a1a3d Iustin Pop
- add NICs, remove NICs
1551 c71a1a3d Iustin Pop
- export and then import
1552 c71a1a3d Iustin Pop
- rename
1553 c71a1a3d Iustin Pop
- reboot
1554 c71a1a3d Iustin Pop
- shutdown/startup
1555 c71a1a3d Iustin Pop
- and finally removal of the test instances
1556 c71a1a3d Iustin Pop
1557 c71a1a3d Iustin Pop
Executing all these operations will test that the hardware performs
1558 c71a1a3d Iustin Pop
well: the creation, disk replace, disk add and disk growth will exercise
1559 c71a1a3d Iustin Pop
the storage and network; the migrate command will test the memory of the
1560 c71a1a3d Iustin Pop
systems. Depending on the passed options, it can also test that the
1561 c71a1a3d Iustin Pop
instance OS definitions are executing properly the rename, import and
1562 c71a1a3d Iustin Pop
export operations.
1563 c71a1a3d Iustin Pop
1564 ea5fd476 Iustin Pop
sanitize-config
1565 ea5fd476 Iustin Pop
+++++++++++++++
1566 ea5fd476 Iustin Pop
1567 ea5fd476 Iustin Pop
This tool takes the Ganeti configuration and outputs a "sanitized"
1568 ea5fd476 Iustin Pop
version, by randomizing or clearing:
1569 ea5fd476 Iustin Pop
1570 ea5fd476 Iustin Pop
- DRBD secrets and cluster public key (always)
1571 ea5fd476 Iustin Pop
- host names (optional)
1572 ea5fd476 Iustin Pop
- IPs (optional)
1573 ea5fd476 Iustin Pop
- OS names (optional)
1574 ea5fd476 Iustin Pop
- LV names (optional, only useful for very old clusters which still have
1575 ea5fd476 Iustin Pop
  instances whose LVs are based on the instance name)
1576 ea5fd476 Iustin Pop
1577 ea5fd476 Iustin Pop
By default, all optional items are activated except the LV name
1578 ea5fd476 Iustin Pop
randomization. When passing ``--no-randomization``, which disables the
1579 ea5fd476 Iustin Pop
optional items (i.e. just the DRBD secrets and cluster public keys are
1580 ea5fd476 Iustin Pop
randomized), the resulting file can be used as a safety copy of the
1581 ea5fd476 Iustin Pop
cluster config - while not trivial, the layout of the cluster can be
1582 ea5fd476 Iustin Pop
recreated from it and if the instance disks have not been lost it
1583 ea5fd476 Iustin Pop
permits recovery from the loss of all master candidates.
1584 ea5fd476 Iustin Pop
1585 e0897adf Michael Hanselmann
move-instance
1586 e0897adf Michael Hanselmann
+++++++++++++
1587 e0897adf Michael Hanselmann
1588 e0897adf Michael Hanselmann
See :doc:`separate documentation for move-instance <move-instance>`.
1589 e0897adf Michael Hanselmann
1590 e0897adf Michael Hanselmann
.. TODO: document cluster-merge tool
1591 e0897adf Michael Hanselmann
1592 ea5fd476 Iustin Pop
1593 c71a1a3d Iustin Pop
Other Ganeti projects
1594 c71a1a3d Iustin Pop
---------------------
1595 c71a1a3d Iustin Pop
1596 1ebe6dbd Iustin Pop
Below is a list (which might not be up-to-date) of additional projects
1597 1ebe6dbd Iustin Pop
that can be useful in a Ganeti deployment. They can be downloaded from
1598 1ebe6dbd Iustin Pop
the project site (http://code.google.com/p/ganeti/) and the repositories
1599 1ebe6dbd Iustin Pop
are also on the project git site (http://git.ganeti.org).
1600 c71a1a3d Iustin Pop
1601 c71a1a3d Iustin Pop
NBMA tools
1602 c71a1a3d Iustin Pop
++++++++++
1603 c71a1a3d Iustin Pop
1604 c71a1a3d Iustin Pop
The ``ganeti-nbma`` software is designed to allow instances to live on a
1605 c71a1a3d Iustin Pop
separate, virtual network from the nodes, and in an environment where
1606 c71a1a3d Iustin Pop
nodes are not guaranteed to be able to reach each other via multicasting
1607 c71a1a3d Iustin Pop
or broadcasting. For more information see the README in the source
1608 c71a1a3d Iustin Pop
archive.
1609 c71a1a3d Iustin Pop
1610 c71a1a3d Iustin Pop
ganeti-htools
1611 c71a1a3d Iustin Pop
+++++++++++++
1612 c71a1a3d Iustin Pop
1613 1ebe6dbd Iustin Pop
Before Ganeti version 2.5, this was a standalone project; since that
1614 1ebe6dbd Iustin Pop
version it is integrated into the Ganeti codebase (see
1615 1ebe6dbd Iustin Pop
:doc:`install-quick` for instructions on how to enable it). If you run
1616 1ebe6dbd Iustin Pop
an older Ganeti version, you will have to download and build it
1617 1ebe6dbd Iustin Pop
separately.
1618 c71a1a3d Iustin Pop
1619 c71a1a3d Iustin Pop
For more information and installation instructions, see the README file
1620 c71a1a3d Iustin Pop
in the source archive.
1621 c71a1a3d Iustin Pop
1622 558fd122 Michael Hanselmann
.. vim: set textwidth=72 :
1623 c71a1a3d Iustin Pop
.. Local Variables:
1624 c71a1a3d Iustin Pop
.. mode: rst
1625 c71a1a3d Iustin Pop
.. fill-column: 72
1626 c71a1a3d Iustin Pop
.. End: