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