Statistics
| Branch: | Tag: | Revision:

root / INSTALL @ 1fa2c40b

History | View | Annotate | Download (9.6 kB)

1 c27ba1cc Michael Hanselmann
Ganeti quick installation guide
2 c27ba1cc Michael Hanselmann
===============================
3 4096472d Iustin Pop
4 c27ba1cc Michael Hanselmann
Please note that a more detailed installation procedure is described in
5 c27ba1cc Michael Hanselmann
the :doc:`install`. A glossary of terms can be found in the
6 c27ba1cc Michael Hanselmann
:doc:`glossary`.
7 4096472d Iustin Pop
8 4096472d Iustin Pop
9 bd785ecd Michael Hanselmann
Software Requirements
10 c27ba1cc Michael Hanselmann
---------------------
11 a8083063 Iustin Pop
12 727ee1ec Iustin Pop
.. highlight:: shell-example
13 727ee1ec Iustin Pop
14 a8083063 Iustin Pop
Before installing, please verify that you have the following programs:
15 c27ba1cc Michael Hanselmann
16 c4b2b2e2 Guido Trotter
- `Xen Hypervisor <http://www.xen.org/>`_, version 3.0 or above, if
17 c4b2b2e2 Guido Trotter
  running on Xen
18 c4b2b2e2 Guido Trotter
- `KVM Hypervisor <http://www.linux-kvm.org>`_, version 72 or above, if
19 c4b2b2e2 Guido Trotter
  running on KVM. In order to use advanced features, such as live
20 c4b2b2e2 Guido Trotter
  migration, virtio, etc, an even newer version is recommended (qemu-kvm
21 727ee1ec Iustin Pop
  versions 0.11.X and above have shown good behavior).
22 c27ba1cc Michael Hanselmann
- `DRBD <http://www.drbd.org/>`_, kernel module and userspace utils,
23 727ee1ec Iustin Pop
  version 8.0.7 or above; note that Ganeti doesn't yet support version 8.4
24 727ee1ec Iustin Pop
- `RBD <http://ceph.newdream.net/>`_, kernel modules
25 727ee1ec Iustin Pop
  (``rbd.ko``/``libceph.ko``) and userspace utils (``ceph-common``)
26 c27ba1cc Michael Hanselmann
- `LVM2 <http://sourceware.org/lvm2/>`_
27 c27ba1cc Michael Hanselmann
- `OpenSSH <http://www.openssh.com/portable.html>`_
28 c27ba1cc Michael Hanselmann
- `bridge utilities <http://www.linuxfoundation.org/en/Net:Bridge>`_
29 c27ba1cc Michael Hanselmann
- `iproute2 <http://www.linuxfoundation.org/en/Net:Iproute2>`_
30 c27ba1cc Michael Hanselmann
- `arping <http://www.skbuff.net/iputils/>`_ (part of iputils)
31 69affe73 Manuel Franceschini
- `ndisc6 <http://www.remlab.net/ndisc6/>`_ (if using IPv6)
32 c27ba1cc Michael Hanselmann
- `Python <http://www.python.org/>`_, version 2.4 or above, not 3.0
33 c27ba1cc Michael Hanselmann
- `Python OpenSSL bindings <http://pyopenssl.sourceforge.net/>`_
34 c27ba1cc Michael Hanselmann
- `simplejson Python module <http://code.google.com/p/simplejson/>`_
35 7578ab0a Michael Hanselmann
- `pyparsing Python module <http://pyparsing.wikispaces.com/>`_, version
36 7578ab0a Michael Hanselmann
  1.4.6 or above
37 c27ba1cc Michael Hanselmann
- `pyinotify Python module <http://trac.dbzteam.org/pyinotify/>`_
38 2a7c3583 Michael Hanselmann
- `PycURL Python module <http://pycurl.sourceforge.net/>`_
39 b447ab51 Luca Bigliardi
- `ctypes Python module
40 b447ab51 Luca Bigliardi
  <http://starship.python.net/crew/theller/ctypes/>`_, if running on
41 b447ab51 Luca Bigliardi
  python 2.4 (optional, used for node daemon memory locking)
42 e90739d6 Michael Hanselmann
- `socat <http://www.dest-unreach.org/socat/>`_, see :ref:`note
43 e90739d6 Michael Hanselmann
  <socat-note>` below
44 78062de9 Michael Hanselmann
- `Paramiko <http://www.lag.net/paramiko/>`_, if you want to use
45 78062de9 Michael Hanselmann
  ``ganeti-listrunner``
46 0cd2fe76 Tsachy Shacham
- `affinity Python module <http://pypi.python.org/pypi/affinity/0.1.0>`_,
47 0cd2fe76 Tsachy Shacham
  optional python package for supporting CPU pinning under KVM
48 daa4dcc1 Agata Murawska
- `ElementTree Python module <http://effbot.org/zone/element-index.htm>`_,
49 fc6075dd Agata Murawska
  if running on python 2.4 (optional, used by the ``ovfconverter`` tool)
50 727ee1ec Iustin Pop
- `qemu-img <http://qemu.org/>`_, if you want to use ``ovfconverter``
51 d9eefcfa Andrea Spadaccini
- `fping <http://fping.sourceforge.net/>`_
52 c27ba1cc Michael Hanselmann
53 c27ba1cc Michael Hanselmann
These programs are supplied as part of most Linux distributions, so
54 c27ba1cc Michael Hanselmann
usually they can be installed via the standard package manager. Also
55 c27ba1cc Michael Hanselmann
many of them will already be installed on a standard machine. On
56 c27ba1cc Michael Hanselmann
Debian/Ubuntu, you can use this command line to install all required
57 7ed400f0 Stratos Psomadakis
packages, except for RBD, DRBD and Xen::
58 c27ba1cc Michael Hanselmann
59 c27ba1cc Michael Hanselmann
  $ apt-get install lvm2 ssh bridge-utils iproute iputils-arping \
60 69affe73 Manuel Franceschini
                    ndisc6 python python-pyopenssl openssl \
61 69affe73 Manuel Franceschini
                    python-pyparsing python-simplejson \
62 fc6075dd Agata Murawska
                    python-pyinotify python-pycurl socat fping
63 fc6075dd Agata Murawska
64 fc6075dd Agata Murawska
Note that this does not install optional packages::
65 fc6075dd Agata Murawska
66 fc6075dd Agata Murawska
  $ apt-get install python-paramiko python-affinity qemu-img
67 fc6075dd Agata Murawska
68 fc6075dd Agata Murawska
If some of the python packages are not available in your system,
69 fc6075dd Agata Murawska
you can try installing them using ``easy_install`` command.
70 fc6075dd Agata Murawska
For example::
71 fc6075dd Agata Murawska
72 fc6075dd Agata Murawska
  $ apt-get install python-setuptools
73 fc6075dd Agata Murawska
  $ cd / && sudo easy_install \
74 fc6075dd Agata Murawska
            affinity
75 fc6075dd Agata Murawska
76 c27ba1cc Michael Hanselmann
77 aa9f166a René Nussbaumer
On Fedora to install all required packages except RBD, DRBD and Xen::
78 aa9f166a René Nussbaumer
79 aa9f166a René Nussbaumer
  $ yum install openssh openssh-clients bridge-utils iproute ndisc6 \
80 aa9f166a René Nussbaumer
                pyOpenSSL pyparsing python-simplejson python-inotify \
81 fc6075dd Agata Murawska
                python-lxm socat fping
82 fc6075dd Agata Murawska
83 fc6075dd Agata Murawska
For optional packages use the command::
84 aa9f166a René Nussbaumer
85 fc6075dd Agata Murawska
  $ yum install python-paramiko python-affinity qemu-img
86 aa9f166a René Nussbaumer
87 727ee1ec Iustin Pop
If you want to build from source, please see doc/devnotes.rst for more
88 727ee1ec Iustin Pop
dependencies.
89 727ee1ec Iustin Pop
90 727ee1ec Iustin Pop
.. _socat-note:
91 727ee1ec Iustin Pop
.. note::
92 727ee1ec Iustin Pop
  Ganeti's import/export functionality uses ``socat`` with OpenSSL for
93 727ee1ec Iustin Pop
  transferring data between nodes. By default, OpenSSL 0.9.8 and above
94 727ee1ec Iustin Pop
  employ transparent compression of all data using zlib if supported by
95 727ee1ec Iustin Pop
  both sides of a connection. In cases where a lot of data is
96 727ee1ec Iustin Pop
  transferred, this can lead to an increased CPU usage. Additionally,
97 727ee1ec Iustin Pop
  Ganeti already compresses all data using ``gzip`` where it makes sense
98 727ee1ec Iustin Pop
  (for inter-cluster instance moves).
99 727ee1ec Iustin Pop
100 727ee1ec Iustin Pop
  To remedey this situation, patches implementing a new ``socat`` option
101 727ee1ec Iustin Pop
  for disabling OpenSSL compression have been contributed and will
102 727ee1ec Iustin Pop
  likely be included in the next feature release. Until then, users or
103 727ee1ec Iustin Pop
  distributions need to apply the patches on their own.
104 727ee1ec Iustin Pop
105 727ee1ec Iustin Pop
  Ganeti will use the option if it's detected by the ``configure``
106 2ed0e208 Iustin Pop
  script; auto-detection can be disabled by explicitly passing
107 727ee1ec Iustin Pop
  ``--enable-socat-compress`` (use the option to disable compression) or
108 727ee1ec Iustin Pop
  ``--disable-socat-compress`` (don't use the option).
109 727ee1ec Iustin Pop
110 727ee1ec Iustin Pop
  The patches and more information can be found on
111 727ee1ec Iustin Pop
  http://www.dest-unreach.org/socat/contrib/socat-opensslcompress.html.
112 727ee1ec Iustin Pop
113 727ee1ec Iustin Pop
Haskell requirements
114 727ee1ec Iustin Pop
~~~~~~~~~~~~~~~~~~~~
115 727ee1ec Iustin Pop
116 21a5e56c Iustin Pop
Starting with Ganeti 2.7, the Haskell GHC compiler and a few base
117 21a5e56c Iustin Pop
libraries are required in order to build Ganeti (but not to run and
118 21a5e56c Iustin Pop
deploy Ganeti on production machines). More specifically:
119 77a180f6 Iustin Pop
120 7345b69b Iustin Pop
- `GHC <http://www.haskell.org/ghc/>`_ version 6.12 or higher
121 77a180f6 Iustin Pop
- or even better, `The Haskell Platform
122 77a180f6 Iustin Pop
  <http://hackage.haskell.org/platform/>`_ which gives you a simple way
123 77a180f6 Iustin Pop
  to bootstrap Haskell
124 77a180f6 Iustin Pop
- `json <http://hackage.haskell.org/package/json>`_, a JSON library
125 77a180f6 Iustin Pop
- `network <http://hackage.haskell.org/package/network>`_, a basic
126 77a180f6 Iustin Pop
  network library
127 ee041788 Iustin Pop
- `parallel <http://hackage.haskell.org/package/parallel>`_, a parallel
128 ee041788 Iustin Pop
  programming library (note: tested with up to version 3.x)
129 e821050d Iustin Pop
- `bytestring <http://hackage.haskell.org/package/bytestring>`_ and
130 e821050d Iustin Pop
  `utf8-string <http://hackage.haskell.org/package/utf8-string>`_
131 e821050d Iustin Pop
  libraries; these usually come with the GHC compiler
132 21a5e56c Iustin Pop
- `deepseq <http://hackage.haskell.org/package/deepseq>`_
133 77a180f6 Iustin Pop
134 8a65c02b Iustin Pop
Some of these are also available as package in Debian/Ubuntu::
135 77a180f6 Iustin Pop
136 77a180f6 Iustin Pop
  $ apt-get install ghc6 libghc6-json-dev libghc6-network-dev \
137 21a5e56c Iustin Pop
                    libghc6-parallel-dev libghc6-deepseq-dev
138 aa9f166a René Nussbaumer
139 21a5e56c Iustin Pop
Or in newer versions of these distributions (using GHC 7.x)::
140 aa9f166a René Nussbaumer
141 21a5e56c Iustin Pop
  $ apt-get install ghc libghc-json-dev libghc-network-dev \
142 21a5e56c Iustin Pop
                    libghc-parallel-dev  libghc-deepseq-dev \
143 21a5e56c Iustin Pop
                    libghc-utf8-string-dev
144 aa9f166a René Nussbaumer
145 21a5e56c Iustin Pop
In Fedora, they are available via packages as well::
146 ee041788 Iustin Pop
147 21a5e56c Iustin Pop
  $ yum install ghc ghc-json-devel ghc-network-devel \
148 21a5e56c Iustin Pop
                    ghc-parallel-devel ghc-deepseq-devel
149 ee041788 Iustin Pop
150 fc6075dd Agata Murawska
If using a distribution which does not provide them, first install
151 21a5e56c Iustin Pop
the Haskell platform. You can also install ``cabal`` manually::
152 fc6075dd Agata Murawska
153 fc6075dd Agata Murawska
  $ apt-get install cabal-install
154 fc6075dd Agata Murawska
155 fc6075dd Agata Murawska
Then install the additional libraries via
156 727ee1ec Iustin Pop
``cabal``::
157 727ee1ec Iustin Pop
158 21a5e56c Iustin Pop
  $ cabal install json network parallel utf8-string
159 727ee1ec Iustin Pop
160 1ebe6dbd Iustin Pop
The compilation of the htools components is automatically enabled when
161 1ebe6dbd Iustin Pop
the compiler and the requisite libraries are found. You can use the
162 1ebe6dbd Iustin Pop
``--enable-htools`` configure flag to force the selection (at which
163 1ebe6dbd Iustin Pop
point ``./configure`` will fail if it doesn't find the prerequisites).
164 1ebe6dbd Iustin Pop
165 5cd0d9c0 Iustin Pop
166 21a5e56c Iustin Pop
Haskell optional features
167 21a5e56c Iustin Pop
~~~~~~~~~~~~~~~~~~~~~~~~~
168 21a5e56c Iustin Pop
169 21a5e56c Iustin Pop
Optionally, more functionality can be enabled if your build machine has
170 21a5e56c Iustin Pop
a few more Haskell libraries enabled: RAPI access to remote cluster from
171 35c6e63d Michele Tartara
htools (``--enable-htools-rapi``), the ``ganeti-confd``
172 35c6e63d Michele Tartara
daemon (``--enable-confd``) and the monitoring agent
173 35c6e63d Michele Tartara
(``--enable-monitoring``). The list of extra dependencies for these is:
174 21a5e56c Iustin Pop
175 21a5e56c Iustin Pop
- `curl <http://hackage.haskell.org/package/curl>`_, tested with
176 21a5e56c Iustin Pop
  versions 1.3.4 and above
177 727ee1ec Iustin Pop
- `hslogger <http://software.complete.org/hslogger>`_, version 1.1 and
178 727ee1ec Iustin Pop
  above (note that Debian Squeeze only has version 1.0.9)
179 727ee1ec Iustin Pop
- `Crypto <http://hackage.haskell.org/package/Crypto>`_, tested with
180 727ee1ec Iustin Pop
  version 4.2.4
181 727ee1ec Iustin Pop
- `text <http://hackage.haskell.org/package/text>`_
182 e0e3586a Agata Murawska
- `hinotify <http://hackage.haskell.org/package/hinotify>`_
183 21a5e56c Iustin Pop
- `regex-pcre <http://hackage.haskell.org/package/regex-pcre>`_,
184 21a5e56c Iustin Pop
  bindings for the ``pcre`` library
185 35c6e63d Michele Tartara
- `attoparsec <http://hackage.haskell.org/package/attoparsec>`_
186 e90739d6 Michael Hanselmann
187 21a5e56c Iustin Pop
These libraries are available in Debian Wheezy (but not in Squeeze, with
188 21a5e56c Iustin Pop
the exception of curl), so you can use either apt::
189 e90739d6 Michael Hanselmann
190 e0e3586a Agata Murawska
  $ apt-get install libghc-hslogger-dev libghc-crypto-dev libghc-text-dev \
191 35c6e63d Michele Tartara
                    libghc-hinotify-dev libghc-regex-pcre-dev libghc-curl-dev \
192 35c6e63d Michele Tartara
                    libghc-attoparsec-dev
193 e90739d6 Michael Hanselmann
194 727ee1ec Iustin Pop
or ``cabal``::
195 727ee1ec Iustin Pop
196 35c6e63d Michele Tartara
  $ cabal install hslogger Crypto text hinotify regex-pcre curl \
197 35c6e63d Michele Tartara
                  attoparsec
198 e90739d6 Michael Hanselmann
199 727ee1ec Iustin Pop
to install them.
200 bd785ecd Michael Hanselmann
201 21a5e56c Iustin Pop
The most recent Fedora doesn't provide ``curl``, ``crypto``,
202 21a5e56c Iustin Pop
``inotify``. So these need to be installed using ``cabal``, if
203 21a5e56c Iustin Pop
desired. The other packages can be installed via ``yum``::
204 21a5e56c Iustin Pop
205 21a5e56c Iustin Pop
  $ yum install ghc-hslogger-devel ghc-text-devel \
206 21a5e56c Iustin Pop
                ghc-regex-pcre-devel
207 21a5e56c Iustin Pop
208 fc6075dd Agata Murawska
.. _cabal-note:
209 fc6075dd Agata Murawska
.. note::
210 fc6075dd Agata Murawska
  If one of the cabal packages fails to install due to unfulfilled
211 fc6075dd Agata Murawska
  dependencies, you can try enabling symlinks in ``~/.cabal/config``.
212 fc6075dd Agata Murawska
213 fc6075dd Agata Murawska
  Make sure that your ``~/.cabal/bin`` directory (or whatever else
214 fc6075dd Agata Murawska
  is defined as ``bindir``) is in your ``PATH``.
215 fc6075dd Agata Murawska
216 bd785ecd Michael Hanselmann
Installation of the software
217 c27ba1cc Michael Hanselmann
----------------------------
218 c27ba1cc Michael Hanselmann
219 c27ba1cc Michael Hanselmann
To install, simply run the following command::
220 a8083063 Iustin Pop
221 727ee1ec Iustin Pop
  $ ./configure --localstatedir=/var --sysconfdir=/etc && \
222 727ee1ec Iustin Pop
    make && \
223 727ee1ec Iustin Pop
    make install
224 a8083063 Iustin Pop
225 c27ba1cc Michael Hanselmann
This will install the software under ``/usr/local``. You then need to
226 c27ba1cc Michael Hanselmann
copy ``doc/examples/ganeti.initd`` to ``/etc/init.d/ganeti`` and
227 c27ba1cc Michael Hanselmann
integrate it into your boot sequence (``chkconfig``, ``update-rc.d``,
228 c27ba1cc Michael Hanselmann
etc.).
229 a8083063 Iustin Pop
230 bd785ecd Michael Hanselmann
231 a8083063 Iustin Pop
Cluster initialisation
232 c27ba1cc Michael Hanselmann
----------------------
233 a8083063 Iustin Pop
234 c27ba1cc Michael Hanselmann
Before initialising the cluster, on each node you need to create the
235 c27ba1cc Michael Hanselmann
following directories:
236 a8083063 Iustin Pop
237 c27ba1cc Michael Hanselmann
- ``/etc/ganeti``
238 c27ba1cc Michael Hanselmann
- ``/var/lib/ganeti``
239 c27ba1cc Michael Hanselmann
- ``/var/log/ganeti``
240 c27ba1cc Michael Hanselmann
- ``/srv/ganeti``
241 c27ba1cc Michael Hanselmann
- ``/srv/ganeti/os``
242 c27ba1cc Michael Hanselmann
- ``/srv/ganeti/export``
243 a8083063 Iustin Pop
244 a8083063 Iustin Pop
After this, use ``gnt-cluster init``.
245 c27ba1cc Michael Hanselmann
246 c27ba1cc Michael Hanselmann
.. vim: set textwidth=72 syntax=rst :
247 c27ba1cc Michael Hanselmann
.. Local Variables:
248 c27ba1cc Michael Hanselmann
.. mode: rst
249 c27ba1cc Michael Hanselmann
.. fill-column: 72
250 c27ba1cc Michael Hanselmann
.. End: