Statistics
| Branch: | Tag: | Revision:

root / docs / quick-install-admin-guide.rst @ 5135245b

History | View | Annotate | Download (80 kB)

1 bdb83fd6 cven
.. _quick-install-admin-guide:
2 bdb83fd6 cven
3 454dca28 Constantinos Venetsanopoulos
Administrator's Installation Guide
4 454dca28 Constantinos Venetsanopoulos
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5 a96ec00f Constantinos Venetsanopoulos
6 454dca28 Constantinos Venetsanopoulos
This is the Administrator's installation guide.
7 a96ec00f Constantinos Venetsanopoulos
8 a96ec00f Constantinos Venetsanopoulos
It describes how to install the whole synnefo stack on two (2) physical nodes,
9 a96ec00f Constantinos Venetsanopoulos
with minimum configuration. It installs synnefo from Debian packages, and
10 a96ec00f Constantinos Venetsanopoulos
assumes the nodes run Debian Squeeze. After successful installation, you will
11 a96ec00f Constantinos Venetsanopoulos
have the following services running:
12 a96ec00f Constantinos Venetsanopoulos
13 d587329c Konstantinos Tompoulidis
    * Identity Management (Astakos)
14 e5d8df8c Constantinos Venetsanopoulos
    * Object Storage Service (Pithos)
15 d587329c Konstantinos Tompoulidis
    * Compute Service (Cyclades)
16 73ebcd68 Constantinos Venetsanopoulos
    * Image Service (part of Cyclades)
17 73ebcd68 Constantinos Venetsanopoulos
    * Network Service (part of Cyclades)
18 a96ec00f Constantinos Venetsanopoulos
19 a96ec00f Constantinos Venetsanopoulos
and a single unified Web UI to manage them all.
20 a96ec00f Constantinos Venetsanopoulos
21 a96ec00f Constantinos Venetsanopoulos
The Volume Storage Service (Archipelago) and the Billing Service (Aquarium) are
22 a96ec00f Constantinos Venetsanopoulos
not released yet.
23 a96ec00f Constantinos Venetsanopoulos
24 e5d8df8c Constantinos Venetsanopoulos
If you just want to install the Object Storage Service (Pithos), follow the
25 e5d8df8c Constantinos Venetsanopoulos
guide and just stop after the "Testing of Pithos" section.
26 a96ec00f Constantinos Venetsanopoulos
27 a96ec00f Constantinos Venetsanopoulos
28 a96ec00f Constantinos Venetsanopoulos
Installation of Synnefo / Introduction
29 a96ec00f Constantinos Venetsanopoulos
======================================
30 a96ec00f Constantinos Venetsanopoulos
31 73ebcd68 Constantinos Venetsanopoulos
We will install the services with the above list's order. The last three
32 73ebcd68 Constantinos Venetsanopoulos
services will be installed in a single step (at the end), because at the moment
33 73ebcd68 Constantinos Venetsanopoulos
they are contained in the same software component (Cyclades). Furthermore, we
34 e5d8df8c Constantinos Venetsanopoulos
will install all services in the first physical node, except Pithos which will
35 73ebcd68 Constantinos Venetsanopoulos
be installed in the second, due to a conflict between the snf-pithos-app and
36 73ebcd68 Constantinos Venetsanopoulos
snf-cyclades-app component (scheduled to be fixed in the next version).
37 a96ec00f Constantinos Venetsanopoulos
38 a96ec00f Constantinos Venetsanopoulos
For the rest of the documentation we will refer to the first physical node as
39 a96ec00f Constantinos Venetsanopoulos
"node1" and the second as "node2". We will also assume that their domain names
40 0c068fc6 marioskogias
are "node1.example.com" and "node2.example.com" and their public IPs are "4.3.2.1" and
41 0c068fc6 marioskogias
"4.3.2.2" respectively. It is important that the two machines are under the same domain name.
42 0c068fc6 marioskogias
In case you choose to follow a private installation you will need to
43 0c068fc6 marioskogias
set up a private dns server, using dnsmasq for example. See node1 below for more.
44 a96ec00f Constantinos Venetsanopoulos
45 a96ec00f Constantinos Venetsanopoulos
General Prerequisites
46 a96ec00f Constantinos Venetsanopoulos
=====================
47 a96ec00f Constantinos Venetsanopoulos
48 a96ec00f Constantinos Venetsanopoulos
These are the general synnefo prerequisites, that you need on node1 and node2
49 e5d8df8c Constantinos Venetsanopoulos
and are related to all the services (Astakos, Pithos, Cyclades).
50 a96ec00f Constantinos Venetsanopoulos
51 a96ec00f Constantinos Venetsanopoulos
To be able to download all synnefo components you need to add the following
52 a96ec00f Constantinos Venetsanopoulos
lines in your ``/etc/apt/sources.list`` file:
53 a96ec00f Constantinos Venetsanopoulos
54 8c81d088 Stratos Psomadakis
| ``deb http://apt.dev.grnet.gr squeeze/``
55 8c81d088 Stratos Psomadakis
| ``deb-src http://apt.dev.grnet.gr squeeze/``
56 a96ec00f Constantinos Venetsanopoulos
57 ec9862dd Stratos Psomadakis
and import the repo's GPG key:
58 ec9862dd Stratos Psomadakis
59 ec9862dd Stratos Psomadakis
| ``curl https://dev.grnet.gr/files/apt-grnetdev.pub | apt-key add -``
60 ec9862dd Stratos Psomadakis
61 169f7d38 Vangelis Koukis
Also add the following line to enable the ``squeeze-backports`` repository,
62 169f7d38 Vangelis Koukis
which may provide more recent versions of certain packages. The repository
63 169f7d38 Vangelis Koukis
is deactivated by default and must be specified expicitly in ``apt-get``
64 169f7d38 Vangelis Koukis
operations:
65 169f7d38 Vangelis Koukis
66 169f7d38 Vangelis Koukis
| ``deb http://backports.debian.org/debian-backports squeeze-backports main``
67 169f7d38 Vangelis Koukis
68 e5d8df8c Constantinos Venetsanopoulos
You also need a shared directory visible by both nodes. Pithos will save all
69 a96ec00f Constantinos Venetsanopoulos
data inside this directory. By 'all data', we mean files, images, and pithos
70 a96ec00f Constantinos Venetsanopoulos
specific mapping data. If you plan to upload more than one basic image, this
71 a96ec00f Constantinos Venetsanopoulos
directory should have at least 50GB of free space. During this guide, we will
72 a96ec00f Constantinos Venetsanopoulos
assume that node1 acts as an NFS server and serves the directory ``/srv/pithos``
73 ba173277 Ilias Tsitsimpis
to node2 (be sure to set no_root_squash flag). Node2 has this directory
74 ba173277 Ilias Tsitsimpis
mounted under ``/srv/pithos``, too.
75 a96ec00f Constantinos Venetsanopoulos
76 a96ec00f Constantinos Venetsanopoulos
Before starting the synnefo installation, you will need basic third party
77 a96ec00f Constantinos Venetsanopoulos
software to be installed and configured on the physical nodes. We will describe
78 a96ec00f Constantinos Venetsanopoulos
each node's general prerequisites separately. Any additional configuration,
79 a96ec00f Constantinos Venetsanopoulos
specific to a synnefo service for each node, will be described at the service's
80 a96ec00f Constantinos Venetsanopoulos
section.
81 a96ec00f Constantinos Venetsanopoulos
82 7df5a742 Christos Stavrakakis
Finally, it is required for Cyclades and Ganeti nodes to have synchronized
83 7df5a742 Christos Stavrakakis
system clocks (e.g. by running ntpd).
84 7df5a742 Christos Stavrakakis
85 a96ec00f Constantinos Venetsanopoulos
Node1
86 a96ec00f Constantinos Venetsanopoulos
-----
87 a96ec00f Constantinos Venetsanopoulos
88 0c068fc6 marioskogias
89 a96ec00f Constantinos Venetsanopoulos
General Synnefo dependencies
90 a96ec00f Constantinos Venetsanopoulos
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
91 a96ec00f Constantinos Venetsanopoulos
92 0c068fc6 marioskogias
		* apache (http server)
93 0c068fc6 marioskogias
		* public certificate
94 0c068fc6 marioskogias
		* gunicorn (WSGI http server)
95 0c068fc6 marioskogias
		* postgresql (database)
96 0c068fc6 marioskogias
		* rabbitmq (message queue)
97 0c068fc6 marioskogias
		* ntp (NTP daemon)
98 0c068fc6 marioskogias
		* gevent
99 0c068fc6 marioskogias
		* dns server
100 a96ec00f Constantinos Venetsanopoulos
101 dd45ee44 Dionysis Grigoropoulos
You can install apache2, postgresql and ntp by running:
102 a96ec00f Constantinos Venetsanopoulos
103 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
104 a96ec00f Constantinos Venetsanopoulos
105 7df5a742 Christos Stavrakakis
   # apt-get install apache2 postgresql ntp
106 a96ec00f Constantinos Venetsanopoulos
107 73ff1d54 Constantinos Venetsanopoulos
Make sure to install gunicorn >= v0.12.2. You can do this by installing from
108 73ff1d54 Constantinos Venetsanopoulos
the official debian backports:
109 73ff1d54 Constantinos Venetsanopoulos
110 73ff1d54 Constantinos Venetsanopoulos
.. code-block:: console
111 73ff1d54 Constantinos Venetsanopoulos
112 73ff1d54 Constantinos Venetsanopoulos
   # apt-get -t squeeze-backports install gunicorn
113 73ff1d54 Constantinos Venetsanopoulos
114 576e059b Constantinos Venetsanopoulos
Also, make sure to install gevent >= 0.13.6. Again from the debian backports:
115 576e059b Constantinos Venetsanopoulos
116 576e059b Constantinos Venetsanopoulos
.. code-block:: console
117 576e059b Constantinos Venetsanopoulos
118 576e059b Constantinos Venetsanopoulos
   # apt-get -t squeeze-backports install python-gevent
119 576e059b Constantinos Venetsanopoulos
120 73ff1d54 Constantinos Venetsanopoulos
On node1, we will create our databases, so you will also need the
121 73ff1d54 Constantinos Venetsanopoulos
python-psycopg2 package:
122 a96ec00f Constantinos Venetsanopoulos
123 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
124 a96ec00f Constantinos Venetsanopoulos
125 a96ec00f Constantinos Venetsanopoulos
   # apt-get install python-psycopg2
126 a96ec00f Constantinos Venetsanopoulos
127 29291ebc Christos Stavrakakis
To install RabbitMQ>=2.8.4, use the RabbitMQ APT repository by adding the
128 29291ebc Christos Stavrakakis
following line to ``/etc/apt/sources.list``:
129 29291ebc Christos Stavrakakis
130 29291ebc Christos Stavrakakis
.. code-block:: console
131 29291ebc Christos Stavrakakis
132 d587329c Konstantinos Tompoulidis
    deb http://www.rabbitmq.com/debian testing main
133 29291ebc Christos Stavrakakis
134 29291ebc Christos Stavrakakis
Add RabbitMQ public key, to trusted key list:
135 29291ebc Christos Stavrakakis
136 29291ebc Christos Stavrakakis
.. code-block:: console
137 29291ebc Christos Stavrakakis
138 29291ebc Christos Stavrakakis
  # wget http://www.rabbitmq.com/rabbitmq-signing-key-public.asc
139 29291ebc Christos Stavrakakis
  # apt-key add rabbitmq-signing-key-public.asc
140 29291ebc Christos Stavrakakis
141 29291ebc Christos Stavrakakis
Finally, to install the package run:
142 29291ebc Christos Stavrakakis
143 29291ebc Christos Stavrakakis
.. code-block:: console
144 29291ebc Christos Stavrakakis
145 29291ebc Christos Stavrakakis
  # apt-get update
146 29291ebc Christos Stavrakakis
  # apt-get install rabbitmq-server
147 29291ebc Christos Stavrakakis
148 a96ec00f Constantinos Venetsanopoulos
Database setup
149 a96ec00f Constantinos Venetsanopoulos
~~~~~~~~~~~~~~
150 a96ec00f Constantinos Venetsanopoulos
151 a96ec00f Constantinos Venetsanopoulos
On node1, we create a database called ``snf_apps``, that will host all django
152 a96ec00f Constantinos Venetsanopoulos
apps related tables. We also create the user ``synnefo`` and grant him all
153 a96ec00f Constantinos Venetsanopoulos
privileges on the database. We do this by running:
154 a96ec00f Constantinos Venetsanopoulos
155 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
156 a96ec00f Constantinos Venetsanopoulos
157 d587329c Konstantinos Tompoulidis
    root@node1:~ # su - postgres
158 d587329c Konstantinos Tompoulidis
    postgres@node1:~ $ psql
159 d587329c Konstantinos Tompoulidis
    postgres=# CREATE DATABASE snf_apps WITH ENCODING 'UTF8' LC_COLLATE='C' LC_CTYPE='C' TEMPLATE=template0;
160 d587329c Konstantinos Tompoulidis
    postgres=# CREATE USER synnefo WITH PASSWORD 'example_passw0rd';
161 d587329c Konstantinos Tompoulidis
    postgres=# GRANT ALL PRIVILEGES ON DATABASE snf_apps TO synnefo;
162 a96ec00f Constantinos Venetsanopoulos
163 e5d8df8c Constantinos Venetsanopoulos
We also create the database ``snf_pithos`` needed by the Pithos backend and
164 a96ec00f Constantinos Venetsanopoulos
grant the ``synnefo`` user all privileges on the database. This database could
165 a96ec00f Constantinos Venetsanopoulos
be created on node2 instead, but we do it on node1 for simplicity. We will
166 a96ec00f Constantinos Venetsanopoulos
create all needed databases on node1 and then node2 will connect to them.
167 a96ec00f Constantinos Venetsanopoulos
168 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
169 a96ec00f Constantinos Venetsanopoulos
170 d587329c Konstantinos Tompoulidis
    postgres=# CREATE DATABASE snf_pithos WITH ENCODING 'UTF8' LC_COLLATE='C' LC_CTYPE='C' TEMPLATE=template0;
171 d587329c Konstantinos Tompoulidis
    postgres=# GRANT ALL PRIVILEGES ON DATABASE snf_pithos TO synnefo;
172 a96ec00f Constantinos Venetsanopoulos
173 a96ec00f Constantinos Venetsanopoulos
Configure the database to listen to all network interfaces. You can do this by
174 a96ec00f Constantinos Venetsanopoulos
editting the file ``/etc/postgresql/8.4/main/postgresql.conf`` and change
175 a96ec00f Constantinos Venetsanopoulos
``listen_addresses`` to ``'*'`` :
176 a96ec00f Constantinos Venetsanopoulos
177 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
178 a96ec00f Constantinos Venetsanopoulos
179 d587329c Konstantinos Tompoulidis
    listen_addresses = '*'
180 a96ec00f Constantinos Venetsanopoulos
181 a96ec00f Constantinos Venetsanopoulos
Furthermore, edit ``/etc/postgresql/8.4/main/pg_hba.conf`` to allow node1 and
182 a96ec00f Constantinos Venetsanopoulos
node2 to connect to the database. Add the following lines under ``#IPv4 local
183 a96ec00f Constantinos Venetsanopoulos
connections:`` :
184 a96ec00f Constantinos Venetsanopoulos
185 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
186 a96ec00f Constantinos Venetsanopoulos
187 d587329c Konstantinos Tompoulidis
    host		all	all	4.3.2.1/32	md5
188 d587329c Konstantinos Tompoulidis
    host		all	all	4.3.2.2/32	md5
189 a96ec00f Constantinos Venetsanopoulos
190 a96ec00f Constantinos Venetsanopoulos
Make sure to substitute "4.3.2.1" and "4.3.2.2" with node1's and node2's
191 a96ec00f Constantinos Venetsanopoulos
actual IPs. Now, restart the server to apply the changes:
192 a96ec00f Constantinos Venetsanopoulos
193 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
194 a96ec00f Constantinos Venetsanopoulos
195 a96ec00f Constantinos Venetsanopoulos
   # /etc/init.d/postgresql restart
196 a96ec00f Constantinos Venetsanopoulos
197 a96ec00f Constantinos Venetsanopoulos
Gunicorn setup
198 a96ec00f Constantinos Venetsanopoulos
~~~~~~~~~~~~~~
199 a96ec00f Constantinos Venetsanopoulos
200 d3840a05 Constantinos Venetsanopoulos
Rename the file ``/etc/gunicorn.d/synnefo.example`` to
201 d3840a05 Constantinos Venetsanopoulos
``/etc/gunicorn.d/synnefo``, to make it a valid gunicorn configuration file:
202 a96ec00f Constantinos Venetsanopoulos
203 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
204 a96ec00f Constantinos Venetsanopoulos
205 d3840a05 Constantinos Venetsanopoulos
    # mv /etc/gunicorn.d/synnefo.example /etc/gunicorn.d/synnefo
206 d3840a05 Constantinos Venetsanopoulos
207 a96ec00f Constantinos Venetsanopoulos
208 0c40b4ac Kostas Papadimitriou
.. warning:: Do NOT start the server yet, because it won't find the
209 d587329c Konstantinos Tompoulidis
    ``synnefo.settings`` module. Also, in case you are using ``/etc/hosts``
210 d587329c Konstantinos Tompoulidis
    instead of a DNS to get the hostnames, change ``--worker-class=gevent`` to
211 d587329c Konstantinos Tompoulidis
    ``--worker-class=sync``. We will start the server after successful
212 4de94e15 Kostas Papadimitriou
    installation of astakos. If the server is running::
213 a96ec00f Constantinos Venetsanopoulos
214 4de94e15 Kostas Papadimitriou
       # /etc/init.d/gunicorn stop
215 a96ec00f Constantinos Venetsanopoulos
216 0c068fc6 marioskogias
Certificate Creation
217 0c068fc6 marioskogias
~~~~~~~~~~~~~~~~~~~~~
218 0c068fc6 marioskogias
219 0c068fc6 marioskogias
Node1 will host Cyclades. Cyclades should communicate with the other snf tools over a trusted connection.
220 0c068fc6 marioskogias
In order for the connection to be trusted, the keys provided to apache below should be signed with a certificate.
221 0c068fc6 marioskogias
This certificate should be added to all nodes. In case you don't have signed keys you can create a self-signed certificate
222 0c068fc6 marioskogias
and sign your keys with this. To do so on node1 run
223 0c068fc6 marioskogias
224 0c068fc6 marioskogias
.. code-block:: console
225 0c068fc6 marioskogias
226 0c068fc6 marioskogias
		# aptitude install openvpn
227 0c068fc6 marioskogias
		# mkdir /etc/openvpn/easy-rsa
228 0c068fc6 marioskogias
		# cp -ai /usr/share/doc/openvpn/examples/easy-rsa/2.0/ /etc/openvpn/easy-rsa
229 0c068fc6 marioskogias
		# cd /etc/openvpn/easy-rsa/2.0
230 0c068fc6 marioskogias
		# vim vars
231 0c068fc6 marioskogias
232 0c068fc6 marioskogias
In vars you can set your own parameters such as KEY_COUNTRY
233 0c068fc6 marioskogias
234 0c068fc6 marioskogias
.. code-block:: console
235 0c068fc6 marioskogias
236 0c068fc6 marioskogias
	# . ./vars
237 0c068fc6 marioskogias
	# ./clean-all
238 0c068fc6 marioskogias
239 0c068fc6 marioskogias
Now you can create the certificate
240 0c068fc6 marioskogias
241 dd45ee44 Dionysis Grigoropoulos
.. code-block:: console
242 dd45ee44 Dionysis Grigoropoulos
243 0c068fc6 marioskogias
		# ./build-ca
244 0c068fc6 marioskogias
245 0c068fc6 marioskogias
The previous will create a ``ca.crt`` file. Copy this file under
246 0c068fc6 marioskogias
``/usr/local/share/ca-certificates/`` directory and run :
247 0c068fc6 marioskogias
248 0c068fc6 marioskogias
.. code-block:: console
249 0c068fc6 marioskogias
250 0c068fc6 marioskogias
		# update-ca-certificates
251 0c068fc6 marioskogias
252 0c068fc6 marioskogias
to update the records. You will have to do the following on node2 as well.
253 0c068fc6 marioskogias
254 0c068fc6 marioskogias
Now you can create the keys and sign them with the certificate
255 0c068fc6 marioskogias
256 0c068fc6 marioskogias
.. code-block:: console
257 dd45ee44 Dionysis Grigoropoulos
258 0c068fc6 marioskogias
		# ./build-key-server node1.example.com
259 0c068fc6 marioskogias
260 0c068fc6 marioskogias
This will create a .pem and a .key file in your current folder. Copy these in
261 dd45ee44 Dionysis Grigoropoulos
``/etc/ssl/certs/`` and ``/etc/ssl/private/`` respectively and
262 0c068fc6 marioskogias
use them in the apache2 configuration file below instead of the defaults.
263 0c068fc6 marioskogias
264 a96ec00f Constantinos Venetsanopoulos
Apache2 setup
265 a96ec00f Constantinos Venetsanopoulos
~~~~~~~~~~~~~
266 a96ec00f Constantinos Venetsanopoulos
267 d587329c Konstantinos Tompoulidis
Create the file ``/etc/apache2/sites-available/synnefo`` containing the
268 d587329c Konstantinos Tompoulidis
following:
269 a96ec00f Constantinos Venetsanopoulos
270 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
271 a96ec00f Constantinos Venetsanopoulos
272 d587329c Konstantinos Tompoulidis
    <VirtualHost *:80>
273 d587329c Konstantinos Tompoulidis
        ServerName node1.example.com
274 a96ec00f Constantinos Venetsanopoulos
275 d587329c Konstantinos Tompoulidis
        RewriteEngine On
276 d587329c Konstantinos Tompoulidis
        RewriteCond %{THE_REQUEST} ^.*(\\r|\\n|%0A|%0D).* [NC]
277 d587329c Konstantinos Tompoulidis
        RewriteRule ^(.*)$ - [F,L]
278 d587329c Konstantinos Tompoulidis
        RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
279 d587329c Konstantinos Tompoulidis
    </VirtualHost>
280 a96ec00f Constantinos Venetsanopoulos
281 0c068fc6 marioskogias
282 d587329c Konstantinos Tompoulidis
Create the file ``/etc/apache2/sites-available/synnefo-ssl`` containing the
283 d587329c Konstantinos Tompoulidis
following:
284 a96ec00f Constantinos Venetsanopoulos
285 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
286 a96ec00f Constantinos Venetsanopoulos
287 d587329c Konstantinos Tompoulidis
    <IfModule mod_ssl.c>
288 d587329c Konstantinos Tompoulidis
    <VirtualHost _default_:443>
289 d587329c Konstantinos Tompoulidis
        ServerName node1.example.com
290 a96ec00f Constantinos Venetsanopoulos
291 d587329c Konstantinos Tompoulidis
        Alias /static "/usr/share/synnefo/static"
292 a96ec00f Constantinos Venetsanopoulos
293 d587329c Konstantinos Tompoulidis
        #  SetEnv no-gzip
294 d587329c Konstantinos Tompoulidis
        #  SetEnv dont-vary
295 a96ec00f Constantinos Venetsanopoulos
296 d587329c Konstantinos Tompoulidis
       AllowEncodedSlashes On
297 04427415 Constantinos Venetsanopoulos
298 d587329c Konstantinos Tompoulidis
       RequestHeader set X-Forwarded-Protocol "https"
299 a96ec00f Constantinos Venetsanopoulos
300 d587329c Konstantinos Tompoulidis
    <Proxy * >
301 d587329c Konstantinos Tompoulidis
        Order allow,deny
302 d587329c Konstantinos Tompoulidis
        Allow from all
303 d587329c Konstantinos Tompoulidis
    </Proxy>
304 a96ec00f Constantinos Venetsanopoulos
305 d587329c Konstantinos Tompoulidis
        SetEnv                proxy-sendchunked
306 d587329c Konstantinos Tompoulidis
        SSLProxyEngine        off
307 d587329c Konstantinos Tompoulidis
        ProxyErrorOverride    off
308 a96ec00f Constantinos Venetsanopoulos
309 d587329c Konstantinos Tompoulidis
        ProxyPass        /static !
310 d587329c Konstantinos Tompoulidis
        ProxyPass        / http://localhost:8080/ retry=0
311 d587329c Konstantinos Tompoulidis
        ProxyPassReverse / http://localhost:8080/
312 a96ec00f Constantinos Venetsanopoulos
313 d587329c Konstantinos Tompoulidis
        RewriteEngine On
314 d587329c Konstantinos Tompoulidis
        RewriteCond %{THE_REQUEST} ^.*(\\r|\\n|%0A|%0D).* [NC]
315 d587329c Konstantinos Tompoulidis
        RewriteRule ^(.*)$ - [F,L]
316 a96ec00f Constantinos Venetsanopoulos
317 d587329c Konstantinos Tompoulidis
        SSLEngine on
318 d587329c Konstantinos Tompoulidis
        SSLCertificateFile    /etc/ssl/certs/ssl-cert-snakeoil.pem
319 d587329c Konstantinos Tompoulidis
        SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key
320 d587329c Konstantinos Tompoulidis
    </VirtualHost>
321 d587329c Konstantinos Tompoulidis
    </IfModule>
322 a96ec00f Constantinos Venetsanopoulos
323 a96ec00f Constantinos Venetsanopoulos
Now enable sites and modules by running:
324 a96ec00f Constantinos Venetsanopoulos
325 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
326 a96ec00f Constantinos Venetsanopoulos
327 a96ec00f Constantinos Venetsanopoulos
   # a2enmod ssl
328 a96ec00f Constantinos Venetsanopoulos
   # a2enmod rewrite
329 a96ec00f Constantinos Venetsanopoulos
   # a2dissite default
330 a96ec00f Constantinos Venetsanopoulos
   # a2ensite synnefo
331 a96ec00f Constantinos Venetsanopoulos
   # a2ensite synnefo-ssl
332 a96ec00f Constantinos Venetsanopoulos
   # a2enmod headers
333 a96ec00f Constantinos Venetsanopoulos
   # a2enmod proxy_http
334 a96ec00f Constantinos Venetsanopoulos
335 dd45ee44 Dionysis Grigoropoulos
.. note:: This isn't really needed, but it's a good security practice to disable
336 dd45ee44 Dionysis Grigoropoulos
    directory listing in apache::
337 dd45ee44 Dionysis Grigoropoulos
338 dd45ee44 Dionysis Grigoropoulos
        # a2dismod autoindex
339 dd45ee44 Dionysis Grigoropoulos
340 dd45ee44 Dionysis Grigoropoulos
341 4de94e15 Kostas Papadimitriou
.. warning:: Do NOT start/restart the server yet. If the server is running::
342 a96ec00f Constantinos Venetsanopoulos
343 4de94e15 Kostas Papadimitriou
       # /etc/init.d/apache2 stop
344 a96ec00f Constantinos Venetsanopoulos
345 0c068fc6 marioskogias
346 2c85833e Constantinos Venetsanopoulos
.. _rabbitmq-setup:
347 2c85833e Constantinos Venetsanopoulos
348 bdfd94c9 Constantinos Venetsanopoulos
Message Queue setup
349 bdfd94c9 Constantinos Venetsanopoulos
~~~~~~~~~~~~~~~~~~~
350 bdfd94c9 Constantinos Venetsanopoulos
351 bdfd94c9 Constantinos Venetsanopoulos
The message queue will run on node1, so we need to create the appropriate
352 bdfd94c9 Constantinos Venetsanopoulos
rabbitmq user. The user is named ``synnefo`` and gets full privileges on all
353 bdfd94c9 Constantinos Venetsanopoulos
exchanges:
354 bdfd94c9 Constantinos Venetsanopoulos
355 bdfd94c9 Constantinos Venetsanopoulos
.. code-block:: console
356 bdfd94c9 Constantinos Venetsanopoulos
357 69aa7f21 Ilias Tsitsimpis
   # rabbitmqctl add_user synnefo "example_rabbitmq_passw0rd"
358 bdfd94c9 Constantinos Venetsanopoulos
   # rabbitmqctl set_permissions synnefo ".*" ".*" ".*"
359 bdfd94c9 Constantinos Venetsanopoulos
360 bdfd94c9 Constantinos Venetsanopoulos
We do not need to initialize the exchanges. This will be done automatically,
361 bdfd94c9 Constantinos Venetsanopoulos
during the Cyclades setup.
362 bdfd94c9 Constantinos Venetsanopoulos
363 e5d8df8c Constantinos Venetsanopoulos
Pithos data directory setup
364 e5d8df8c Constantinos Venetsanopoulos
~~~~~~~~~~~~~~~~~~~~~~~~~~~
365 a96ec00f Constantinos Venetsanopoulos
366 a96ec00f Constantinos Venetsanopoulos
As mentioned in the General Prerequisites section, there is a directory called
367 a96ec00f Constantinos Venetsanopoulos
``/srv/pithos`` visible by both nodes. We create and setup the ``data``
368 a96ec00f Constantinos Venetsanopoulos
directory inside it:
369 a96ec00f Constantinos Venetsanopoulos
370 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
371 a96ec00f Constantinos Venetsanopoulos
372 a96ec00f Constantinos Venetsanopoulos
   # cd /srv/pithos
373 a96ec00f Constantinos Venetsanopoulos
   # mkdir data
374 a96ec00f Constantinos Venetsanopoulos
   # chown www-data:www-data data
375 a96ec00f Constantinos Venetsanopoulos
   # chmod g+ws data
376 a96ec00f Constantinos Venetsanopoulos
377 0c068fc6 marioskogias
DNS server setup
378 0c068fc6 marioskogias
~~~~~~~~~~~~~~~~
379 0c068fc6 marioskogias
380 0c068fc6 marioskogias
If your machines are not under the same domain nameyou have to set up a dns server.
381 0c068fc6 marioskogias
In order to set up a dns server using dnsmasq do the following
382 0c068fc6 marioskogias
383 0c068fc6 marioskogias
.. code-block:: console
384 dd45ee44 Dionysis Grigoropoulos
385 0c068fc6 marioskogias
				# apt-get install dnsmasq
386 0c068fc6 marioskogias
387 0c068fc6 marioskogias
Then edit you ``/etc/hosts/`` as follows
388 0c068fc6 marioskogias
389 0c068fc6 marioskogias
.. code-block:: console
390 0c068fc6 marioskogias
391 0c068fc6 marioskogias
		4.3.2.1     node1.example.com
392 0c068fc6 marioskogias
		4.3.2.2     node2.example.com
393 0c068fc6 marioskogias
394 0c068fc6 marioskogias
Finally edit the ``/etc/dnsmasq.conf`` file and specify the ``listen-address`` and
395 0c068fc6 marioskogias
the ``interface`` you would like to listen to.
396 0c068fc6 marioskogias
397 dd45ee44 Dionysis Grigoropoulos
Also add the following in your ``/etc/resolv.conf`` file
398 0c068fc6 marioskogias
399 0c068fc6 marioskogias
.. code-block:: console
400 0c068fc6 marioskogias
401 0c068fc6 marioskogias
		nameserver 4.3.2.1
402 0c068fc6 marioskogias
403 a96ec00f Constantinos Venetsanopoulos
You are now ready with all general prerequisites concerning node1. Let's go to
404 a96ec00f Constantinos Venetsanopoulos
node2.
405 a96ec00f Constantinos Venetsanopoulos
406 a96ec00f Constantinos Venetsanopoulos
Node2
407 a96ec00f Constantinos Venetsanopoulos
-----
408 a96ec00f Constantinos Venetsanopoulos
409 a96ec00f Constantinos Venetsanopoulos
General Synnefo dependencies
410 a96ec00f Constantinos Venetsanopoulos
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
411 a96ec00f Constantinos Venetsanopoulos
412 d587329c Konstantinos Tompoulidis
    * apache (http server)
413 d587329c Konstantinos Tompoulidis
    * gunicorn (WSGI http server)
414 d587329c Konstantinos Tompoulidis
    * postgresql (database)
415 d587329c Konstantinos Tompoulidis
    * ntp (NTP daemon)
416 d587329c Konstantinos Tompoulidis
    * gevent
417 0c068fc6 marioskogias
    * certificates
418 0c068fc6 marioskogias
    * dns setup
419 a96ec00f Constantinos Venetsanopoulos
420 a96ec00f Constantinos Venetsanopoulos
You can install the above by running:
421 a96ec00f Constantinos Venetsanopoulos
422 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
423 a96ec00f Constantinos Venetsanopoulos
424 7df5a742 Christos Stavrakakis
   # apt-get install apache2 postgresql ntp
425 73ff1d54 Constantinos Venetsanopoulos
426 73ff1d54 Constantinos Venetsanopoulos
Make sure to install gunicorn >= v0.12.2. You can do this by installing from
427 73ff1d54 Constantinos Venetsanopoulos
the official debian backports:
428 73ff1d54 Constantinos Venetsanopoulos
429 73ff1d54 Constantinos Venetsanopoulos
.. code-block:: console
430 73ff1d54 Constantinos Venetsanopoulos
431 73ff1d54 Constantinos Venetsanopoulos
   # apt-get -t squeeze-backports install gunicorn
432 a96ec00f Constantinos Venetsanopoulos
433 576e059b Constantinos Venetsanopoulos
Also, make sure to install gevent >= 0.13.6. Again from the debian backports:
434 576e059b Constantinos Venetsanopoulos
435 576e059b Constantinos Venetsanopoulos
.. code-block:: console
436 576e059b Constantinos Venetsanopoulos
437 576e059b Constantinos Venetsanopoulos
   # apt-get -t squeeze-backports install python-gevent
438 576e059b Constantinos Venetsanopoulos
439 73ff1d54 Constantinos Venetsanopoulos
Node2 will connect to the databases on node1, so you will also need the
440 73ff1d54 Constantinos Venetsanopoulos
python-psycopg2 package:
441 a96ec00f Constantinos Venetsanopoulos
442 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
443 a96ec00f Constantinos Venetsanopoulos
444 a96ec00f Constantinos Venetsanopoulos
   # apt-get install python-psycopg2
445 a96ec00f Constantinos Venetsanopoulos
446 a96ec00f Constantinos Venetsanopoulos
Database setup
447 a96ec00f Constantinos Venetsanopoulos
~~~~~~~~~~~~~~
448 a96ec00f Constantinos Venetsanopoulos
449 a96ec00f Constantinos Venetsanopoulos
All databases have been created and setup on node1, so we do not need to take
450 a96ec00f Constantinos Venetsanopoulos
any action here. From node2, we will just connect to them. When you get familiar
451 a96ec00f Constantinos Venetsanopoulos
with the software you may choose to run different databases on different nodes,
452 a96ec00f Constantinos Venetsanopoulos
for performance/scalability/redundancy reasons, but those kind of setups are out
453 a96ec00f Constantinos Venetsanopoulos
of the purpose of this guide.
454 a96ec00f Constantinos Venetsanopoulos
455 a96ec00f Constantinos Venetsanopoulos
Gunicorn setup
456 a96ec00f Constantinos Venetsanopoulos
~~~~~~~~~~~~~~
457 a96ec00f Constantinos Venetsanopoulos
458 d3840a05 Constantinos Venetsanopoulos
Rename the file ``/etc/gunicorn.d/synnefo.example`` to
459 d3840a05 Constantinos Venetsanopoulos
``/etc/gunicorn.d/synnefo``, to make it a valid gunicorn configuration file
460 d3840a05 Constantinos Venetsanopoulos
(as happened for node1):
461 a96ec00f Constantinos Venetsanopoulos
462 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
463 a96ec00f Constantinos Venetsanopoulos
464 d3840a05 Constantinos Venetsanopoulos
    # mv /etc/gunicorn.d/synnefo.example /etc/gunicorn.d/synnefo
465 d3840a05 Constantinos Venetsanopoulos
466 a96ec00f Constantinos Venetsanopoulos
467 0c40b4ac Kostas Papadimitriou
.. warning:: Do NOT start the server yet, because it won't find the
468 d587329c Konstantinos Tompoulidis
    ``synnefo.settings`` module. Also, in case you are using ``/etc/hosts``
469 d587329c Konstantinos Tompoulidis
    instead of a DNS to get the hostnames, change ``--worker-class=gevent`` to
470 d587329c Konstantinos Tompoulidis
    ``--worker-class=sync``. We will start the server after successful
471 4de94e15 Kostas Papadimitriou
    installation of astakos. If the server is running::
472 a96ec00f Constantinos Venetsanopoulos
473 4de94e15 Kostas Papadimitriou
       # /etc/init.d/gunicorn stop
474 bdb83fd6 cven
475 a96ec00f Constantinos Venetsanopoulos
Apache2 setup
476 a96ec00f Constantinos Venetsanopoulos
~~~~~~~~~~~~~
477 5b6feb88 Vangelis Koukis
478 d587329c Konstantinos Tompoulidis
Create the file ``/etc/apache2/sites-available/synnefo`` containing the
479 d587329c Konstantinos Tompoulidis
following:
480 5b6feb88 Vangelis Koukis
481 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
482 a96ec00f Constantinos Venetsanopoulos
483 d587329c Konstantinos Tompoulidis
    <VirtualHost *:80>
484 d587329c Konstantinos Tompoulidis
        ServerName node2.example.com
485 a96ec00f Constantinos Venetsanopoulos
486 d587329c Konstantinos Tompoulidis
        RewriteEngine On
487 d587329c Konstantinos Tompoulidis
        RewriteCond %{THE_REQUEST} ^.*(\\r|\\n|%0A|%0D).* [NC]
488 d587329c Konstantinos Tompoulidis
        RewriteRule ^(.*)$ - [F,L]
489 d587329c Konstantinos Tompoulidis
        RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
490 d587329c Konstantinos Tompoulidis
    </VirtualHost>
491 a96ec00f Constantinos Venetsanopoulos
492 a96ec00f Constantinos Venetsanopoulos
Create the file ``synnefo-ssl`` under ``/etc/apache2/sites-available/``
493 a96ec00f Constantinos Venetsanopoulos
containing the following:
494 a96ec00f Constantinos Venetsanopoulos
495 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
496 a96ec00f Constantinos Venetsanopoulos
497 d587329c Konstantinos Tompoulidis
    <IfModule mod_ssl.c>
498 d587329c Konstantinos Tompoulidis
    <VirtualHost _default_:443>
499 d587329c Konstantinos Tompoulidis
        ServerName node2.example.com
500 a96ec00f Constantinos Venetsanopoulos
501 d587329c Konstantinos Tompoulidis
        Alias /static "/usr/share/synnefo/static"
502 a96ec00f Constantinos Venetsanopoulos
503 d587329c Konstantinos Tompoulidis
        SetEnv no-gzip
504 d587329c Konstantinos Tompoulidis
        SetEnv dont-vary
505 d587329c Konstantinos Tompoulidis
        AllowEncodedSlashes On
506 a96ec00f Constantinos Venetsanopoulos
507 d587329c Konstantinos Tompoulidis
        RequestHeader set X-Forwarded-Protocol "https"
508 a96ec00f Constantinos Venetsanopoulos
509 d587329c Konstantinos Tompoulidis
        <Proxy * >
510 d587329c Konstantinos Tompoulidis
            Order allow,deny
511 d587329c Konstantinos Tompoulidis
            Allow from all
512 d587329c Konstantinos Tompoulidis
        </Proxy>
513 a96ec00f Constantinos Venetsanopoulos
514 d587329c Konstantinos Tompoulidis
        SetEnv                proxy-sendchunked
515 d587329c Konstantinos Tompoulidis
        SSLProxyEngine        off
516 d587329c Konstantinos Tompoulidis
        ProxyErrorOverride    off
517 a96ec00f Constantinos Venetsanopoulos
518 d587329c Konstantinos Tompoulidis
        ProxyPass        /static !
519 d587329c Konstantinos Tompoulidis
        ProxyPass        / http://localhost:8080/ retry=0
520 d587329c Konstantinos Tompoulidis
        ProxyPassReverse / http://localhost:8080/
521 a96ec00f Constantinos Venetsanopoulos
522 d587329c Konstantinos Tompoulidis
        SSLEngine on
523 d587329c Konstantinos Tompoulidis
        SSLCertificateFile    /etc/ssl/certs/ssl-cert-snakeoil.pem
524 d587329c Konstantinos Tompoulidis
        SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key
525 d587329c Konstantinos Tompoulidis
    </VirtualHost>
526 d587329c Konstantinos Tompoulidis
    </IfModule>
527 a96ec00f Constantinos Venetsanopoulos
528 a96ec00f Constantinos Venetsanopoulos
As in node1, enable sites and modules by running:
529 a96ec00f Constantinos Venetsanopoulos
530 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
531 a96ec00f Constantinos Venetsanopoulos
532 a96ec00f Constantinos Venetsanopoulos
   # a2enmod ssl
533 a96ec00f Constantinos Venetsanopoulos
   # a2enmod rewrite
534 a96ec00f Constantinos Venetsanopoulos
   # a2dissite default
535 a96ec00f Constantinos Venetsanopoulos
   # a2ensite synnefo
536 a96ec00f Constantinos Venetsanopoulos
   # a2ensite synnefo-ssl
537 a96ec00f Constantinos Venetsanopoulos
   # a2enmod headers
538 a96ec00f Constantinos Venetsanopoulos
   # a2enmod proxy_http
539 a96ec00f Constantinos Venetsanopoulos
540 dd45ee44 Dionysis Grigoropoulos
.. note:: This isn't really needed, but it's a good security practice to disable
541 dd45ee44 Dionysis Grigoropoulos
    directory listing in apache::
542 dd45ee44 Dionysis Grigoropoulos
543 dd45ee44 Dionysis Grigoropoulos
        # a2dismod autoindex
544 dd45ee44 Dionysis Grigoropoulos
545 4de94e15 Kostas Papadimitriou
.. warning:: Do NOT start/restart the server yet. If the server is running::
546 a96ec00f Constantinos Venetsanopoulos
547 4de94e15 Kostas Papadimitriou
       # /etc/init.d/apache2 stop
548 a96ec00f Constantinos Venetsanopoulos
549 0c068fc6 marioskogias
550 0c068fc6 marioskogias
Acquire certificate
551 0c068fc6 marioskogias
~~~~~~~~~~~~~~~~~~~
552 0c068fc6 marioskogias
553 0c068fc6 marioskogias
Copy the certificate you created before on node1 (`ca.crt`) under the directory
554 0c068fc6 marioskogias
``/usr/local/share/ca-certificate``
555 0c068fc6 marioskogias
556 0c068fc6 marioskogias
and run:
557 0c068fc6 marioskogias
558 0c068fc6 marioskogias
.. code-block:: console
559 0c068fc6 marioskogias
560 0c068fc6 marioskogias
		# update-ca-certificates
561 0c068fc6 marioskogias
562 0c068fc6 marioskogias
to update the records.
563 0c068fc6 marioskogias
564 0c068fc6 marioskogias
565 0c068fc6 marioskogias
DNS Setup
566 0c068fc6 marioskogias
~~~~~~~~~
567 0c068fc6 marioskogias
568 0c068fc6 marioskogias
Add the following line in ``/etc/resolv.conf`` file
569 0c068fc6 marioskogias
570 0c068fc6 marioskogias
.. code-block:: console
571 dd45ee44 Dionysis Grigoropoulos
572 0c068fc6 marioskogias
		nameserver 4.3.2.1
573 0c068fc6 marioskogias
574 0c068fc6 marioskogias
to inform the node about the new dns server.
575 0c068fc6 marioskogias
576 a96ec00f Constantinos Venetsanopoulos
We are now ready with all general prerequisites for node2. Now that we have
577 a96ec00f Constantinos Venetsanopoulos
finished with all general prerequisites for both nodes, we can start installing
578 a96ec00f Constantinos Venetsanopoulos
the services. First, let's install Astakos on node1.
579 a96ec00f Constantinos Venetsanopoulos
580 a96ec00f Constantinos Venetsanopoulos
Installation of Astakos on node1
581 a96ec00f Constantinos Venetsanopoulos
================================
582 a96ec00f Constantinos Venetsanopoulos
583 a96ec00f Constantinos Venetsanopoulos
To install astakos, grab the package from our repository (make sure  you made
584 a96ec00f Constantinos Venetsanopoulos
the additions needed in your ``/etc/apt/sources.list`` file, as described
585 a96ec00f Constantinos Venetsanopoulos
previously), by running:
586 a96ec00f Constantinos Venetsanopoulos
587 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
588 a96ec00f Constantinos Venetsanopoulos
589 b446c082 Giorgos Korfiatis
   # apt-get install snf-astakos-app snf-pithos-backend
590 a96ec00f Constantinos Venetsanopoulos
591 04c1254b Constantinos Venetsanopoulos
.. _conf-astakos:
592 04c1254b Constantinos Venetsanopoulos
593 a96ec00f Constantinos Venetsanopoulos
Configuration of Astakos
594 a96ec00f Constantinos Venetsanopoulos
========================
595 a96ec00f Constantinos Venetsanopoulos
596 a96ec00f Constantinos Venetsanopoulos
Conf Files
597 a96ec00f Constantinos Venetsanopoulos
----------
598 a96ec00f Constantinos Venetsanopoulos
599 a96ec00f Constantinos Venetsanopoulos
After astakos is successfully installed, you will find the directory
600 a96ec00f Constantinos Venetsanopoulos
``/etc/synnefo`` and some configuration files inside it. The files contain
601 a96ec00f Constantinos Venetsanopoulos
commented configuration options, which are the default options. While installing
602 a96ec00f Constantinos Venetsanopoulos
new snf-* components, new configuration files will appear inside the directory.
603 a96ec00f Constantinos Venetsanopoulos
In this guide (and for all services), we will edit only the minimum necessary
604 a96ec00f Constantinos Venetsanopoulos
configuration options, to reflect our setup. Everything else will remain as is.
605 a96ec00f Constantinos Venetsanopoulos
606 a96ec00f Constantinos Venetsanopoulos
After getting familiar with synnefo, you will be able to customize the software
607 a96ec00f Constantinos Venetsanopoulos
as you wish and fits your needs. Many options are available, to empower the
608 a96ec00f Constantinos Venetsanopoulos
administrator with extensively customizable setups.
609 a96ec00f Constantinos Venetsanopoulos
610 a96ec00f Constantinos Venetsanopoulos
For the snf-webproject component (installed as an astakos dependency), we
611 a96ec00f Constantinos Venetsanopoulos
need the following:
612 a96ec00f Constantinos Venetsanopoulos
613 a96ec00f Constantinos Venetsanopoulos
Edit ``/etc/synnefo/10-snf-webproject-database.conf``. You will need to
614 a96ec00f Constantinos Venetsanopoulos
uncomment and edit the ``DATABASES`` block to reflect our database:
615 a96ec00f Constantinos Venetsanopoulos
616 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
617 a96ec00f Constantinos Venetsanopoulos
618 d587329c Konstantinos Tompoulidis
    DATABASES = {
619 d587329c Konstantinos Tompoulidis
     'default': {
620 d587329c Konstantinos Tompoulidis
         # 'postgresql_psycopg2', 'postgresql','mysql', 'sqlite3' or 'oracle'
621 49026a89 Ilias Tsitsimpis
         'ENGINE': 'django.db.backends.postgresql_psycopg2',
622 a96ec00f Constantinos Venetsanopoulos
         # ATTENTION: This *must* be the absolute path if using sqlite3.
623 a96ec00f Constantinos Venetsanopoulos
         # See: http://docs.djangoproject.com/en/dev/ref/settings/#name
624 d587329c Konstantinos Tompoulidis
         'NAME': 'snf_apps',
625 d587329c Konstantinos Tompoulidis
         'USER': 'synnefo',                      # Not used with sqlite3.
626 d587329c Konstantinos Tompoulidis
         'PASSWORD': 'example_passw0rd',         # Not used with sqlite3.
627 d587329c Konstantinos Tompoulidis
         # Set to empty string for localhost. Not used with sqlite3.
628 d587329c Konstantinos Tompoulidis
         'HOST': '4.3.2.1',
629 d587329c Konstantinos Tompoulidis
         # Set to empty string for default. Not used with sqlite3.
630 d587329c Konstantinos Tompoulidis
         'PORT': '5432',
631 d587329c Konstantinos Tompoulidis
     }
632 a96ec00f Constantinos Venetsanopoulos
    }
633 a96ec00f Constantinos Venetsanopoulos
634 a96ec00f Constantinos Venetsanopoulos
Edit ``/etc/synnefo/10-snf-webproject-deploy.conf``. Uncomment and edit
635 d587329c Konstantinos Tompoulidis
``SECRET_KEY``. This is a Django specific setting which is used to provide a
636 a96ec00f Constantinos Venetsanopoulos
seed in secret-key hashing algorithms. Set this to a random string of your
637 a14f152f Giorgos Korfiatis
choice and keep it private:
638 a96ec00f Constantinos Venetsanopoulos
639 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
640 a96ec00f Constantinos Venetsanopoulos
641 d587329c Konstantinos Tompoulidis
    SECRET_KEY = 'sy6)mw6a7x%n)-example_secret_key#zzk4jo6f2=uqu!1o%)'
642 a96ec00f Constantinos Venetsanopoulos
643 a96ec00f Constantinos Venetsanopoulos
For astakos specific configuration, edit the following options in
644 73ff1d54 Constantinos Venetsanopoulos
``/etc/synnefo/20-snf-astakos-app-settings.conf`` :
645 a96ec00f Constantinos Venetsanopoulos
646 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
647 a96ec00f Constantinos Venetsanopoulos
648 d587329c Konstantinos Tompoulidis
    ASTAKOS_COOKIE_DOMAIN = '.example.com'
649 a96ec00f Constantinos Venetsanopoulos
650 a14f152f Giorgos Korfiatis
    ASTAKOS_BASE_URL = 'https://node1.example.com/astakos'
651 a96ec00f Constantinos Venetsanopoulos
652 4e3e3d24 Constantinos Venetsanopoulos
The ``ASTAKOS_COOKIE_DOMAIN`` should be the base url of our domain (for all
653 0d87ef78 Giorgos Korfiatis
services). ``ASTAKOS_BASE_URL`` is the astakos top-level URL. Appending an
654 0d87ef78 Giorgos Korfiatis
extra path (``/astakos`` here) is recommended in order to distinguish
655 0d87ef78 Giorgos Korfiatis
components, if more than one are installed on the same machine.
656 5b6feb88 Vangelis Koukis
657 4e3e3d24 Constantinos Venetsanopoulos
.. note:: For the purpose of this guide, we don't enable recaptcha authentication.
658 4e3e3d24 Constantinos Venetsanopoulos
    If you would like to enable it, you have to edit the following options:
659 319b615d Ilias Tsitsimpis
660 319b615d Ilias Tsitsimpis
    .. code-block:: console
661 319b615d Ilias Tsitsimpis
662 319b615d Ilias Tsitsimpis
        ASTAKOS_RECAPTCHA_PUBLIC_KEY = 'example_recaptcha_public_key!@#$%^&*('
663 319b615d Ilias Tsitsimpis
        ASTAKOS_RECAPTCHA_PRIVATE_KEY = 'example_recaptcha_private_key!@#$%^&*('
664 319b615d Ilias Tsitsimpis
        ASTAKOS_RECAPTCHA_USE_SSL = True
665 319b615d Ilias Tsitsimpis
        ASTAKOS_RECAPTCHA_ENABLED = True
666 319b615d Ilias Tsitsimpis
667 319b615d Ilias Tsitsimpis
    For the ``ASTAKOS_RECAPTCHA_PUBLIC_KEY`` and ``ASTAKOS_RECAPTCHA_PRIVATE_KEY``
668 319b615d Ilias Tsitsimpis
    go to https://www.google.com/recaptcha/admin/create and create your own pair.
669 5b6feb88 Vangelis Koukis
670 610ff8cf Constantinos Venetsanopoulos
Then edit ``/etc/synnefo/20-snf-astakos-app-cloudbar.conf`` :
671 610ff8cf Constantinos Venetsanopoulos
672 610ff8cf Constantinos Venetsanopoulos
.. code-block:: console
673 610ff8cf Constantinos Venetsanopoulos
674 d587329c Konstantinos Tompoulidis
    CLOUDBAR_LOCATION = 'https://node1.example.com/static/im/cloudbar/'
675 610ff8cf Constantinos Venetsanopoulos
676 a14f152f Giorgos Korfiatis
    CLOUDBAR_SERVICES_URL = 'https://node1.example.com/astakos/ui/get_services'
677 610ff8cf Constantinos Venetsanopoulos
678 a14f152f Giorgos Korfiatis
    CLOUDBAR_MENU_URL = 'https://node1.example.com/astakos/ui/get_menu'
679 610ff8cf Constantinos Venetsanopoulos
680 d587329c Konstantinos Tompoulidis
Those settings have to do with the black cloudbar endpoints and will be
681 d587329c Konstantinos Tompoulidis
described in more detail later on in this guide. For now, just edit the domain
682 d587329c Konstantinos Tompoulidis
to point at node1 which is where we have installed Astakos.
683 610ff8cf Constantinos Venetsanopoulos
684 d587329c Konstantinos Tompoulidis
If you are an advanced user and want to use the Shibboleth Authentication
685 d587329c Konstantinos Tompoulidis
method, read the relative :ref:`section <shibboleth-auth>`.
686 d2a9f85f Sofia Papagiannaki
687 a68c2667 Kostas Papadimitriou
.. _email-configuration:
688 657f8ad7 Kostas Papadimitriou
689 657f8ad7 Kostas Papadimitriou
Email delivery configuration
690 657f8ad7 Kostas Papadimitriou
----------------------------
691 657f8ad7 Kostas Papadimitriou
692 dd45ee44 Dionysis Grigoropoulos
Many of the ``astakos`` operations require server to notify service users and
693 dd45ee44 Dionysis Grigoropoulos
administrators via email. e.g. right after the signup process the service sents
694 dd45ee44 Dionysis Grigoropoulos
an email to the registered email address containing an email verification url,
695 dd45ee44 Dionysis Grigoropoulos
after the user verifies the email address astakos once again needs to notify
696 657f8ad7 Kostas Papadimitriou
administrators with a notice that a new account has just been verified.
697 657f8ad7 Kostas Papadimitriou
698 657f8ad7 Kostas Papadimitriou
More specifically astakos sends emails in the following cases
699 657f8ad7 Kostas Papadimitriou
700 657f8ad7 Kostas Papadimitriou
- An email containing a verification link after each signup process.
701 dd45ee44 Dionysis Grigoropoulos
- An email to the people listed in ``ADMINS`` setting after each email
702 dd45ee44 Dionysis Grigoropoulos
  verification if ``ASTAKOS_MODERATION`` setting is ``True``. The email
703 dd45ee44 Dionysis Grigoropoulos
  notifies administrators that an additional action is required in order to
704 657f8ad7 Kostas Papadimitriou
  activate the user.
705 dd45ee44 Dionysis Grigoropoulos
- A welcome email to the user email and an admin notification to ``ADMINS``
706 657f8ad7 Kostas Papadimitriou
  right after each account activation.
707 dd45ee44 Dionysis Grigoropoulos
- Feedback messages submited from astakos contact view and astakos feedback
708 657f8ad7 Kostas Papadimitriou
  API endpoint are sent to contacts listed in ``HELPDESK`` setting.
709 dd45ee44 Dionysis Grigoropoulos
- Project application request notifications to people included in ``HELPDESK``
710 657f8ad7 Kostas Papadimitriou
  and ``MANAGERS`` settings.
711 dd45ee44 Dionysis Grigoropoulos
- Notifications after each project members action (join request, membership
712 657f8ad7 Kostas Papadimitriou
  accepted/declinde etc.) to project members or project owners.
713 657f8ad7 Kostas Papadimitriou
714 dd45ee44 Dionysis Grigoropoulos
Astakos uses the Django internal email delivering mechanism to send email
715 dd45ee44 Dionysis Grigoropoulos
notifications. A simple configuration, using an external smtp server to
716 dd45ee44 Dionysis Grigoropoulos
deliver messages, is shown below. Alter the following example to meet your
717 0c068fc6 marioskogias
smtp server characteristics. Notice that the smtp server is needed for a proper
718 0c068fc6 marioskogias
installation
719 657f8ad7 Kostas Papadimitriou
720 657f8ad7 Kostas Papadimitriou
.. code-block:: python
721 dd45ee44 Dionysis Grigoropoulos
722 0c068fc6 marioskogias
    # /etc/synnefo/00-snf-common-admins.conf
723 657f8ad7 Kostas Papadimitriou
    EMAIL_HOST = "mysmtp.server.synnefo.org"
724 657f8ad7 Kostas Papadimitriou
    EMAIL_HOST_USER = "<smtpuser>"
725 657f8ad7 Kostas Papadimitriou
    EMAIL_HOST_PASSWORD = "<smtppassword>"
726 657f8ad7 Kostas Papadimitriou
727 657f8ad7 Kostas Papadimitriou
    # this gets appended in all email subjects
728 657f8ad7 Kostas Papadimitriou
    EMAIL_SUBJECT_PREFIX = "[example.synnefo.org] "
729 dd45ee44 Dionysis Grigoropoulos
730 657f8ad7 Kostas Papadimitriou
    # Address to use for outgoing emails
731 657f8ad7 Kostas Papadimitriou
    DEFAULT_FROM_EMAIL = "server@example.synnefo.org"
732 657f8ad7 Kostas Papadimitriou
733 dd45ee44 Dionysis Grigoropoulos
    # Email where users can contact for support. This is used in html/email
734 657f8ad7 Kostas Papadimitriou
    # templates.
735 657f8ad7 Kostas Papadimitriou
    CONTACT_EMAIL = "server@example.synnefo.org"
736 657f8ad7 Kostas Papadimitriou
737 657f8ad7 Kostas Papadimitriou
    # The email address that error messages come from
738 657f8ad7 Kostas Papadimitriou
    SERVER_EMAIL = "server-errors@example.synnefo.org"
739 657f8ad7 Kostas Papadimitriou
740 657f8ad7 Kostas Papadimitriou
Notice that since email settings might be required by applications other than
741 657f8ad7 Kostas Papadimitriou
astakos they are defined in a different configuration file than the one
742 dd45ee44 Dionysis Grigoropoulos
previously used to set astakos specific settings.
743 657f8ad7 Kostas Papadimitriou
744 dd45ee44 Dionysis Grigoropoulos
Refer to
745 6b256427 Christos Stavrakakis
`Django documentation <https://docs.djangoproject.com/en/1.4/topics/email/>`_
746 657f8ad7 Kostas Papadimitriou
for additional information on available email settings.
747 657f8ad7 Kostas Papadimitriou
748 dd45ee44 Dionysis Grigoropoulos
As refered in the previous section, based on the operation that triggers
749 dd45ee44 Dionysis Grigoropoulos
an email notification, the recipients list differs. Specifically for
750 dd45ee44 Dionysis Grigoropoulos
emails whose recipients include contacts from your service team
751 dd45ee44 Dionysis Grigoropoulos
(administrators, managers, helpdesk etc) synnefo provides the following
752 657f8ad7 Kostas Papadimitriou
settings located in ``10-snf-common-admins.conf``:
753 657f8ad7 Kostas Papadimitriou
754 657f8ad7 Kostas Papadimitriou
.. code-block:: python
755 657f8ad7 Kostas Papadimitriou
756 dd45ee44 Dionysis Grigoropoulos
    ADMINS = (('Admin name', 'admin@example.synnefo.org'),
757 657f8ad7 Kostas Papadimitriou
              ('Admin2 name', 'admin2@example.synnefo.org))
758 657f8ad7 Kostas Papadimitriou
    MANAGERS = (('Manager name', 'manager@example.synnefo.org'),)
759 657f8ad7 Kostas Papadimitriou
    HELPDESK = (('Helpdesk user name', 'helpdesk@example.synnefo.org'),)
760 657f8ad7 Kostas Papadimitriou
761 6dd3e7c2 Mpampis Stylianopoulos
Alternatively, it may be convenient to send e-mails to a file, instead of an actual smtp server, using the file backend. Do so by creating a configuration file ``/etc/synnefo/99-local.conf`` including the folowing:
762 6dd3e7c2 Mpampis Stylianopoulos
763 6dd3e7c2 Mpampis Stylianopoulos
.. code-block:: python
764 6dd3e7c2 Mpampis Stylianopoulos
765 6dd3e7c2 Mpampis Stylianopoulos
    EMAIL_BACKEND = 'django.core.mail.backends.filebased.EmailBackend'
766 6dd3e7c2 Mpampis Stylianopoulos
    EMAIL_FILE_PATH = '/tmp/app-messages' 
767 6dd3e7c2 Mpampis Stylianopoulos
  
768 657f8ad7 Kostas Papadimitriou
769 657f8ad7 Kostas Papadimitriou
770 4e3e3d24 Constantinos Venetsanopoulos
Enable Pooling
771 4e3e3d24 Constantinos Venetsanopoulos
--------------
772 4e3e3d24 Constantinos Venetsanopoulos
773 4e3e3d24 Constantinos Venetsanopoulos
This section can be bypassed, but we strongly recommend you apply the following,
774 4e3e3d24 Constantinos Venetsanopoulos
since they result in a significant performance boost.
775 4e3e3d24 Constantinos Venetsanopoulos
776 4e3e3d24 Constantinos Venetsanopoulos
Synnefo includes a pooling DBAPI driver for PostgreSQL, as a thin wrapper
777 4e3e3d24 Constantinos Venetsanopoulos
around Psycopg2. This allows independent Django requests to reuse pooled DB
778 4e3e3d24 Constantinos Venetsanopoulos
connections, with significant performance gains.
779 4e3e3d24 Constantinos Venetsanopoulos
780 4e3e3d24 Constantinos Venetsanopoulos
To use, first monkey-patch psycopg2. For Django, run this before the
781 4e3e3d24 Constantinos Venetsanopoulos
``DATABASES`` setting in ``/etc/synnefo/10-snf-webproject-database.conf``:
782 4e3e3d24 Constantinos Venetsanopoulos
783 4e3e3d24 Constantinos Venetsanopoulos
.. code-block:: console
784 4e3e3d24 Constantinos Venetsanopoulos
785 d587329c Konstantinos Tompoulidis
    from synnefo.lib.db.pooled_psycopg2 import monkey_patch_psycopg2
786 d587329c Konstantinos Tompoulidis
    monkey_patch_psycopg2()
787 4e3e3d24 Constantinos Venetsanopoulos
788 576e059b Constantinos Venetsanopoulos
Since we are running with greenlets, we should modify psycopg2 behavior, so it
789 576e059b Constantinos Venetsanopoulos
works properly in a greenlet context:
790 4e3e3d24 Constantinos Venetsanopoulos
791 4e3e3d24 Constantinos Venetsanopoulos
.. code-block:: console
792 4e3e3d24 Constantinos Venetsanopoulos
793 d587329c Konstantinos Tompoulidis
    from synnefo.lib.db.psyco_gevent import make_psycopg_green
794 d587329c Konstantinos Tompoulidis
    make_psycopg_green()
795 4e3e3d24 Constantinos Venetsanopoulos
796 4e3e3d24 Constantinos Venetsanopoulos
Use the Psycopg2 driver as usual. For Django, this means using
797 4e3e3d24 Constantinos Venetsanopoulos
``django.db.backends.postgresql_psycopg2`` without any modifications. To enable
798 4e3e3d24 Constantinos Venetsanopoulos
connection pooling, pass a nonzero ``synnefo_poolsize`` option to the DBAPI
799 d587329c Konstantinos Tompoulidis
driver, through ``DATABASES.OPTIONS`` in Django.
800 4e3e3d24 Constantinos Venetsanopoulos
801 4e3e3d24 Constantinos Venetsanopoulos
All the above will result in an ``/etc/synnefo/10-snf-webproject-database.conf``
802 4e3e3d24 Constantinos Venetsanopoulos
file that looks like this:
803 4e3e3d24 Constantinos Venetsanopoulos
804 4e3e3d24 Constantinos Venetsanopoulos
.. code-block:: console
805 4e3e3d24 Constantinos Venetsanopoulos
806 d587329c Konstantinos Tompoulidis
    # Monkey-patch psycopg2
807 d587329c Konstantinos Tompoulidis
    from synnefo.lib.db.pooled_psycopg2 import monkey_patch_psycopg2
808 d587329c Konstantinos Tompoulidis
    monkey_patch_psycopg2()
809 4e3e3d24 Constantinos Venetsanopoulos
810 d587329c Konstantinos Tompoulidis
    # If running with greenlets
811 d587329c Konstantinos Tompoulidis
    from synnefo.lib.db.psyco_gevent import make_psycopg_green
812 d587329c Konstantinos Tompoulidis
    make_psycopg_green()
813 4e3e3d24 Constantinos Venetsanopoulos
814 d587329c Konstantinos Tompoulidis
    DATABASES = {
815 d587329c Konstantinos Tompoulidis
     'default': {
816 d587329c Konstantinos Tompoulidis
         # 'postgresql_psycopg2', 'postgresql','mysql', 'sqlite3' or 'oracle'
817 49026a89 Ilias Tsitsimpis
         'ENGINE': 'django.db.backends.postgresql_psycopg2',
818 d587329c Konstantinos Tompoulidis
         'OPTIONS': {'synnefo_poolsize': 8},
819 4e3e3d24 Constantinos Venetsanopoulos
820 4e3e3d24 Constantinos Venetsanopoulos
         # ATTENTION: This *must* be the absolute path if using sqlite3.
821 4e3e3d24 Constantinos Venetsanopoulos
         # See: http://docs.djangoproject.com/en/dev/ref/settings/#name
822 d587329c Konstantinos Tompoulidis
         'NAME': 'snf_apps',
823 d587329c Konstantinos Tompoulidis
         'USER': 'synnefo',                      # Not used with sqlite3.
824 d587329c Konstantinos Tompoulidis
         'PASSWORD': 'example_passw0rd',         # Not used with sqlite3.
825 d587329c Konstantinos Tompoulidis
         # Set to empty string for localhost. Not used with sqlite3.
826 d587329c Konstantinos Tompoulidis
         'HOST': '4.3.2.1',
827 d587329c Konstantinos Tompoulidis
         # Set to empty string for default. Not used with sqlite3.
828 d587329c Konstantinos Tompoulidis
         'PORT': '5432',
829 d587329c Konstantinos Tompoulidis
     }
830 4e3e3d24 Constantinos Venetsanopoulos
    }
831 5a2d4e43 Christos Stavrakakis
832 a96ec00f Constantinos Venetsanopoulos
Database Initialization
833 a96ec00f Constantinos Venetsanopoulos
-----------------------
834 a96ec00f Constantinos Venetsanopoulos
835 de20a465 Constantinos Venetsanopoulos
After configuration is done, we initialize the database by running:
836 5b6feb88 Vangelis Koukis
837 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
838 a96ec00f Constantinos Venetsanopoulos
839 d587329c Konstantinos Tompoulidis
    # snf-manage syncdb
840 a96ec00f Constantinos Venetsanopoulos
841 a96ec00f Constantinos Venetsanopoulos
At this example we don't need to create a django superuser, so we select
842 a96ec00f Constantinos Venetsanopoulos
``[no]`` to the question. After a successful sync, we run the migration needed
843 a96ec00f Constantinos Venetsanopoulos
for astakos:
844 5b6feb88 Vangelis Koukis
845 5b6feb88 Vangelis Koukis
.. code-block:: console
846 5b6feb88 Vangelis Koukis
847 d587329c Konstantinos Tompoulidis
    # snf-manage migrate im
848 b446c082 Giorgos Korfiatis
    # snf-manage migrate quotaholder_app
849 a96ec00f Constantinos Venetsanopoulos
850 de20a465 Constantinos Venetsanopoulos
Then, we load the pre-defined user groups
851 d2a9f85f Sofia Papagiannaki
852 d2a9f85f Sofia Papagiannaki
.. code-block:: console
853 d2a9f85f Sofia Papagiannaki
854 d587329c Konstantinos Tompoulidis
    # snf-manage loaddata groups
855 d2a9f85f Sofia Papagiannaki
856 de20a465 Constantinos Venetsanopoulos
.. _services-reg:
857 de20a465 Constantinos Venetsanopoulos
858 de20a465 Constantinos Venetsanopoulos
Services Registration
859 de20a465 Constantinos Venetsanopoulos
---------------------
860 de20a465 Constantinos Venetsanopoulos
861 b446c082 Giorgos Korfiatis
When the database is ready, we need to register the services. The following
862 3f31a848 Giorgos Korfiatis
command will ask you to register the standard Synnefo components (astakos,
863 3f31a848 Giorgos Korfiatis
cyclades, and pithos) along with the services they provide. Note that you
864 3f31a848 Giorgos Korfiatis
have to register at least astakos in order to have a usable authentication
865 0d87ef78 Giorgos Korfiatis
system. For each component, you will be asked to provide two URLs: its base
866 0d87ef78 Giorgos Korfiatis
URL and its UI URL.
867 0d87ef78 Giorgos Korfiatis
868 0d87ef78 Giorgos Korfiatis
The former is the location where the component resides; it should equal
869 0d87ef78 Giorgos Korfiatis
the ``<component_name>_BASE_URL`` as specified in the respective component
870 0d87ef78 Giorgos Korfiatis
settings. For example, the base URL for astakos would be
871 0d87ef78 Giorgos Korfiatis
``https://node1.example.com/astakos``.
872 0d87ef78 Giorgos Korfiatis
873 0d87ef78 Giorgos Korfiatis
The latter is the URL that appears in the Cloudbar and leads to the
874 0d87ef78 Giorgos Korfiatis
component UI. If you want to follow the default setup, set
875 0d87ef78 Giorgos Korfiatis
the UI URL to ``<base_url>/ui/`` where ``base_url`` the component's base
876 0d87ef78 Giorgos Korfiatis
URL as explained before. (You can later change the UI URL with
877 0d87ef78 Giorgos Korfiatis
``snf-manage component-modify <component_name> --url new_ui_url``.)
878 0d87ef78 Giorgos Korfiatis
879 0d87ef78 Giorgos Korfiatis
The command will also register automatically the resource definitions
880 3f31a848 Giorgos Korfiatis
offered by the services.
881 de20a465 Constantinos Venetsanopoulos
882 de20a465 Constantinos Venetsanopoulos
.. code-block:: console
883 de20a465 Constantinos Venetsanopoulos
884 b4109758 Giorgos Korfiatis
    # snf-component-register
885 3f31a848 Giorgos Korfiatis
886 3f31a848 Giorgos Korfiatis
.. note::
887 3f31a848 Giorgos Korfiatis
888 3f31a848 Giorgos Korfiatis
   This command is equivalent to running the following series of commands;
889 3f31a848 Giorgos Korfiatis
   it registers the three components in astakos and then in each host it
890 3f31a848 Giorgos Korfiatis
   exports the respective service definitions, copies the exported json file
891 3f31a848 Giorgos Korfiatis
   to the astakos host, where it finally imports it:
892 3f31a848 Giorgos Korfiatis
893 3f31a848 Giorgos Korfiatis
    .. code-block:: console
894 3f31a848 Giorgos Korfiatis
895 eb765213 Giorgos Korfiatis
       astakos-host$ snf-manage component-add astakos --base-url astakos_base_url --ui-url astakos_ui_url
896 eb765213 Giorgos Korfiatis
       astakos-host$ snf-manage component-add cyclades --base-url cyclades_base_url --ui-url cyclades_ui_url
897 eb765213 Giorgos Korfiatis
       astakos-host$ snf-manage component-add pithos --base-url pithos_base_url --ui-url pithos_ui_url
898 3f31a848 Giorgos Korfiatis
       astakos-host$ snf-manage service-export-astakos > astakos.json
899 3f31a848 Giorgos Korfiatis
       astakos-host$ snf-manage service-import --json astakos.json
900 3f31a848 Giorgos Korfiatis
       cyclades-host$ snf-manage service-export-cyclades > cyclades.json
901 3f31a848 Giorgos Korfiatis
       # copy the file to astakos-host
902 3f31a848 Giorgos Korfiatis
       astakos-host$ snf-manage service-import --json cyclades.json
903 3f31a848 Giorgos Korfiatis
       pithos-host$ snf-manage service-export-pithos > pithos.json
904 3f31a848 Giorgos Korfiatis
       # copy the file to astakos-host
905 3f31a848 Giorgos Korfiatis
       astakos-host$ snf-manage service-import --json pithos.json
906 b446c082 Giorgos Korfiatis
907 0c068fc6 marioskogias
Notice that in this installation astakos and cyclades are in node1 and pithos is in node2
908 0c068fc6 marioskogias
909 b446c082 Giorgos Korfiatis
Setting Default Base Quota for Resources
910 b446c082 Giorgos Korfiatis
----------------------------------------
911 b446c082 Giorgos Korfiatis
912 b446c082 Giorgos Korfiatis
We now have to specify the limit on resources that each user can employ
913 b446c082 Giorgos Korfiatis
(exempting resources offered by projects).
914 b446c082 Giorgos Korfiatis
915 b446c082 Giorgos Korfiatis
.. code-block:: console
916 b446c082 Giorgos Korfiatis
917 d61d6007 Giorgos Korfiatis
    # snf-manage resource-modify --default-quota-interactive
918 b446c082 Giorgos Korfiatis
919 de20a465 Constantinos Venetsanopoulos
920 de20a465 Constantinos Venetsanopoulos
Servers Initialization
921 de20a465 Constantinos Venetsanopoulos
----------------------
922 de20a465 Constantinos Venetsanopoulos
923 de20a465 Constantinos Venetsanopoulos
Finally, we initialize the servers on node1:
924 de20a465 Constantinos Venetsanopoulos
925 de20a465 Constantinos Venetsanopoulos
.. code-block:: console
926 de20a465 Constantinos Venetsanopoulos
927 d587329c Konstantinos Tompoulidis
    root@node1:~ # /etc/init.d/gunicorn restart
928 d587329c Konstantinos Tompoulidis
    root@node1:~ # /etc/init.d/apache2 restart
929 de20a465 Constantinos Venetsanopoulos
930 de20a465 Constantinos Venetsanopoulos
We have now finished the Astakos setup. Let's test it now.
931 a96ec00f Constantinos Venetsanopoulos
932 a96ec00f Constantinos Venetsanopoulos
933 a96ec00f Constantinos Venetsanopoulos
Testing of Astakos
934 a96ec00f Constantinos Venetsanopoulos
==================
935 a96ec00f Constantinos Venetsanopoulos
936 a96ec00f Constantinos Venetsanopoulos
Open your favorite browser and go to:
937 a96ec00f Constantinos Venetsanopoulos
938 a14f152f Giorgos Korfiatis
``http://node1.example.com/astakos``
939 a96ec00f Constantinos Venetsanopoulos
940 a14f152f Giorgos Korfiatis
If this redirects you to ``https://node1.example.com/astakos/ui/`` and you can see
941 a96ec00f Constantinos Venetsanopoulos
the "welcome" door of Astakos, then you have successfully setup Astakos.
942 a96ec00f Constantinos Venetsanopoulos
943 a96ec00f Constantinos Venetsanopoulos
Let's create our first user. At the homepage click the "CREATE ACCOUNT" button
944 a96ec00f Constantinos Venetsanopoulos
and fill all your data at the sign up form. Then click "SUBMIT". You should now
945 a96ec00f Constantinos Venetsanopoulos
see a green box on the top, which informs you that you made a successful request
946 d587329c Konstantinos Tompoulidis
and the request has been sent to the administrators. So far so good, let's
947 d587329c Konstantinos Tompoulidis
assume that you created the user with username ``user@example.com``.
948 a96ec00f Constantinos Venetsanopoulos
949 a96ec00f Constantinos Venetsanopoulos
Now we need to activate that user. Return to a command prompt at node1 and run:
950 a96ec00f Constantinos Venetsanopoulos
951 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
952 a96ec00f Constantinos Venetsanopoulos
953 d587329c Konstantinos Tompoulidis
    root@node1:~ # snf-manage user-list
954 a96ec00f Constantinos Venetsanopoulos
955 a96ec00f Constantinos Venetsanopoulos
This command should show you a list with only one user; the one we just created.
956 a14f152f Giorgos Korfiatis
This user should have an id with a value of ``1`` and flag "active" and
957 a14f152f Giorgos Korfiatis
"verified" set to False. Now run:
958 a96ec00f Constantinos Venetsanopoulos
959 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
960 a96ec00f Constantinos Venetsanopoulos
961 a14f152f Giorgos Korfiatis
    root@node1:~ # snf-manage user-modify 1 --verify --accept
962 a96ec00f Constantinos Venetsanopoulos
963 a14f152f Giorgos Korfiatis
This verifies the user email and activates the user.
964 a96ec00f Constantinos Venetsanopoulos
When running in production, the activation is done automatically with different
965 a96ec00f Constantinos Venetsanopoulos
types of moderation, that Astakos supports. You can see the moderation methods
966 a96ec00f Constantinos Venetsanopoulos
(by invitation, whitelists, matching regexp, etc.) at the Astakos specific
967 f846d8df Constantinos Venetsanopoulos
documentation. In production, you can also manually activate a user, by sending
968 f846d8df Constantinos Venetsanopoulos
him/her an activation email. See how to do this at the :ref:`User
969 f846d8df Constantinos Venetsanopoulos
activation <user_activation>` section.
970 a96ec00f Constantinos Venetsanopoulos
971 a14f152f Giorgos Korfiatis
Now let's go back to the homepage. Open ``http://node1.example.com/astkos/ui/`` with
972 a96ec00f Constantinos Venetsanopoulos
your browser again. Try to sign in using your new credentials. If the astakos
973 a96ec00f Constantinos Venetsanopoulos
menu appears and you can see your profile, then you have successfully setup
974 a96ec00f Constantinos Venetsanopoulos
Astakos.
975 a96ec00f Constantinos Venetsanopoulos
976 e5d8df8c Constantinos Venetsanopoulos
Let's continue to install Pithos now.
977 a96ec00f Constantinos Venetsanopoulos
978 a96ec00f Constantinos Venetsanopoulos
979 e5d8df8c Constantinos Venetsanopoulos
Installation of Pithos on node2
980 e5d8df8c Constantinos Venetsanopoulos
===============================
981 a96ec00f Constantinos Venetsanopoulos
982 e5d8df8c Constantinos Venetsanopoulos
To install Pithos, grab the packages from our repository (make sure  you made
983 a96ec00f Constantinos Venetsanopoulos
the additions needed in your ``/etc/apt/sources.list`` file, as described
984 a96ec00f Constantinos Venetsanopoulos
previously), by running:
985 a96ec00f Constantinos Venetsanopoulos
986 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
987 a96ec00f Constantinos Venetsanopoulos
988 d587329c Konstantinos Tompoulidis
   # apt-get install snf-pithos-app snf-pithos-backend
989 a96ec00f Constantinos Venetsanopoulos
990 fb5187f9 Giorgos Korfiatis
Now, install the pithos web interface:
991 a96ec00f Constantinos Venetsanopoulos
992 138253bc Constantinos Venetsanopoulos
.. code-block:: console
993 138253bc Constantinos Venetsanopoulos
994 138253bc Constantinos Venetsanopoulos
   # apt-get install snf-pithos-webclient
995 138253bc Constantinos Venetsanopoulos
996 138253bc Constantinos Venetsanopoulos
This package provides the standalone pithos web client. The web client is the
997 e5d8df8c Constantinos Venetsanopoulos
web UI for Pithos and will be accessible by clicking "pithos" on the Astakos
998 138253bc Constantinos Venetsanopoulos
interface's cloudbar, at the top of the Astakos homepage.
999 a96ec00f Constantinos Venetsanopoulos
1000 caa6c07d Constantinos Venetsanopoulos
1001 04c1254b Constantinos Venetsanopoulos
.. _conf-pithos:
1002 04c1254b Constantinos Venetsanopoulos
1003 e5d8df8c Constantinos Venetsanopoulos
Configuration of Pithos
1004 e5d8df8c Constantinos Venetsanopoulos
=======================
1005 a96ec00f Constantinos Venetsanopoulos
1006 a96ec00f Constantinos Venetsanopoulos
Conf Files
1007 a96ec00f Constantinos Venetsanopoulos
----------
1008 a96ec00f Constantinos Venetsanopoulos
1009 e5d8df8c Constantinos Venetsanopoulos
After Pithos is successfully installed, you will find the directory
1010 a96ec00f Constantinos Venetsanopoulos
``/etc/synnefo`` and some configuration files inside it, as you did in node1
1011 a96ec00f Constantinos Venetsanopoulos
after installation of astakos. Here, you will not have to change anything that
1012 a96ec00f Constantinos Venetsanopoulos
has to do with snf-common or snf-webproject. Everything is set at node1. You
1013 e5d8df8c Constantinos Venetsanopoulos
only need to change settings that have to do with Pithos. Specifically:
1014 a96ec00f Constantinos Venetsanopoulos
1015 a96ec00f Constantinos Venetsanopoulos
Edit ``/etc/synnefo/20-snf-pithos-app-settings.conf``. There you need to set
1016 11c16930 Ilias Tsitsimpis
this options:
1017 a96ec00f Constantinos Venetsanopoulos
1018 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
1019 a96ec00f Constantinos Venetsanopoulos
1020 cceaebef Ilias Tsitsimpis
   ASTAKOS_AUTH_URL = 'https://node1.example.com/astakos/identity/v2.0'
1021 a96ec00f Constantinos Venetsanopoulos
1022 a14f152f Giorgos Korfiatis
   PITHOS_BASE_URL = 'https://node2.example.com/pithos'
1023 4ab620b6 Christos Stavrakakis
   PITHOS_BACKEND_DB_CONNECTION = 'postgresql://synnefo:example_passw0rd@node1.example.com:5432/snf_pithos'
1024 a96ec00f Constantinos Venetsanopoulos
   PITHOS_BACKEND_BLOCK_PATH = '/srv/pithos/data'
1025 bdfd94c9 Constantinos Venetsanopoulos
1026 26498848 Giorgos Korfiatis
   PITHOS_SERVICE_TOKEN = 'pithos_service_token22w'
1027 d587329c Konstantinos Tompoulidis
1028 3e6d0710 Constantinos Venetsanopoulos
1029 e5d8df8c Constantinos Venetsanopoulos
The ``PITHOS_BACKEND_DB_CONNECTION`` option tells to the Pithos app where to
1030 e5d8df8c Constantinos Venetsanopoulos
find the Pithos backend database. Above we tell Pithos that its database is
1031 bdfd94c9 Constantinos Venetsanopoulos
``snf_pithos`` at node1 and to connect as user ``synnefo`` with password
1032 bdfd94c9 Constantinos Venetsanopoulos
``example_passw0rd``.  All those settings where setup during node1's "Database
1033 bdfd94c9 Constantinos Venetsanopoulos
setup" section.
1034 a96ec00f Constantinos Venetsanopoulos
1035 e5d8df8c Constantinos Venetsanopoulos
The ``PITHOS_BACKEND_BLOCK_PATH`` option tells to the Pithos app where to find
1036 e5d8df8c Constantinos Venetsanopoulos
the Pithos backend data. Above we tell Pithos to store its data under
1037 a96ec00f Constantinos Venetsanopoulos
``/srv/pithos/data``, which is visible by both nodes. We have already setup this
1038 e5d8df8c Constantinos Venetsanopoulos
directory at node1's "Pithos data directory setup" section.
1039 a96ec00f Constantinos Venetsanopoulos
1040 cceaebef Ilias Tsitsimpis
The ``ASTAKOS_AUTH_URL`` option informs the Pithos app where Astakos is.
1041 e3ff6830 Georgios D. Tsoukalas
The Astakos service is used for user management (authentication, quotas, etc.)
1042 8f85321e Sofia Papagiannaki
1043 a14f152f Giorgos Korfiatis
The ``PITHOS_BASE_URL`` setting must point to the top-level Pithos URL.
1044 a14f152f Giorgos Korfiatis
1045 a14f152f Giorgos Korfiatis
The ``PITHOS_SERVICE_TOKEN`` is the token used for authentication with astakos.
1046 a14f152f Giorgos Korfiatis
It can be retrieved by running on the Astakos node (node1 in our case):
1047 3e6d0710 Constantinos Venetsanopoulos
1048 3e6d0710 Constantinos Venetsanopoulos
.. code-block:: console
1049 3e6d0710 Constantinos Venetsanopoulos
1050 a14f152f Giorgos Korfiatis
   # snf-manage component-list
1051 3e6d0710 Constantinos Venetsanopoulos
1052 e5d8df8c Constantinos Venetsanopoulos
The token has been generated automatically during the :ref:`Pithos service
1053 3e6d0710 Constantinos Venetsanopoulos
registration <services-reg>`.
1054 3e6d0710 Constantinos Venetsanopoulos
1055 591e1df0 Sofia Papagiannaki
The ``PITHOS_UPDATE_MD5`` option by default disables the computation of the
1056 591e1df0 Sofia Papagiannaki
object checksums. This results to improved performance during object uploading.
1057 591e1df0 Sofia Papagiannaki
However, if compatibility with the OpenStack Object Storage API is important
1058 591e1df0 Sofia Papagiannaki
then it should be changed to ``True``.
1059 591e1df0 Sofia Papagiannaki
1060 138253bc Constantinos Venetsanopoulos
Then edit ``/etc/synnefo/20-snf-pithos-webclient-cloudbar.conf``, to connect the
1061 e5d8df8c Constantinos Venetsanopoulos
Pithos web UI with the astakos web UI (through the top cloudbar):
1062 138253bc Constantinos Venetsanopoulos
1063 138253bc Constantinos Venetsanopoulos
.. code-block:: console
1064 138253bc Constantinos Venetsanopoulos
1065 d587329c Konstantinos Tompoulidis
    CLOUDBAR_LOCATION = 'https://node1.example.com/static/im/cloudbar/'
1066 a14f152f Giorgos Korfiatis
    CLOUDBAR_SERVICES_URL = 'https://node1.example.com/astakos/ui/get_services'
1067 a14f152f Giorgos Korfiatis
    CLOUDBAR_MENU_URL = 'https://node1.example.com/astakos/ui/get_menu'
1068 138253bc Constantinos Venetsanopoulos
1069 138253bc Constantinos Venetsanopoulos
The ``CLOUDBAR_LOCATION`` tells the client where to find the astakos common
1070 138253bc Constantinos Venetsanopoulos
cloudbar.
1071 138253bc Constantinos Venetsanopoulos
1072 138253bc Constantinos Venetsanopoulos
The ``CLOUDBAR_SERVICES_URL`` and ``CLOUDBAR_MENU_URL`` options are used by the
1073 e5d8df8c Constantinos Venetsanopoulos
Pithos web client to get from astakos all the information needed to fill its
1074 bdfd94c9 Constantinos Venetsanopoulos
own cloudbar. So we put our astakos deployment urls there.
1075 138253bc Constantinos Venetsanopoulos
1076 4e3e3d24 Constantinos Venetsanopoulos
Pooling and Greenlets
1077 4e3e3d24 Constantinos Venetsanopoulos
---------------------
1078 4e3e3d24 Constantinos Venetsanopoulos
1079 4e3e3d24 Constantinos Venetsanopoulos
Pithos is pooling-ready without the need of further configuration, because it
1080 4e3e3d24 Constantinos Venetsanopoulos
doesn't use a Django DB. It pools HTTP connections to Astakos and pithos
1081 4e3e3d24 Constantinos Venetsanopoulos
backend objects for access to the Pithos DB.
1082 4e3e3d24 Constantinos Venetsanopoulos
1083 576e059b Constantinos Venetsanopoulos
However, as in Astakos, since we are running with Greenlets, it is also
1084 576e059b Constantinos Venetsanopoulos
recommended to modify psycopg2 behavior so it works properly in a greenlet
1085 576e059b Constantinos Venetsanopoulos
context. This means adding the following lines at the top of your
1086 4e3e3d24 Constantinos Venetsanopoulos
``/etc/synnefo/10-snf-webproject-database.conf`` file:
1087 4e3e3d24 Constantinos Venetsanopoulos
1088 4e3e3d24 Constantinos Venetsanopoulos
.. code-block:: console
1089 4e3e3d24 Constantinos Venetsanopoulos
1090 d587329c Konstantinos Tompoulidis
    from synnefo.lib.db.psyco_gevent import make_psycopg_green
1091 d587329c Konstantinos Tompoulidis
    make_psycopg_green()
1092 d587329c Konstantinos Tompoulidis
1093 d587329c Konstantinos Tompoulidis
Furthermore, add the ``--worker-class=gevent`` (or ``--worker-class=sync`` as
1094 d587329c Konstantinos Tompoulidis
mentioned above, depending on your setup) argument on your
1095 d587329c Konstantinos Tompoulidis
``/etc/gunicorn.d/synnefo`` configuration file. The file should look something
1096 d587329c Konstantinos Tompoulidis
like this:
1097 d587329c Konstantinos Tompoulidis
1098 d587329c Konstantinos Tompoulidis
.. code-block:: console
1099 d587329c Konstantinos Tompoulidis
1100 d587329c Konstantinos Tompoulidis
    CONFIG = {
1101 d587329c Konstantinos Tompoulidis
     'mode': 'django',
1102 d587329c Konstantinos Tompoulidis
     'environment': {
1103 d587329c Konstantinos Tompoulidis
       'DJANGO_SETTINGS_MODULE': 'synnefo.settings',
1104 d587329c Konstantinos Tompoulidis
     },
1105 d587329c Konstantinos Tompoulidis
     'working_dir': '/etc/synnefo',
1106 d587329c Konstantinos Tompoulidis
     'user': 'www-data',
1107 d587329c Konstantinos Tompoulidis
     'group': 'www-data',
1108 d587329c Konstantinos Tompoulidis
     'args': (
1109 d587329c Konstantinos Tompoulidis
       '--bind=127.0.0.1:8080',
1110 d587329c Konstantinos Tompoulidis
       '--workers=4',
1111 d587329c Konstantinos Tompoulidis
       '--worker-class=gevent',
1112 d587329c Konstantinos Tompoulidis
       '--log-level=debug',
1113 d587329c Konstantinos Tompoulidis
       '--timeout=43200'
1114 d587329c Konstantinos Tompoulidis
     ),
1115 d587329c Konstantinos Tompoulidis
    }
1116 4e3e3d24 Constantinos Venetsanopoulos
1117 c17bd3a7 Sofia Papagiannaki
Stamp Database Revision
1118 c17bd3a7 Sofia Papagiannaki
-----------------------
1119 c17bd3a7 Sofia Papagiannaki
1120 c17bd3a7 Sofia Papagiannaki
Pithos uses the alembic_ database migrations tool.
1121 c17bd3a7 Sofia Papagiannaki
1122 c17bd3a7 Sofia Papagiannaki
.. _alembic: http://alembic.readthedocs.org
1123 c17bd3a7 Sofia Papagiannaki
1124 61c39121 Giorgos Korfiatis
After a successful installation, we should stamp it at the most recent
1125 a33ee5d2 Sofia Papagiannaki
revision, so that future migrations know where to start upgrading in
1126 a33ee5d2 Sofia Papagiannaki
the migration history.
1127 c17bd3a7 Sofia Papagiannaki
1128 c17bd3a7 Sofia Papagiannaki
.. code-block:: console
1129 c17bd3a7 Sofia Papagiannaki
1130 61c39121 Giorgos Korfiatis
    root@node2:~ # pithos-migrate stamp head
1131 c17bd3a7 Sofia Papagiannaki
1132 a96ec00f Constantinos Venetsanopoulos
Servers Initialization
1133 a96ec00f Constantinos Venetsanopoulos
----------------------
1134 a96ec00f Constantinos Venetsanopoulos
1135 a96ec00f Constantinos Venetsanopoulos
After configuration is done, we initialize the servers on node2:
1136 a96ec00f Constantinos Venetsanopoulos
1137 a96ec00f Constantinos Venetsanopoulos
.. code-block:: console
1138 a96ec00f Constantinos Venetsanopoulos
1139 d587329c Konstantinos Tompoulidis
    root@node2:~ # /etc/init.d/gunicorn restart
1140 d587329c Konstantinos Tompoulidis
    root@node2:~ # /etc/init.d/apache2 restart
1141 a96ec00f Constantinos Venetsanopoulos
1142 e5d8df8c Constantinos Venetsanopoulos
You have now finished the Pithos setup. Let's test it now.
1143 a96ec00f Constantinos Venetsanopoulos
1144 a96ec00f Constantinos Venetsanopoulos
1145 e5d8df8c Constantinos Venetsanopoulos
Testing of Pithos
1146 e5d8df8c Constantinos Venetsanopoulos
=================
1147 a96ec00f Constantinos Venetsanopoulos
1148 bdfd94c9 Constantinos Venetsanopoulos
Open your browser and go to the Astakos homepage:
1149 bdfd94c9 Constantinos Venetsanopoulos
1150 a14f152f Giorgos Korfiatis
``http://node1.example.com/astakos``
1151 bdfd94c9 Constantinos Venetsanopoulos
1152 e5d8df8c Constantinos Venetsanopoulos
Login, and you will see your profile page. Now, click the "pithos" link on the
1153 bdfd94c9 Constantinos Venetsanopoulos
top black cloudbar. If everything was setup correctly, this will redirect you
1154 bdfd94c9 Constantinos Venetsanopoulos
to:
1155 bdfd94c9 Constantinos Venetsanopoulos
1156 bdfd94c9 Constantinos Venetsanopoulos
1157 e5d8df8c Constantinos Venetsanopoulos
and you will see the blue interface of the Pithos application.  Click the
1158 bdfd94c9 Constantinos Venetsanopoulos
orange "Upload" button and upload your first file. If the file gets uploaded
1159 e5d8df8c Constantinos Venetsanopoulos
successfully, then this is your first sign of a successful Pithos installation.
1160 bdfd94c9 Constantinos Venetsanopoulos
Go ahead and experiment with the interface to make sure everything works
1161 bdfd94c9 Constantinos Venetsanopoulos
correctly.
1162 bdfd94c9 Constantinos Venetsanopoulos
1163 e5d8df8c Constantinos Venetsanopoulos
You can also use the Pithos clients to sync data from your Windows PC or MAC.
1164 bdfd94c9 Constantinos Venetsanopoulos
1165 bdfd94c9 Constantinos Venetsanopoulos
If you don't stumble on any problems, then you have successfully installed
1166 e5d8df8c Constantinos Venetsanopoulos
Pithos, which you can use as a standalone File Storage Service.
1167 bdfd94c9 Constantinos Venetsanopoulos
1168 bdfd94c9 Constantinos Venetsanopoulos
If you would like to do more, such as:
1169 bdfd94c9 Constantinos Venetsanopoulos
1170 d587329c Konstantinos Tompoulidis
    * Spawning VMs
1171 e5d8df8c Constantinos Venetsanopoulos
    * Spawning VMs from Images stored on Pithos
1172 e5d8df8c Constantinos Venetsanopoulos
    * Uploading your custom Images to Pithos
1173 d587329c Konstantinos Tompoulidis
    * Spawning VMs from those custom Images
1174 e5d8df8c Constantinos Venetsanopoulos
    * Registering existing Pithos files as Images
1175 d587329c Konstantinos Tompoulidis
    * Connect VMs to the Internet
1176 d587329c Konstantinos Tompoulidis
    * Create Private Networks
1177 d587329c Konstantinos Tompoulidis
    * Add VMs to Private Networks
1178 bdfd94c9 Constantinos Venetsanopoulos
1179 bdfd94c9 Constantinos Venetsanopoulos
please continue with the rest of the guide.
1180 a96ec00f Constantinos Venetsanopoulos
1181 caa6c07d Constantinos Venetsanopoulos
1182 73ebcd68 Constantinos Venetsanopoulos
Cyclades Prerequisites
1183 73ebcd68 Constantinos Venetsanopoulos
======================
1184 bc055d09 Constantinos Venetsanopoulos
1185 73ebcd68 Constantinos Venetsanopoulos
Before proceeding with the Cyclades installation, make sure you have
1186 e5d8df8c Constantinos Venetsanopoulos
successfully set up Astakos and Pithos first, because Cyclades depends on
1187 e5d8df8c Constantinos Venetsanopoulos
them. If you don't have a working Astakos and Pithos installation yet, please
1188 73ebcd68 Constantinos Venetsanopoulos
return to the :ref:`top <quick-install-admin-guide>` of this guide.
1189 bc055d09 Constantinos Venetsanopoulos
1190 e5d8df8c Constantinos Venetsanopoulos
Besides Astakos and Pithos, you will also need a number of additional working
1191 caa6c07d Constantinos Venetsanopoulos
prerequisites, before you start the Cyclades installation.
1192 bc055d09 Constantinos Venetsanopoulos
1193 caa6c07d Constantinos Venetsanopoulos
Ganeti
1194 7a8df455 Constantinos Venetsanopoulos
------
1195 bc055d09 Constantinos Venetsanopoulos
1196 caa6c07d Constantinos Venetsanopoulos
`Ganeti <http://code.google.com/p/ganeti/>`_ handles the low level VM management
1197 caa6c07d Constantinos Venetsanopoulos
for Cyclades, so Cyclades requires a working Ganeti installation at the backend.
1198 caa6c07d Constantinos Venetsanopoulos
Please refer to the
1199 e332c1fd Stratos Psomadakis
`ganeti documentation <http://docs.ganeti.org/ganeti/2.6/html>`_ for all the
1200 bc055d09 Constantinos Venetsanopoulos
gory details. A successful Ganeti installation concludes with a working
1201 caa6c07d Constantinos Venetsanopoulos
:ref:`GANETI-MASTER <GANETI_NODES>` and a number of :ref:`GANETI-NODEs
1202 caa6c07d Constantinos Venetsanopoulos
<GANETI_NODES>`.
1203 caa6c07d Constantinos Venetsanopoulos
1204 caa6c07d Constantinos Venetsanopoulos
The above Ganeti cluster can run on different physical machines than node1 and
1205 caa6c07d Constantinos Venetsanopoulos
node2 and can scale independently, according to your needs.
1206 caa6c07d Constantinos Venetsanopoulos
1207 caa6c07d Constantinos Venetsanopoulos
For the purpose of this guide, we will assume that the :ref:`GANETI-MASTER
1208 caa6c07d Constantinos Venetsanopoulos
<GANETI_NODES>` runs on node1 and is VM-capable. Also, node2 is a
1209 caa6c07d Constantinos Venetsanopoulos
:ref:`GANETI-NODE <GANETI_NODES>` and is Master-capable and VM-capable too.
1210 caa6c07d Constantinos Venetsanopoulos
1211 caa6c07d Constantinos Venetsanopoulos
We highly recommend that you read the official Ganeti documentation, if you are
1212 576e059b Constantinos Venetsanopoulos
not familiar with Ganeti.
1213 f1f5235e Dimitris Aragiorgis
1214 0c068fc6 marioskogias
Unfortunately, the current stable version of the stock Ganeti (v2.6.2) doesn't
1215 576e059b Constantinos Venetsanopoulos
support IP pool management. This feature will be available in Ganeti >= 2.7.
1216 576e059b Constantinos Venetsanopoulos
Synnefo depends on the IP pool functionality of Ganeti, so you have to use
1217 0c068fc6 marioskogias
GRNET provided packages until stable 2.7 is out. These packages will also install
1218 0c068fc6 marioskogias
the proper version of Ganeti. To do so:
1219 f1f5235e Dimitris Aragiorgis
1220 f1f5235e Dimitris Aragiorgis
.. code-block:: console
1221 f1f5235e Dimitris Aragiorgis
1222 576e059b Constantinos Venetsanopoulos
   # apt-get install snf-ganeti ganeti-htools
1223 cc16407a Dimitris Aragiorgis
1224 dd45ee44 Dionysis Grigoropoulos
Ganeti will make use of drbd. To enable this and make the configuration pemanent
1225 0c068fc6 marioskogias
you have to do the following :
1226 0c068fc6 marioskogias
1227 0c068fc6 marioskogias
.. code-block:: console
1228 0c068fc6 marioskogias
1229 dd45ee44 Dionysis Grigoropoulos
		# rmmod -f drbd && modprobe drbd minor_count=255 usermode_helper=/bin/true
1230 0c068fc6 marioskogias
		# echo 'drbd minor_count=255 usermode_helper=/bin/true' >> /etc/modules
1231 cc16407a Dimitris Aragiorgis
1232 caa6c07d Constantinos Venetsanopoulos
1233 caa6c07d Constantinos Venetsanopoulos
We assume that Ganeti will use the KVM hypervisor. After installing Ganeti on
1234 92e4d1c6 Dimitris Aragiorgis
both nodes, choose a domain name that resolves to a valid floating IP (let's
1235 dd45ee44 Dionysis Grigoropoulos
say it's ``ganeti.node1.example.com``). This IP is needed to communicate with
1236 dd45ee44 Dionysis Grigoropoulos
the Ganeti cluster. Make sure node1 and node2 have same dsa,rsa keys and authorised_keys
1237 dd45ee44 Dionysis Grigoropoulos
for password-less root ssh between each other. If not then skip passing --no-ssh-init but be
1238 dd45ee44 Dionysis Grigoropoulos
aware that it will replace /root/.ssh/* related files and you might lose access to master node.
1239 dd45ee44 Dionysis Grigoropoulos
Also, Ganeti will need a volume to host your VMs' disks. So, make sure there is an lvm volume
1240 dd45ee44 Dionysis Grigoropoulos
group named ``ganeti``. Finally, setup a bridge interface on the host machines (e.g: br0). This
1241 0c068fc6 marioskogias
will be needed for the network configuration afterwards.
1242 0c068fc6 marioskogias
1243 92e4d1c6 Dimitris Aragiorgis
Then run on node1:
1244 caa6c07d Constantinos Venetsanopoulos
1245 caa6c07d Constantinos Venetsanopoulos
.. code-block:: console
1246 caa6c07d Constantinos Venetsanopoulos
1247 d587329c Konstantinos Tompoulidis
    root@node1:~ # gnt-cluster init --enabled-hypervisors=kvm --no-ssh-init \
1248 d587329c Konstantinos Tompoulidis
                    --no-etc-hosts --vg-name=ganeti --nic-parameters link=br0 \
1249 d587329c Konstantinos Tompoulidis
                    --master-netdev eth0 ganeti.node1.example.com
1250 d587329c Konstantinos Tompoulidis
    root@node1:~ # gnt-cluster modify --default-iallocator hail
1251 d587329c Konstantinos Tompoulidis
    root@node1:~ # gnt-cluster modify --hypervisor-parameters kvm:kernel_path=
1252 d587329c Konstantinos Tompoulidis
    root@node1:~ # gnt-cluster modify --hypervisor-parameters kvm:vnc_bind_address=0.0.0.0
1253 caa6c07d Constantinos Venetsanopoulos
1254 d587329c Konstantinos Tompoulidis
    root@node1:~ # gnt-node add --no-ssh-key-check --master-capable=yes \
1255 d587329c Konstantinos Tompoulidis
                    --vm-capable=yes node2.example.com
1256 d587329c Konstantinos Tompoulidis
    root@node1:~ # gnt-cluster modify --disk-parameters=drbd:metavg=ganeti
1257 d587329c Konstantinos Tompoulidis
    root@node1:~ # gnt-group modify --disk-parameters=drbd:metavg=ganeti default
1258 caa6c07d Constantinos Venetsanopoulos
1259 caa6c07d Constantinos Venetsanopoulos
For any problems you may stumble upon installing Ganeti, please refer to the
1260 e332c1fd Stratos Psomadakis
`official documentation <http://docs.ganeti.org/ganeti/2.6/html>`_. Installation
1261 caa6c07d Constantinos Venetsanopoulos
of Ganeti is out of the scope of this guide.
1262 caa6c07d Constantinos Venetsanopoulos
1263 caa6c07d Constantinos Venetsanopoulos
.. _cyclades-install-snfimage:
1264 caa6c07d Constantinos Venetsanopoulos
1265 caa6c07d Constantinos Venetsanopoulos
snf-image
1266 7a8df455 Constantinos Venetsanopoulos
---------
1267 caa6c07d Constantinos Venetsanopoulos
1268 caa6c07d Constantinos Venetsanopoulos
Installation
1269 7a8df455 Constantinos Venetsanopoulos
~~~~~~~~~~~~
1270 caa6c07d Constantinos Venetsanopoulos
For :ref:`Cyclades <cyclades>` to be able to launch VMs from specified Images,
1271 59ab0466 Nikos Skalkotos
you need the :ref:
1272 59ab0466 Nikos Skalkotos
`snf-image <http://www.synnefo.org/docs/snf-image/latest/index.html>` OS
1273 59ab0466 Nikos Skalkotos
Definition installed on *all* VM-capable Ganeti nodes. This means we need
1274 59ab0466 Nikos Skalkotos
:ref:`snf-image <http://www.synnefo.org/docs/snf-image/latest/index.html>` on
1275 caa6c07d Constantinos Venetsanopoulos
node1 and node2. You can do this by running on *both* nodes:
1276 caa6c07d Constantinos Venetsanopoulos
1277 caa6c07d Constantinos Venetsanopoulos
.. code-block:: console
1278 caa6c07d Constantinos Venetsanopoulos
1279 d587329c Konstantinos Tompoulidis
   # apt-get install snf-image snf-pithos-backend python-psycopg2
1280 1a37da56 Constantinos Venetsanopoulos
1281 d587329c Konstantinos Tompoulidis
snf-image also needs the `snf-pithos-backend <snf-pithos-backend>`, to be able
1282 e5d8df8c Constantinos Venetsanopoulos
to handle image files stored on Pithos. It also needs `python-psycopg2` to be
1283 e5d8df8c Constantinos Venetsanopoulos
able to access the Pithos database. This is why, we also install them on *all*
1284 1a37da56 Constantinos Venetsanopoulos
VM-capable Ganeti nodes.
1285 caa6c07d Constantinos Venetsanopoulos
1286 dd45ee44 Dionysis Grigoropoulos
.. warning::
1287 0c068fc6 marioskogias
		snf-image uses ``curl`` for handling URLs. This means that it will
1288 0c068fc6 marioskogias
		not  work out of the box if you try to use URLs served by servers which do
1289 0c068fc6 marioskogias
		not have a valid certificate. In case you haven't followed the guide's
1290 0c068fc6 marioskogias
		directions about the certificates,in order to circumvent this you should edit the file
1291 0c068fc6 marioskogias
		``/etc/default/snf-image``. Change ``#CURL="curl"`` to ``CURL="curl -k"`` on every node.
1292 d587329c Konstantinos Tompoulidis
1293 caa6c07d Constantinos Venetsanopoulos
Configuration
1294 7a8df455 Constantinos Venetsanopoulos
~~~~~~~~~~~~~
1295 e5d8df8c Constantinos Venetsanopoulos
snf-image supports native access to Images stored on Pithos. This means that
1296 e5d8df8c Constantinos Venetsanopoulos
it can talk directly to the Pithos backend, without the need of providing a
1297 d587329c Konstantinos Tompoulidis
public URL. More details, are described in the next section. For now, the only
1298 e5d8df8c Constantinos Venetsanopoulos
thing we need to do, is configure snf-image to access our Pithos backend.
1299 caa6c07d Constantinos Venetsanopoulos
1300 caa6c07d Constantinos Venetsanopoulos
To do this, we need to set the corresponding variables in
1301 e5d8df8c Constantinos Venetsanopoulos
``/etc/default/snf-image``, to reflect our Pithos setup:
1302 caa6c07d Constantinos Venetsanopoulos
1303 caa6c07d Constantinos Venetsanopoulos
.. code-block:: console
1304 caa6c07d Constantinos Venetsanopoulos
1305 d587329c Konstantinos Tompoulidis
    PITHOS_DB="postgresql://synnefo:example_passw0rd@node1.example.com:5432/snf_pithos"
1306 caa6c07d Constantinos Venetsanopoulos
1307 d587329c Konstantinos Tompoulidis
    PITHOS_DATA="/srv/pithos/data"
1308 caa6c07d Constantinos Venetsanopoulos
1309 d587329c Konstantinos Tompoulidis
If you have installed your Ganeti cluster on different nodes than node1 and
1310 d587329c Konstantinos Tompoulidis
node2 make sure that ``/srv/pithos/data`` is visible by all of them.
1311 caa6c07d Constantinos Venetsanopoulos
1312 caa6c07d Constantinos Venetsanopoulos
If you would like to use Images that are also/only stored locally, you need to
1313 caa6c07d Constantinos Venetsanopoulos
save them under ``IMAGE_DIR``, however this guide targets Images stored only on
1314 e5d8df8c Constantinos Venetsanopoulos
Pithos.
1315 caa6c07d Constantinos Venetsanopoulos
1316 caa6c07d Constantinos Venetsanopoulos
Testing
1317 7a8df455 Constantinos Venetsanopoulos
~~~~~~~
1318 caa6c07d Constantinos Venetsanopoulos
You can test that snf-image is successfully installed by running on the
1319 caa6c07d Constantinos Venetsanopoulos
:ref:`GANETI-MASTER <GANETI_NODES>` (in our case node1):
1320 caa6c07d Constantinos Venetsanopoulos
1321 caa6c07d Constantinos Venetsanopoulos
.. code-block:: console
1322 caa6c07d Constantinos Venetsanopoulos
1323 caa6c07d Constantinos Venetsanopoulos
   # gnt-os diagnose
1324 caa6c07d Constantinos Venetsanopoulos
1325 caa6c07d Constantinos Venetsanopoulos
This should return ``valid`` for snf-image.
1326 caa6c07d Constantinos Venetsanopoulos
1327 caa6c07d Constantinos Venetsanopoulos
If you are interested to learn more about snf-image's internals (and even use
1328 caa6c07d Constantinos Venetsanopoulos
it alongside Ganeti without Synnefo), please see
1329 5beef175 Nikos Skalkotos
`here <http://www.synnefo.org/docs/snf-image/latest/index.html>`_ for information
1330 d587329c Konstantinos Tompoulidis
concerning installation instructions, documentation on the design and
1331 d587329c Konstantinos Tompoulidis
implementation, and supported Image formats.
1332 caa6c07d Constantinos Venetsanopoulos
1333 8a4cd31b Constantinos Venetsanopoulos
.. _snf-image-images:
1334 8a4cd31b Constantinos Venetsanopoulos
1335 cd837dad Constantinos Venetsanopoulos
Actual Images for snf-image
1336 cd837dad Constantinos Venetsanopoulos
---------------------------
1337 caa6c07d Constantinos Venetsanopoulos
1338 caa6c07d Constantinos Venetsanopoulos
Now that snf-image is installed successfully we need to provide it with some
1339 59ab0466 Nikos Skalkotos
Images.
1340 59ab0466 Nikos Skalkotos
:ref:`snf-image <http://www.synnefo.org/docs/snf-image/latest/index.html>`
1341 59ab0466 Nikos Skalkotos
supports Images stored in ``extdump``, ``ntfsdump`` or ``diskdump`` format. We
1342 59ab0466 Nikos Skalkotos
recommend the use of the ``diskdump`` format. For more information about
1343 59ab0466 Nikos Skalkotos
snf-image Image formats see `here
1344 5beef175 Nikos Skalkotos
<http://www.synnefo.org/docs/snf-image/latest/usage.html#image-format>`_.
1345 caa6c07d Constantinos Venetsanopoulos
1346 59ab0466 Nikos Skalkotos
:ref:`snf-image <http://www.synnefo.org/docs/snf-image/latest/index.html>`
1347 59ab0466 Nikos Skalkotos
also supports three (3) different locations for the above Images to be stored:
1348 caa6c07d Constantinos Venetsanopoulos
1349 d587329c Konstantinos Tompoulidis
    * Under a local folder (usually an NFS mount, configurable as ``IMAGE_DIR``
1350 d587329c Konstantinos Tompoulidis
      in :file:`/etc/default/snf-image`)
1351 d587329c Konstantinos Tompoulidis
    * On a remote host (accessible via public URL e.g: http://... or ftp://...)
1352 e5d8df8c Constantinos Venetsanopoulos
    * On Pithos (accessible natively, not only by its public URL)
1353 caa6c07d Constantinos Venetsanopoulos
1354 d587329c Konstantinos Tompoulidis
For the purpose of this guide, we will use the Debian Squeeze Base Image found
1355 d587329c Konstantinos Tompoulidis
on the official `snf-image page
1356 5beef175 Nikos Skalkotos
<http://www.synnefo.org/docs/snf-image/latest/usage.html#sample-images>`_. The
1357 5beef175 Nikos Skalkotos
image is of type ``diskdump``. We will store it in our new Pithos installation.
1358 caa6c07d Constantinos Venetsanopoulos
1359 caa6c07d Constantinos Venetsanopoulos
To do so, do the following:
1360 caa6c07d Constantinos Venetsanopoulos
1361 d587329c Konstantinos Tompoulidis
a) Download the Image from the official snf-image page.
1362 caa6c07d Constantinos Venetsanopoulos
1363 e5d8df8c Constantinos Venetsanopoulos
b) Upload the Image to your Pithos installation, either using the Pithos Web
1364 d587329c Konstantinos Tompoulidis
   UI or the command line client `kamaki
1365 34e79416 Constantinos Venetsanopoulos
   <http://www.synnefo.org/docs/kamaki/latest/index.html>`_.
1366 caa6c07d Constantinos Venetsanopoulos
1367 caa6c07d Constantinos Venetsanopoulos
Once the Image is uploaded successfully, download the Image's metadata file
1368 d587329c Konstantinos Tompoulidis
from the official snf-image page. You will need it, for spawning a VM from
1369 d587329c Konstantinos Tompoulidis
Ganeti, in the next section.
1370 caa6c07d Constantinos Venetsanopoulos
1371 d587329c Konstantinos Tompoulidis
Of course, you can repeat the procedure to upload more Images, available from
1372 d587329c Konstantinos Tompoulidis
the `official snf-image page
1373 5beef175 Nikos Skalkotos
<http://www.synnefo.org/docs/snf-image/latest/usage.html#sample-images>`_.
1374 caa6c07d Constantinos Venetsanopoulos
1375 8a4cd31b Constantinos Venetsanopoulos
.. _ganeti-with-pithos-images:
1376 8a4cd31b Constantinos Venetsanopoulos
1377 e5d8df8c Constantinos Venetsanopoulos
Spawning a VM from a Pithos Image, using Ganeti
1378 e5d8df8c Constantinos Venetsanopoulos
-----------------------------------------------
1379 caa6c07d Constantinos Venetsanopoulos
1380 caa6c07d Constantinos Venetsanopoulos
Now, it is time to test our installation so far. So, we have Astakos and
1381 e5d8df8c Constantinos Venetsanopoulos
Pithos installed, we have a working Ganeti installation, the snf-image
1382 caa6c07d Constantinos Venetsanopoulos
definition installed on all VM-capable nodes and a Debian Squeeze Image on
1383 e5d8df8c Constantinos Venetsanopoulos
Pithos. Make sure you also have the `metadata file
1384 caa6c07d Constantinos Venetsanopoulos
<https://pithos.okeanos.grnet.gr/public/gwqcv>`_ for this image.
1385 caa6c07d Constantinos Venetsanopoulos
1386 caa6c07d Constantinos Venetsanopoulos
Run on the :ref:`GANETI-MASTER's <GANETI_NODES>` (node1) command line:
1387 caa6c07d Constantinos Venetsanopoulos
1388 caa6c07d Constantinos Venetsanopoulos
.. code-block:: console
1389 caa6c07d Constantinos Venetsanopoulos
1390 cc16407a Dimitris Aragiorgis
   # gnt-instance add -o snf-image+default --os-parameters \
1391 d587329c Konstantinos Tompoulidis
                      img_passwd=my_vm_example_passw0rd,img_format=diskdump,img_id="pithos://UUID/pithos/debian_base-6.0-7-x86_64.diskdump",img_properties='{"OSFAMILY":"linux"\,"ROOT_PARTITION":"1"}' \
1392 cc16407a Dimitris Aragiorgis
                      -t plain --disk 0:size=2G --no-name-check --no-ip-check \
1393 caa6c07d Constantinos Venetsanopoulos
                      testvm1
1394 caa6c07d Constantinos Venetsanopoulos
1395 caa6c07d Constantinos Venetsanopoulos
In the above command:
1396 caa6c07d Constantinos Venetsanopoulos
1397 caa6c07d Constantinos Venetsanopoulos
 * ``img_passwd``: the arbitrary root password of your new instance
1398 caa6c07d Constantinos Venetsanopoulos
 * ``img_format``: set to ``diskdump`` to reflect the type of the uploaded Image
1399 e5d8df8c Constantinos Venetsanopoulos
 * ``img_id``: If you want to deploy an Image stored on Pithos (our case), this
1400 d587329c Konstantinos Tompoulidis
               should have the format ``pithos://<UUID>/<container>/<filename>``:
1401 0c068fc6 marioskogias
               * ``UUID``: the username found in Cyclades Web UI under API access
1402 301294a9 Constantinos Venetsanopoulos
               * ``container``: ``pithos`` (default, if the Web UI was used)
1403 301294a9 Constantinos Venetsanopoulos
               * ``filename``: the name of file (visible also from the Web UI)
1404 caa6c07d Constantinos Venetsanopoulos
 * ``img_properties``: taken from the metadata file. Used only the two mandatory
1405 caa6c07d Constantinos Venetsanopoulos
                       properties ``OSFAMILY`` and ``ROOT_PARTITION``. `Learn more
1406 5beef175 Nikos Skalkotos
                       <http://www.synnefo.org/docs/snf-image/latest/usage.html#image-properties>`_
1407 caa6c07d Constantinos Venetsanopoulos
1408 caa6c07d Constantinos Venetsanopoulos
If the ``gnt-instance add`` command returns successfully, then run:
1409 caa6c07d Constantinos Venetsanopoulos
1410 caa6c07d Constantinos Venetsanopoulos
.. code-block:: console
1411 caa6c07d Constantinos Venetsanopoulos
1412 caa6c07d Constantinos Venetsanopoulos
   # gnt-instance info testvm1 | grep "console connection"
1413 caa6c07d Constantinos Venetsanopoulos
1414 caa6c07d Constantinos Venetsanopoulos
to find out where to connect using VNC. If you can connect successfully and can
1415 caa6c07d Constantinos Venetsanopoulos
login to your new instance using the root password ``my_vm_example_passw0rd``,
1416 caa6c07d Constantinos Venetsanopoulos
then everything works as expected and you have your new Debian Base VM up and
1417 caa6c07d Constantinos Venetsanopoulos
running.
1418 caa6c07d Constantinos Venetsanopoulos
1419 caa6c07d Constantinos Venetsanopoulos
If ``gnt-instance add`` fails, make sure that snf-image is correctly configured
1420 e5d8df8c Constantinos Venetsanopoulos
to access the Pithos database and the Pithos backend data (newer versions
1421 d587329c Konstantinos Tompoulidis
require UUID instead of a username). Another issue you may encounter is that in
1422 d587329c Konstantinos Tompoulidis
relatively slow setups, you may need to raise the default HELPER_*_TIMEOUTS in
1423 d587329c Konstantinos Tompoulidis
/etc/default/snf-image. Also, make sure you gave the correct ``img_id`` and
1424 d587329c Konstantinos Tompoulidis
``img_properties``. If ``gnt-instance add`` succeeds but you cannot connect,
1425 d587329c Konstantinos Tompoulidis
again find out what went wrong. Do *NOT* proceed to the next steps unless you
1426 d587329c Konstantinos Tompoulidis
are sure everything works till this point.
1427 caa6c07d Constantinos Venetsanopoulos
1428 e5d8df8c Constantinos Venetsanopoulos
If everything works, you have successfully connected Ganeti with Pithos. Let's
1429 2f6143c9 Constantinos Venetsanopoulos
move on to networking now.
1430 caa6c07d Constantinos Venetsanopoulos
1431 2f6143c9 Constantinos Venetsanopoulos
.. warning::
1432 e4404297 Christos Stavrakakis
1433 7a8df455 Constantinos Venetsanopoulos
    You can bypass the networking sections and go straight to
1434 2c85833e Constantinos Venetsanopoulos
    :ref:`Cyclades Ganeti tools <cyclades-gtools>`, if you do not want to setup
1435 2c85833e Constantinos Venetsanopoulos
    the Cyclades Network Service, but only the Cyclades Compute Service
1436 2c85833e Constantinos Venetsanopoulos
    (recommended for now).
1437 2f6143c9 Constantinos Venetsanopoulos
1438 cc16407a Dimitris Aragiorgis
Networking Setup Overview
1439 cc16407a Dimitris Aragiorgis
-------------------------
1440 2f6143c9 Constantinos Venetsanopoulos
1441 2f6143c9 Constantinos Venetsanopoulos
This part is deployment-specific and must be customized based on the specific
1442 2f6143c9 Constantinos Venetsanopoulos
needs of the system administrator. However, to do so, the administrator needs
1443 2f6143c9 Constantinos Venetsanopoulos
to understand how each level handles Virtual Networks, to be able to setup the
1444 b11446c1 Constantinos Venetsanopoulos
backend appropriately, before installing Cyclades. To do so, please read the
1445 b11446c1 Constantinos Venetsanopoulos
:ref:`Network <networks>` section before proceeding.
1446 2f6143c9 Constantinos Venetsanopoulos
1447 cc16407a Dimitris Aragiorgis
Since synnefo 0.11 all network actions are managed with the snf-manage
1448 cc16407a Dimitris Aragiorgis
network-* commands. This needs the underlying setup (Ganeti, nfdhcpd,
1449 cc16407a Dimitris Aragiorgis
snf-network, bridges, vlans) to be already configured correctly. The only
1450 cc16407a Dimitris Aragiorgis
actions needed in this point are:
1451 cc16407a Dimitris Aragiorgis
1452 cc16407a Dimitris Aragiorgis
a) Have Ganeti with IP pool management support installed.
1453 2f6143c9 Constantinos Venetsanopoulos
1454 cc16407a Dimitris Aragiorgis
b) Install :ref:`snf-network <snf-network>`, which provides a synnefo specific kvm-ifup script, etc.
1455 2f6143c9 Constantinos Venetsanopoulos
1456 cc16407a Dimitris Aragiorgis
c) Install :ref:`nfdhcpd <nfdhcpd>`, which serves DHCP requests of the VMs.
1457 2f6143c9 Constantinos Venetsanopoulos
1458 cc16407a Dimitris Aragiorgis
In order to test that everything is setup correctly before installing Cyclades,
1459 cc16407a Dimitris Aragiorgis
we will make some testing actions in this section, and the actual setup will be
1460 cc16407a Dimitris Aragiorgis
done afterwards with snf-manage commands.
1461 2f6143c9 Constantinos Venetsanopoulos
1462 cc16407a Dimitris Aragiorgis
.. _snf-network:
1463 2f6143c9 Constantinos Venetsanopoulos
1464 cc16407a Dimitris Aragiorgis
snf-network
1465 cc16407a Dimitris Aragiorgis
~~~~~~~~~~~
1466 2f6143c9 Constantinos Venetsanopoulos
1467 cc16407a Dimitris Aragiorgis
snf-network includes `kvm-vif-bridge` script that is invoked every time
1468 cc16407a Dimitris Aragiorgis
a tap (a VM's NIC) is created. Based on environment variables passed by
1469 cc16407a Dimitris Aragiorgis
Ganeti it issues various commands depending on the network type the NIC is
1470 cc16407a Dimitris Aragiorgis
connected to and sets up a corresponding dhcp lease.
1471 2f6143c9 Constantinos Venetsanopoulos
1472 cc16407a Dimitris Aragiorgis
Install snf-network on all Ganeti nodes:
1473 2f6143c9 Constantinos Venetsanopoulos
1474 2f6143c9 Constantinos Venetsanopoulos
.. code-block:: console
1475 2f6143c9 Constantinos Venetsanopoulos
1476 cc16407a Dimitris Aragiorgis
   # apt-get install snf-network
1477 2f6143c9 Constantinos Venetsanopoulos
1478 cc16407a Dimitris Aragiorgis
Then, in :file:`/etc/default/snf-network` set:
1479 2f6143c9 Constantinos Venetsanopoulos
1480 2f6143c9 Constantinos Venetsanopoulos
.. code-block:: console
1481 2f6143c9 Constantinos Venetsanopoulos
1482 cc16407a Dimitris Aragiorgis
   MAC_MASK=ff:ff:f0:00:00:00
1483 2f6143c9 Constantinos Venetsanopoulos
1484 cc16407a Dimitris Aragiorgis
.. _nfdhcpd:
1485 2f6143c9 Constantinos Venetsanopoulos
1486 cc16407a Dimitris Aragiorgis
nfdhcpd
1487 7a8df455 Constantinos Venetsanopoulos
~~~~~~~
1488 2f6143c9 Constantinos Venetsanopoulos
1489 cc16407a Dimitris Aragiorgis
Each NIC's IP is chosen by Ganeti (with IP pool management support).
1490 cc16407a Dimitris Aragiorgis
`kvm-vif-bridge` script sets up dhcp leases and when the VM boots and
1491 cc16407a Dimitris Aragiorgis
makes a dhcp request, iptables will mangle the packet and `nfdhcpd` will
1492 cc16407a Dimitris Aragiorgis
create a dhcp response.
1493 2f6143c9 Constantinos Venetsanopoulos
1494 2f6143c9 Constantinos Venetsanopoulos
.. code-block:: console
1495 2f6143c9 Constantinos Venetsanopoulos
1496 cc16407a Dimitris Aragiorgis
   # apt-get install nfqueue-bindings-python=0.3+physindev-1
1497 2f6143c9 Constantinos Venetsanopoulos
   # apt-get install nfdhcpd
1498 2f6143c9 Constantinos Venetsanopoulos
1499 2f6143c9 Constantinos Venetsanopoulos
Edit ``/etc/nfdhcpd/nfdhcpd.conf`` to reflect your network configuration. At
1500 2f6143c9 Constantinos Venetsanopoulos
least, set the ``dhcp_queue`` variable to ``42`` and the ``nameservers``
1501 2f6143c9 Constantinos Venetsanopoulos
variable to your DNS IP/s. Those IPs will be passed as the DNS IP/s of your new
1502 2f6143c9 Constantinos Venetsanopoulos
VMs. Once you are finished, restart the server on all nodes:
1503 2f6143c9 Constantinos Venetsanopoulos
1504 2f6143c9 Constantinos Venetsanopoulos
.. code-block:: console
1505 2f6143c9 Constantinos Venetsanopoulos
1506 2f6143c9 Constantinos Venetsanopoulos
   # /etc/init.d/nfdhcpd restart
1507 2f6143c9 Constantinos Venetsanopoulos
1508 2f6143c9 Constantinos Venetsanopoulos
If you are using ``ferm``, then you need to run the following:
1509 2f6143c9 Constantinos Venetsanopoulos
1510 2f6143c9 Constantinos Venetsanopoulos
.. code-block:: console
1511 2f6143c9 Constantinos Venetsanopoulos
1512 2f6143c9 Constantinos Venetsanopoulos
   # echo "@include 'nfdhcpd.ferm';" >> /etc/ferm/ferm.conf
1513 2f6143c9 Constantinos Venetsanopoulos
   # /etc/init.d/ferm restart
1514 2f6143c9 Constantinos Venetsanopoulos
1515 cc16407a Dimitris Aragiorgis
or make sure to run after boot:
1516 cc16407a Dimitris Aragiorgis
1517 cc16407a Dimitris Aragiorgis
.. code-block:: console
1518 cc16407a Dimitris Aragiorgis
1519 cc16407a Dimitris Aragiorgis
   # iptables -t mangle -A PREROUTING -p udp -m udp --dport 67 -j NFQUEUE --queue-num 42
1520 cc16407a Dimitris Aragiorgis
1521 cc16407a Dimitris Aragiorgis
and if you have IPv6 enabled:
1522 cc16407a Dimitris Aragiorgis
1523 cc16407a Dimitris Aragiorgis
.. code-block:: console
1524 cc16407a Dimitris Aragiorgis
1525 cc16407a Dimitris Aragiorgis
   # ip6tables -t mangle -A PREROUTING -p ipv6-icmp -m icmp6 --icmpv6-type 133 -j NFQUEUE --queue-num 43
1526 cc16407a Dimitris Aragiorgis
   # ip6tables -t mangle -A PREROUTING -p ipv6-icmp -m icmp6 --icmpv6-type 135 -j NFQUEUE --queue-num 44
1527 cc16407a Dimitris Aragiorgis
1528 cc16407a Dimitris Aragiorgis
You can check which clients are currently served by nfdhcpd by running:
1529 cc16407a Dimitris Aragiorgis
1530 cc16407a Dimitris Aragiorgis
.. code-block:: console
1531 cc16407a Dimitris Aragiorgis
1532 cc16407a Dimitris Aragiorgis
   # kill -SIGUSR1 `cat /var/run/nfdhcpd/nfdhcpd.pid`
1533 cc16407a Dimitris Aragiorgis
1534 cc16407a Dimitris Aragiorgis
When you run the above, then check ``/var/log/nfdhcpd/nfdhcpd.log``.
1535 cc16407a Dimitris Aragiorgis
1536 cc16407a Dimitris Aragiorgis
Public Network Setup
1537 cc16407a Dimitris Aragiorgis
--------------------
1538 cc16407a Dimitris Aragiorgis
1539 cc16407a Dimitris Aragiorgis
To achieve basic networking the simplest way is to have a common bridge (e.g.
1540 d587329c Konstantinos Tompoulidis
``br0``, on the same collision domain with the router) where all VMs will
1541 d587329c Konstantinos Tompoulidis
connect to. Packets will be "forwarded" to the router and then to the Internet.
1542 d587329c Konstantinos Tompoulidis
If you want a more advanced setup (ip-less routing and proxy-arp plese refer to
1543 cc16407a Dimitris Aragiorgis
:ref:`Network <networks>` section).
1544 cc16407a Dimitris Aragiorgis
1545 cc16407a Dimitris Aragiorgis
Physical Host Setup
1546 cc16407a Dimitris Aragiorgis
~~~~~~~~~~~~~~~~~~~
1547 cc16407a Dimitris Aragiorgis
1548 cc16407a Dimitris Aragiorgis
Assuming ``eth0`` on both hosts is the public interface (directly connected
1549 cc16407a Dimitris Aragiorgis
to the router), run on every node:
1550 2f6143c9 Constantinos Venetsanopoulos
1551 cc16407a Dimitris Aragiorgis
.. code-block:: console
1552 bc7e4f5f Stratos Psomadakis
1553 d587329c Konstantinos Tompoulidis
   # apt-get install vlan
1554 cc16407a Dimitris Aragiorgis
   # brctl addbr br0
1555 cc16407a Dimitris Aragiorgis
   # ip link set br0 up
1556 cc16407a Dimitris Aragiorgis
   # vconfig add eth0 100
1557 cc16407a Dimitris Aragiorgis
   # ip link set eth0.100 up
1558 cc16407a Dimitris Aragiorgis
   # brctl addif br0 eth0.100
1559 cc16407a Dimitris Aragiorgis
1560 cc16407a Dimitris Aragiorgis
1561 cc16407a Dimitris Aragiorgis
Testing a Public Network
1562 cc16407a Dimitris Aragiorgis
~~~~~~~~~~~~~~~~~~~~~~~~
1563 cc16407a Dimitris Aragiorgis
1564 cc16407a Dimitris Aragiorgis
Let's assume, that you want to assign IPs from the ``5.6.7.0/27`` range to you
1565 cc16407a Dimitris Aragiorgis
new VMs, with ``5.6.7.1`` as the router's gateway. In Ganeti you can add the
1566 cc16407a Dimitris Aragiorgis
network by running:
1567 cc16407a Dimitris Aragiorgis
1568 cc16407a Dimitris Aragiorgis
.. code-block:: console
1569 cc16407a Dimitris Aragiorgis
1570 cc16407a Dimitris Aragiorgis
   # gnt-network add --network=5.6.7.0/27 --gateway=5.6.7.1 --network-type=public --tags=nfdhcpd test-net-public
1571 2f6143c9 Constantinos Venetsanopoulos
1572 cc16407a Dimitris Aragiorgis
Then, connect the network to all your nodegroups. We assume that we only have
1573 cc16407a Dimitris Aragiorgis
one nodegroup (``default``) in our Ganeti cluster:
1574 cc16407a Dimitris Aragiorgis
1575 cc16407a Dimitris Aragiorgis
.. code-block:: console
1576 cc16407a Dimitris Aragiorgis
1577 cc16407a Dimitris Aragiorgis
   # gnt-network connect test-net-public default bridged br0
1578 2f6143c9 Constantinos Venetsanopoulos
1579 2f6143c9 Constantinos Venetsanopoulos
Now, it is time to test that the backend infrastracture is correctly setup for
1580 cc16407a Dimitris Aragiorgis
the Public Network. We will add a new VM, the same way we did it on the
1581 cc16407a Dimitris Aragiorgis
previous testing section. However, now will also add one NIC, configured to be
1582 cc16407a Dimitris Aragiorgis
managed from our previously defined network. Run on the GANETI-MASTER (node1):
1583 2f6143c9 Constantinos Venetsanopoulos
1584 2f6143c9 Constantinos Venetsanopoulos
.. code-block:: console
1585 2f6143c9 Constantinos Venetsanopoulos
1586 cc16407a Dimitris Aragiorgis
   # gnt-instance add -o snf-image+default --os-parameters \
1587 d587329c Konstantinos Tompoulidis
                      img_passwd=my_vm_example_passw0rd,img_format=diskdump,img_id="pithos://UUID/pithos/debian_base-6.0-7-x86_64.diskdump",img_properties='{"OSFAMILY":"linux"\,"ROOT_PARTITION":"1"}' \
1588 cc16407a Dimitris Aragiorgis
                      -t plain --disk 0:size=2G --no-name-check --no-ip-check \
1589 cc16407a Dimitris Aragiorgis
                      --net 0:ip=pool,network=test-net-public \
1590 2f6143c9 Constantinos Venetsanopoulos
                      testvm2
1591 2f6143c9 Constantinos Venetsanopoulos
1592 0c068fc6 marioskogias
If the above returns successfully, connect to the new VM through VNC as before and run:
1593 2f6143c9 Constantinos Venetsanopoulos
1594 2f6143c9 Constantinos Venetsanopoulos
.. code-block:: console
1595 2f6143c9 Constantinos Venetsanopoulos
1596 cc16407a Dimitris Aragiorgis
   root@testvm2:~ # ip addr
1597 cc16407a Dimitris Aragiorgis
   root@testvm2:~ # ip route
1598 cc16407a Dimitris Aragiorgis
   root@testvm2:~ # cat /etc/resolv.conf
1599 2f6143c9 Constantinos Venetsanopoulos
1600 cc16407a Dimitris Aragiorgis
to check IP address (5.6.7.2), IP routes (default via 5.6.7.1) and DNS config
1601 cc16407a Dimitris Aragiorgis
(nameserver option in nfdhcpd.conf). This shows correct configuration of
1602 cc16407a Dimitris Aragiorgis
ganeti, snf-network and nfdhcpd.
1603 2f6143c9 Constantinos Venetsanopoulos
1604 2f6143c9 Constantinos Venetsanopoulos
Now ping the outside world. If this works too, then you have also configured
1605 cc16407a Dimitris Aragiorgis
correctly your physical host and router.
1606 547c78f6 Constantinos Venetsanopoulos
1607 547c78f6 Constantinos Venetsanopoulos
Make sure everything works as expected, before proceeding with the Private
1608 2f6143c9 Constantinos Venetsanopoulos
Networks setup.
1609 2f6143c9 Constantinos Venetsanopoulos
1610 04c1254b Constantinos Venetsanopoulos
.. _private-networks-setup:
1611 04c1254b Constantinos Venetsanopoulos
1612 cc16407a Dimitris Aragiorgis
Private Networks Setup
1613 7a8df455 Constantinos Venetsanopoulos
----------------------
1614 2f6143c9 Constantinos Venetsanopoulos
1615 cc16407a Dimitris Aragiorgis
Synnefo supports two types of private networks:
1616 cc16407a Dimitris Aragiorgis
1617 cc16407a Dimitris Aragiorgis
 - based on MAC filtering
1618 cc16407a Dimitris Aragiorgis
 - based on physical VLANs
1619 cc16407a Dimitris Aragiorgis
1620 cc16407a Dimitris Aragiorgis
Both types provide Layer 2 isolation to the end-user.
1621 2f6143c9 Constantinos Venetsanopoulos
1622 d587329c Konstantinos Tompoulidis
For the first type a common bridge (e.g. ``prv0``) is needed while for the
1623 d587329c Konstantinos Tompoulidis
second a range of bridges (e.g. ``prv1..prv100``) each bridged on a different
1624 d587329c Konstantinos Tompoulidis
physical VLAN. To this end to assure isolation among end-users' private networks
1625 d587329c Konstantinos Tompoulidis
each has to have different MAC prefix (for the filtering to take place) or to be
1626 cc16407a Dimitris Aragiorgis
"connected" to a different bridge (VLAN actually).
1627 547c78f6 Constantinos Venetsanopoulos
1628 cc16407a Dimitris Aragiorgis
Physical Host Setup
1629 cc16407a Dimitris Aragiorgis
~~~~~~~~~~~~~~~~~~~
1630 cc16407a Dimitris Aragiorgis
1631 cc16407a Dimitris Aragiorgis
In order to create the necessary VLAN/bridges, one for MAC filtered private
1632 cc16407a Dimitris Aragiorgis
networks and various (e.g. 20) for private networks based on physical VLANs,
1633 cc16407a Dimitris Aragiorgis
run on every node:
1634 547c78f6 Constantinos Venetsanopoulos
1635 cc16407a Dimitris Aragiorgis
Assuming ``eth0`` of both hosts are somehow (via cable/switch with VLANs
1636 cc16407a Dimitris Aragiorgis
configured correctly) connected together, run on every node:
1637 547c78f6 Constantinos Venetsanopoulos
1638 547c78f6 Constantinos Venetsanopoulos
.. code-block:: console
1639 547c78f6 Constantinos Venetsanopoulos
1640 cc16407a Dimitris Aragiorgis
   # modprobe 8021q
1641 547c78f6 Constantinos Venetsanopoulos
   # $iface=eth0
1642 cc16407a Dimitris Aragiorgis
   # for prv in $(seq 0 20); do
1643 d587329c Konstantinos Tompoulidis
        vlan=$prv
1644 d587329c Konstantinos Tompoulidis
        bridge=prv$prv
1645 d587329c Konstantinos Tompoulidis
        vconfig add $iface $vlan
1646 d587329c Konstantinos Tompoulidis
        ifconfig $iface.$vlan up
1647 d587329c Konstantinos Tompoulidis
        brctl addbr $bridge
1648 d587329c Konstantinos Tompoulidis
        brctl setfd $bridge 0
1649 d587329c Konstantinos Tompoulidis
        brctl addif $bridge $iface.$vlan
1650 d587329c Konstantinos Tompoulidis
        ifconfig $bridge up
1651 547c78f6 Constantinos Venetsanopoulos
      done
1652 547c78f6 Constantinos Venetsanopoulos
1653 cc16407a Dimitris Aragiorgis
The above will do the following :
1654 547c78f6 Constantinos Venetsanopoulos
1655 cc16407a Dimitris Aragiorgis
 * provision 21 new bridges: ``prv0`` - ``prv20``
1656 cc16407a Dimitris Aragiorgis
 * provision 21 new vlans: ``eth0.0`` - ``eth0.20``
1657 cc16407a Dimitris Aragiorgis
 * add the corresponding vlan to the equivalent bridge
1658 547c78f6 Constantinos Venetsanopoulos
1659 547c78f6 Constantinos Venetsanopoulos
You can run ``brctl show`` on both nodes to see if everything was setup
1660 547c78f6 Constantinos Venetsanopoulos
correctly.
1661 547c78f6 Constantinos Venetsanopoulos
1662 2f6143c9 Constantinos Venetsanopoulos
Testing the Private Networks
1663 7a8df455 Constantinos Venetsanopoulos
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1664 caa6c07d Constantinos Venetsanopoulos
1665 547c78f6 Constantinos Venetsanopoulos
To test the Private Networks, we will create two instances and put them in the
1666 cc16407a Dimitris Aragiorgis
same Private Networks (one MAC Filtered and one Physical VLAN). This means
1667 cc16407a Dimitris Aragiorgis
that the instances will have a second NIC connected to the ``prv0``
1668 cc16407a Dimitris Aragiorgis
pre-provisioned bridge and a third to ``prv1``.
1669 547c78f6 Constantinos Venetsanopoulos
1670 547c78f6 Constantinos Venetsanopoulos
We run the same command as in the Public Network testing section, but with one
1671 547c78f6 Constantinos Venetsanopoulos
more argument for the second NIC:
1672 547c78f6 Constantinos Venetsanopoulos
1673 547c78f6 Constantinos Venetsanopoulos
.. code-block:: console
1674 547c78f6 Constantinos Venetsanopoulos
1675 cc16407a Dimitris Aragiorgis
   # gnt-network add --network=192.168.1.0/24 --mac-prefix=aa:00:55 --network-type=private --tags=nfdhcpd,private-filtered test-net-prv-mac
1676 cc16407a Dimitris Aragiorgis
   # gnt-network connect test-net-prv-mac default bridged prv0
1677 cc16407a Dimitris Aragiorgis
1678 cc16407a Dimitris Aragiorgis
   # gnt-network add --network=10.0.0.0/24 --tags=nfdhcpd --network-type=private test-net-prv-vlan
1679 cc16407a Dimitris Aragiorgis
   # gnt-network connect test-net-prv-vlan default bridged prv1
1680 cc16407a Dimitris Aragiorgis
1681 cc16407a Dimitris Aragiorgis
   # gnt-instance add -o snf-image+default --os-parameters \
1682 d587329c Konstantinos Tompoulidis
                      img_passwd=my_vm_example_passw0rd,img_format=diskdump,img_id="pithos://UUID/pithos/debian_base-6.0-7-x86_64.diskdump",img_properties='{"OSFAMILY":"linux"\,"ROOT_PARTITION":"1"}' \
1683 cc16407a Dimitris Aragiorgis
                      -t plain --disk 0:size=2G --no-name-check --no-ip-check \
1684 cc16407a Dimitris Aragiorgis
                      --net 0:ip=pool,network=test-net-public \
1685 cc16407a Dimitris Aragiorgis
                      --net 1:ip=pool,network=test-net-prv-mac \
1686 cc16407a Dimitris Aragiorgis
                      --net 2:ip=none,network=test-net-prv-vlan \
1687 547c78f6 Constantinos Venetsanopoulos
                      testvm3
1688 547c78f6 Constantinos Venetsanopoulos
1689 cc16407a Dimitris Aragiorgis
   # gnt-instance add -o snf-image+default --os-parameters \
1690 d587329c Konstantinos Tompoulidis
                      img_passwd=my_vm_example_passw0rd,img_format=diskdump,img_id="pithos://UUID/pithos/debian_base-6.0-7-x86_64.diskdump",img_properties='{"OSFAMILY":"linux"\,"ROOT_PARTITION":"1"}' \
1691 cc16407a Dimitris Aragiorgis
                      -t plain --disk 0:size=2G --no-name-check --no-ip-check \
1692 cc16407a Dimitris Aragiorgis
                      --net 0:ip=pool,network=test-net-public \
1693 cc16407a Dimitris Aragiorgis
                      --net 1:ip=pool,network=test-net-prv-mac \
1694 cc16407a Dimitris Aragiorgis
                      --net 2:ip=none,network=test-net-prv-vlan \
1695 547c78f6 Constantinos Venetsanopoulos
                      testvm4
1696 547c78f6 Constantinos Venetsanopoulos
1697 cc16407a Dimitris Aragiorgis
Above, we create two instances with first NIC connected to the internet, their
1698 cc16407a Dimitris Aragiorgis
second NIC connected to a MAC filtered private Network and their third NIC
1699 cc16407a Dimitris Aragiorgis
connected to the first Physical VLAN Private Network. Now, connect to the
1700 cc16407a Dimitris Aragiorgis
instances using VNC and make sure everything works as expected:
1701 547c78f6 Constantinos Venetsanopoulos
1702 cc16407a Dimitris Aragiorgis
 a) The instances have access to the public internet through their first eth
1703 cc16407a Dimitris Aragiorgis
    interface (``eth0``), which has been automatically assigned a public IP.
1704 547c78f6 Constantinos Venetsanopoulos
1705 cc16407a Dimitris Aragiorgis
 b) ``eth1`` will have mac prefix ``aa:00:55``, while ``eth2`` default one (``aa:00:00``)
1706 547c78f6 Constantinos Venetsanopoulos
1707 cc16407a Dimitris Aragiorgis
 c) ip link set ``eth1``/``eth2`` up
1708 547c78f6 Constantinos Venetsanopoulos
1709 cc16407a Dimitris Aragiorgis
 d) dhclient ``eth1``/``eth2``
1710 547c78f6 Constantinos Venetsanopoulos
1711 cc16407a Dimitris Aragiorgis
 e) On testvm3  ping 192.168.1.2/10.0.0.2
1712 547c78f6 Constantinos Venetsanopoulos
1713 547c78f6 Constantinos Venetsanopoulos
If everything works as expected, then you have finished the Network Setup at the
1714 547c78f6 Constantinos Venetsanopoulos
backend for both types of Networks (Public & Private).
1715 547c78f6 Constantinos Venetsanopoulos
1716 2c85833e Constantinos Venetsanopoulos
.. _cyclades-gtools:
1717 2c85833e Constantinos Venetsanopoulos
1718 2c85833e Constantinos Venetsanopoulos
Cyclades Ganeti tools
1719 2c85833e Constantinos Venetsanopoulos
---------------------
1720 2c85833e Constantinos Venetsanopoulos
1721 2c85833e Constantinos Venetsanopoulos
In order for Ganeti to be connected with Cyclades later on, we need the
1722 2c85833e Constantinos Venetsanopoulos
`Cyclades Ganeti tools` available on all Ganeti nodes (node1 & node2 in our
1723 2c85833e Constantinos Venetsanopoulos
case). You can install them by running in both nodes:
1724 2c85833e Constantinos Venetsanopoulos
1725 2c85833e Constantinos Venetsanopoulos
.. code-block:: console
1726 2c85833e Constantinos Venetsanopoulos
1727 2c85833e Constantinos Venetsanopoulos
   # apt-get install snf-cyclades-gtools
1728 2c85833e Constantinos Venetsanopoulos
1729 2c85833e Constantinos Venetsanopoulos
This will install the following:
1730 2c85833e Constantinos Venetsanopoulos
1731 2c85833e Constantinos Venetsanopoulos
 * ``snf-ganeti-eventd`` (daemon to publish Ganeti related messages on RabbitMQ)
1732 2c85833e Constantinos Venetsanopoulos
 * ``snf-progress-monitor`` (used by ``snf-image`` to publish progress messages)
1733 2c85833e Constantinos Venetsanopoulos
1734 2c85833e Constantinos Venetsanopoulos
Configure ``snf-cyclades-gtools``
1735 2c85833e Constantinos Venetsanopoulos
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1736 2c85833e Constantinos Venetsanopoulos
1737 d587329c Konstantinos Tompoulidis
The package will install the ``/etc/synnefo/20-snf-cyclades-gtools-backend.conf``
1738 2c85833e Constantinos Venetsanopoulos
configuration file. At least we need to set the RabbitMQ endpoint for all tools
1739 2c85833e Constantinos Venetsanopoulos
that need it:
1740 2c85833e Constantinos Venetsanopoulos
1741 2c85833e Constantinos Venetsanopoulos
.. code-block:: console
1742 2c85833e Constantinos Venetsanopoulos
1743 d587329c Konstantinos Tompoulidis
  AMQP_HOSTS=["amqp://synnefo:example_rabbitmq_passw0rd@node1.example.com:5672"]
1744 2c85833e Constantinos Venetsanopoulos
1745 2c85833e Constantinos Venetsanopoulos
The above variables should reflect your :ref:`Message Queue setup
1746 2c85833e Constantinos Venetsanopoulos
<rabbitmq-setup>`. This file should be editted in all Ganeti nodes.
1747 2c85833e Constantinos Venetsanopoulos
1748 2c85833e Constantinos Venetsanopoulos
Connect ``snf-image`` with ``snf-progress-monitor``
1749 2c85833e Constantinos Venetsanopoulos
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1750 2c85833e Constantinos Venetsanopoulos
1751 2c85833e Constantinos Venetsanopoulos
Finally, we need to configure ``snf-image`` to publish progress messages during
1752 2c85833e Constantinos Venetsanopoulos
the deployment of each Image. To do this, we edit ``/etc/default/snf-image`` and
1753 2c85833e Constantinos Venetsanopoulos
set the corresponding variable to ``snf-progress-monitor``:
1754 2c85833e Constantinos Venetsanopoulos
1755 2c85833e Constantinos Venetsanopoulos
.. code-block:: console
1756 2c85833e Constantinos Venetsanopoulos
1757 2c85833e Constantinos Venetsanopoulos
   PROGRESS_MONITOR="snf-progress-monitor"
1758 2c85833e Constantinos Venetsanopoulos
1759 2c85833e Constantinos Venetsanopoulos
This file should be editted in all Ganeti nodes.
1760 2c85833e Constantinos Venetsanopoulos
1761 7a8df455 Constantinos Venetsanopoulos
.. _rapi-user:
1762 7a8df455 Constantinos Venetsanopoulos
1763 caa6c07d Constantinos Venetsanopoulos
Synnefo RAPI user
1764 7a8df455 Constantinos Venetsanopoulos
-----------------
1765 caa6c07d Constantinos Venetsanopoulos
1766 7a8df455 Constantinos Venetsanopoulos
As a last step before installing Cyclades, create a new RAPI user that will
1767 caa6c07d Constantinos Venetsanopoulos
have ``write`` access. Cyclades will use this user to issue commands to Ganeti,
1768 2c85833e Constantinos Venetsanopoulos
so we will call the user ``cyclades`` with password ``example_rapi_passw0rd``.
1769 2c85833e Constantinos Venetsanopoulos
You can do this, by first running:
1770 2c85833e Constantinos Venetsanopoulos
1771 2c85833e Constantinos Venetsanopoulos
.. code-block:: console
1772 2c85833e Constantinos Venetsanopoulos
1773 2c85833e Constantinos Venetsanopoulos
   # echo -n 'cyclades:Ganeti Remote API:example_rapi_passw0rd' | openssl md5
1774 2c85833e Constantinos Venetsanopoulos
1775 2c85833e Constantinos Venetsanopoulos
and then putting the output in ``/var/lib/ganeti/rapi/users`` as follows:
1776 caa6c07d Constantinos Venetsanopoulos
1777 caa6c07d Constantinos Venetsanopoulos
.. code-block:: console
1778 caa6c07d Constantinos Venetsanopoulos
1779 2c85833e Constantinos Venetsanopoulos
   cyclades {HA1}55aec7050aa4e4b111ca43cb505a61a0 write
1780 caa6c07d Constantinos Venetsanopoulos
1781 caa6c07d Constantinos Venetsanopoulos
More about Ganeti's RAPI users `here.
1782 e332c1fd Stratos Psomadakis
<http://docs.ganeti.org/ganeti/2.6/html/rapi.html#introduction>`_
1783 bc055d09 Constantinos Venetsanopoulos
1784 73ebcd68 Constantinos Venetsanopoulos
You have now finished with all needed Prerequisites for Cyclades. Let's move on
1785 73ebcd68 Constantinos Venetsanopoulos
to the actual Cyclades installation.
1786 7a8df455 Constantinos Venetsanopoulos
1787 7a8df455 Constantinos Venetsanopoulos
1788 73ebcd68 Constantinos Venetsanopoulos
Installation of Cyclades on node1
1789 73ebcd68 Constantinos Venetsanopoulos
=================================
1790 7a8df455 Constantinos Venetsanopoulos
1791 7a8df455 Constantinos Venetsanopoulos
This section describes the installation of Cyclades. Cyclades is Synnefo's
1792 73ebcd68 Constantinos Venetsanopoulos
Compute service. The Image Service will get installed automatically along with
1793 73ebcd68 Constantinos Venetsanopoulos
Cyclades, because it is contained in the same Synnefo component.
1794 7a8df455 Constantinos Venetsanopoulos
1795 73ebcd68 Constantinos Venetsanopoulos
We will install Cyclades on node1. To do so, we install the corresponding
1796 73ebcd68 Constantinos Venetsanopoulos
package by running on node1:
1797 04c1254b Constantinos Venetsanopoulos
1798 04c1254b Constantinos Venetsanopoulos
.. code-block:: console
1799 04c1254b Constantinos Venetsanopoulos
1800 d587329c Konstantinos Tompoulidis
   # apt-get install snf-cyclades-app memcached python-memcache
1801 04c1254b Constantinos Venetsanopoulos
1802 73ebcd68 Constantinos Venetsanopoulos
If all packages install successfully, then Cyclades are installed and we
1803 73ebcd68 Constantinos Venetsanopoulos
proceed with their configuration.
1804 04c1254b Constantinos Venetsanopoulos
1805 d587329c Konstantinos Tompoulidis
Since version 0.13, Synnefo uses the VMAPI in order to prevent sensitive data
1806 d587329c Konstantinos Tompoulidis
needed by 'snf-image' to be stored in Ganeti configuration (e.g. VM password).
1807 d587329c Konstantinos Tompoulidis
This is achieved by storing all sensitive information to a CACHE backend and
1808 d587329c Konstantinos Tompoulidis
exporting it via VMAPI. The cache entries are invalidated after the first
1809 d587329c Konstantinos Tompoulidis
request. Synnefo uses `memcached <http://memcached.org/>`_ as a
1810 d587329c Konstantinos Tompoulidis
`Django <https://www.djangoproject.com/>`_ cache backend.
1811 bc055d09 Constantinos Venetsanopoulos
1812 73ebcd68 Constantinos Venetsanopoulos
Configuration of Cyclades
1813 73ebcd68 Constantinos Venetsanopoulos
=========================
1814 5b6feb88 Vangelis Koukis
1815 04c1254b Constantinos Venetsanopoulos
Conf files
1816 04c1254b Constantinos Venetsanopoulos
----------
1817 bc055d09 Constantinos Venetsanopoulos
1818 04c1254b Constantinos Venetsanopoulos
After installing Cyclades, a number of new configuration files will appear under
1819 d587329c Konstantinos Tompoulidis
``/etc/synnefo/`` prefixed with ``20-snf-cyclades-app-``. We will describe here
1820 d587329c Konstantinos Tompoulidis
only the minimal needed changes to result with a working system. In general,
1821 d587329c Konstantinos Tompoulidis
sane defaults have been chosen for the most of the options, to cover most of the
1822 04c1254b Constantinos Venetsanopoulos
common scenarios. However, if you want to tweak Cyclades feel free to do so,
1823 04c1254b Constantinos Venetsanopoulos
once you get familiar with the different options.
1824 bc055d09 Constantinos Venetsanopoulos
1825 04c1254b Constantinos Venetsanopoulos
Edit ``/etc/synnefo/20-snf-cyclades-app-api.conf``:
1826 bc055d09 Constantinos Venetsanopoulos
1827 04c1254b Constantinos Venetsanopoulos
.. code-block:: console
1828 04c1254b Constantinos Venetsanopoulos
1829 e3ff6830 Georgios D. Tsoukalas
   CYCLADES_BASE_URL = 'https://node1.example.com/cyclades'
1830 cceaebef Ilias Tsitsimpis
   ASTAKOS_AUTH_URL = 'https://node1.example.com/astakos/identity/v2.0'
1831 04c1254b Constantinos Venetsanopoulos
1832 26498848 Giorgos Korfiatis
   CYCLADES_SERVICE_TOKEN = 'cyclades_service_token22w'
1833 a14f152f Giorgos Korfiatis
1834 cceaebef Ilias Tsitsimpis
The ``ASTAKOS_AUTH_URL`` denotes the Astakos endpoint for Cyclades,
1835 e3ff6830 Georgios D. Tsoukalas
which is used for all user management, including authentication.
1836 e3ff6830 Georgios D. Tsoukalas
Since our Astakos, Cyclades, and Pithos installations belong together,
1837 cceaebef Ilias Tsitsimpis
they should all have identical ``ASTAKOS_AUTH_URL`` setting
1838 e3ff6830 Georgios D. Tsoukalas
(see also, :ref:`previously <conf-pithos>`).
1839 d587329c Konstantinos Tompoulidis
1840 0d87ef78 Giorgos Korfiatis
The ``CYCLADES_BASE_URL`` setting must point to the top-level Cyclades URL.
1841 0d87ef78 Giorgos Korfiatis
Appending an extra path (``/cyclades`` here) is recommended in order to
1842 0d87ef78 Giorgos Korfiatis
distinguish components, if more than one are installed on the same machine.
1843 0d87ef78 Giorgos Korfiatis
1844 a14f152f Giorgos Korfiatis
The ``CYCLADES_SERVICE_TOKEN`` is the token used for authentication with astakos.
1845 a14f152f Giorgos Korfiatis
It can be retrieved by running on the Astakos node (node1 in our case):
1846 a14f152f Giorgos Korfiatis
1847 a14f152f Giorgos Korfiatis
.. code-block:: console
1848 a14f152f Giorgos Korfiatis
1849 a14f152f Giorgos Korfiatis
   # snf-manage component-list
1850 a14f152f Giorgos Korfiatis
1851 a14f152f Giorgos Korfiatis
The token has been generated automatically during the :ref:`Cyclades service
1852 a14f152f Giorgos Korfiatis
registration <services-reg>`.
1853 a14f152f Giorgos Korfiatis
1854 04c1254b Constantinos Venetsanopoulos
Edit ``/etc/synnefo/20-snf-cyclades-app-cloudbar.conf``:
1855 04c1254b Constantinos Venetsanopoulos
1856 04c1254b Constantinos Venetsanopoulos
.. code-block:: console
1857 04c1254b Constantinos Venetsanopoulos
1858 bc3a7b5a Constantinos Venetsanopoulos
   CLOUDBAR_LOCATION = 'https://node1.example.com/static/im/cloudbar/'
1859 a14f152f Giorgos Korfiatis
   CLOUDBAR_SERVICES_URL = 'https://node1.example.com/astakos/ui/get_services'
1860 0c068fc6 marioskogias
   CLOUDBAR_MENU_URL = 'https://node1.example.com/astakos/ui/get_menu'
1861 04c1254b Constantinos Venetsanopoulos
1862 04c1254b Constantinos Venetsanopoulos
``CLOUDBAR_LOCATION`` tells the client where to find the Astakos common
1863 04c1254b Constantinos Venetsanopoulos
cloudbar. The ``CLOUDBAR_SERVICES_URL`` and ``CLOUDBAR_MENU_URL`` options are
1864 04c1254b Constantinos Venetsanopoulos
used by the Cyclades Web UI to get from Astakos all the information needed to
1865 04c1254b Constantinos Venetsanopoulos
fill its own cloudbar. So, we put our Astakos deployment urls there. All the
1866 04c1254b Constantinos Venetsanopoulos
above should have the same values we put in the corresponding variables in
1867 04c1254b Constantinos Venetsanopoulos
``/etc/synnefo/20-snf-pithos-webclient-cloudbar.conf`` on the previous
1868 04c1254b Constantinos Venetsanopoulos
:ref:`Pithos configuration <conf-pithos>` section.
1869 04c1254b Constantinos Venetsanopoulos
1870 04c1254b Constantinos Venetsanopoulos
Edit ``/etc/synnefo/20-snf-cyclades-app-plankton.conf``:
1871 04c1254b Constantinos Venetsanopoulos
1872 04c1254b Constantinos Venetsanopoulos
.. code-block:: console
1873 04c1254b Constantinos Venetsanopoulos
1874 04c1254b Constantinos Venetsanopoulos
   BACKEND_DB_CONNECTION = 'postgresql://synnefo:example_passw0rd@node1.example.com:5432/snf_pithos'
1875 04c1254b Constantinos Venetsanopoulos
   BACKEND_BLOCK_PATH = '/srv/pithos/data/'
1876 04c1254b Constantinos Venetsanopoulos
1877 73ebcd68 Constantinos Venetsanopoulos
In this file we configure the Image Service. ``BACKEND_DB_CONNECTION``
1878 e5d8df8c Constantinos Venetsanopoulos
denotes the Pithos database (where the Image files are stored). So we set that
1879 e5d8df8c Constantinos Venetsanopoulos
to point to our Pithos database. ``BACKEND_BLOCK_PATH`` denotes the actual
1880 e5d8df8c Constantinos Venetsanopoulos
Pithos data location.
1881 04c1254b Constantinos Venetsanopoulos
1882 04c1254b Constantinos Venetsanopoulos
Edit ``/etc/synnefo/20-snf-cyclades-app-queues.conf``:
1883 04c1254b Constantinos Venetsanopoulos
1884 04c1254b Constantinos Venetsanopoulos
.. code-block:: console
1885 04c1254b Constantinos Venetsanopoulos
1886 ad003186 Constantinos Venetsanopoulos
   AMQP_HOSTS=["amqp://synnefo:example_rabbitmq_passw0rd@node1.example.com:5672"]
1887 04c1254b Constantinos Venetsanopoulos
1888 04c1254b Constantinos Venetsanopoulos
The above settings denote the Message Queue. Those settings should have the same
1889 04c1254b Constantinos Venetsanopoulos
values as in ``/etc/synnefo/10-snf-cyclades-gtools-backend.conf`` file, and
1890 04c1254b Constantinos Venetsanopoulos
reflect our :ref:`Message Queue setup <rabbitmq-setup>`.
1891 04c1254b Constantinos Venetsanopoulos
1892 d587329c Konstantinos Tompoulidis
Edit ``/etc/synnefo/20-snf-cyclades-app-vmapi.conf``:
1893 d587329c Konstantinos Tompoulidis
1894 d587329c Konstantinos Tompoulidis
.. code-block:: console
1895 d587329c Konstantinos Tompoulidis
1896 d587329c Konstantinos Tompoulidis
   VMAPI_CACHE_BACKEND = "memcached://127.0.0.1:11211/?timeout=3600"
1897 d587329c Konstantinos Tompoulidis
1898 053d0dfc Constantinos Venetsanopoulos
Edit ``/etc/default/vncauthproxy``:
1899 053d0dfc Constantinos Venetsanopoulos
1900 053d0dfc Constantinos Venetsanopoulos
.. code-block:: console
1901 053d0dfc Constantinos Venetsanopoulos
1902 d5426b9b Stratos Psomadakis
   CHUID="nobody:www-data"
1903 053d0dfc Constantinos Venetsanopoulos
1904 73ebcd68 Constantinos Venetsanopoulos
We have now finished with the basic Cyclades configuration.
1905 04c1254b Constantinos Venetsanopoulos
1906 04c1254b Constantinos Venetsanopoulos
Database Initialization
1907 04c1254b Constantinos Venetsanopoulos
-----------------------
1908 04c1254b Constantinos Venetsanopoulos
1909 04c1254b Constantinos Venetsanopoulos
Once Cyclades is configured, we sync the database:
1910 bc055d09 Constantinos Venetsanopoulos
1911 bc055d09 Constantinos Venetsanopoulos
.. code-block:: console
1912 bc055d09 Constantinos Venetsanopoulos
1913 bc055d09 Constantinos Venetsanopoulos
   $ snf-manage syncdb
1914 bc055d09 Constantinos Venetsanopoulos
   $ snf-manage migrate
1915 bc055d09 Constantinos Venetsanopoulos
1916 04c1254b Constantinos Venetsanopoulos
and load the initial server flavors:
1917 bc055d09 Constantinos Venetsanopoulos
1918 bc055d09 Constantinos Venetsanopoulos
.. code-block:: console
1919 bc055d09 Constantinos Venetsanopoulos
1920 bc055d09 Constantinos Venetsanopoulos
   $ snf-manage loaddata flavors
1921 bc055d09 Constantinos Venetsanopoulos
1922 04c1254b Constantinos Venetsanopoulos
If everything returns successfully, our database is ready.
1923 04c1254b Constantinos Venetsanopoulos
1924 053d0dfc Constantinos Venetsanopoulos
Add the Ganeti backend
1925 053d0dfc Constantinos Venetsanopoulos
----------------------
1926 053d0dfc Constantinos Venetsanopoulos
1927 7a3439cf Constantinos Venetsanopoulos
In our installation we assume that we only have one Ganeti cluster, the one we
1928 b2764de1 Dimitris Aragiorgis
setup earlier.  At this point you have to add this backend (Ganeti cluster) to
1929 b2764de1 Dimitris Aragiorgis
cyclades assuming that you have setup the :ref:`Rapi User <rapi-user>`
1930 b2764de1 Dimitris Aragiorgis
correctly.
1931 b2764de1 Dimitris Aragiorgis
1932 b2764de1 Dimitris Aragiorgis
.. code-block:: console
1933 b2764de1 Dimitris Aragiorgis
1934 69aa7f21 Ilias Tsitsimpis
   $ snf-manage backend-add --clustername=ganeti.node1.example.com --user=cyclades --pass=example_rapi_passw0rd
1935 b2764de1 Dimitris Aragiorgis
1936 b2764de1 Dimitris Aragiorgis
You can see everything has been setup correctly by running:
1937 053d0dfc Constantinos Venetsanopoulos
1938 053d0dfc Constantinos Venetsanopoulos
.. code-block:: console
1939 053d0dfc Constantinos Venetsanopoulos
1940 053d0dfc Constantinos Venetsanopoulos
   $ snf-manage backend-list
1941 053d0dfc Constantinos Venetsanopoulos
1942 d587329c Konstantinos Tompoulidis
Enable the new backend by running:
1943 d587329c Konstantinos Tompoulidis
1944 d587329c Konstantinos Tompoulidis
.. code-block::
1945 d587329c Konstantinos Tompoulidis
1946 d587329c Konstantinos Tompoulidis
   $ snf-manage backend-modify --drained False 1
1947 d587329c Konstantinos Tompoulidis
1948 d587329c Konstantinos Tompoulidis
.. warning:: Since version 0.13, the backend is set to "drained" by default.
1949 d587329c Konstantinos Tompoulidis
    This means that you cannot add VMs to it. The reason for this is that the
1950 d587329c Konstantinos Tompoulidis
    nodes should be unavailable to Synnefo until the Administrator explicitly
1951 d587329c Konstantinos Tompoulidis
    releases them. To change this setting, use ``snf-manage backend-modify
1952 d587329c Konstantinos Tompoulidis
    --drained False <backend-id>``.
1953 d587329c Konstantinos Tompoulidis
1954 7a3439cf Constantinos Venetsanopoulos
If something is not set correctly, you can modify the backend with the
1955 7a3439cf Constantinos Venetsanopoulos
``snf-manage backend-modify`` command. If something has gone wrong, you could
1956 7a3439cf Constantinos Venetsanopoulos
modify the backend to reflect the Ganeti installation by running:
1957 053d0dfc Constantinos Venetsanopoulos
1958 053d0dfc Constantinos Venetsanopoulos
.. code-block:: console
1959 053d0dfc Constantinos Venetsanopoulos
1960 053d0dfc Constantinos Venetsanopoulos
   $ snf-manage backend-modify --clustername "ganeti.node1.example.com"
1961 7a3439cf Constantinos Venetsanopoulos
                               --user=cyclades
1962 7a3439cf Constantinos Venetsanopoulos
                               --pass=example_rapi_passw0rd
1963 053d0dfc Constantinos Venetsanopoulos
                               1
1964 053d0dfc Constantinos Venetsanopoulos
1965 053d0dfc Constantinos Venetsanopoulos
``clustername`` denotes the Ganeti-cluster's name. We provide the corresponding
1966 053d0dfc Constantinos Venetsanopoulos
domain that resolves to the master IP, than the IP itself, to ensure Cyclades
1967 053d0dfc Constantinos Venetsanopoulos
can talk to Ganeti even after a Ganeti master-failover.
1968 053d0dfc Constantinos Venetsanopoulos
1969 7a3439cf Constantinos Venetsanopoulos
``user`` and ``pass`` denote the RAPI user's username and the RAPI user's
1970 b2764de1 Dimitris Aragiorgis
password.  Once we setup the first backend to point at our Ganeti cluster, we
1971 b2764de1 Dimitris Aragiorgis
update the Cyclades backends status by running:
1972 053d0dfc Constantinos Venetsanopoulos
1973 053d0dfc Constantinos Venetsanopoulos
.. code-block:: console
1974 053d0dfc Constantinos Venetsanopoulos
1975 053d0dfc Constantinos Venetsanopoulos
   $ snf-manage backend-update-status
1976 053d0dfc Constantinos Venetsanopoulos
1977 7a3439cf Constantinos Venetsanopoulos
Cyclades can manage multiple Ganeti backends, but for the purpose of this
1978 7a3439cf Constantinos Venetsanopoulos
guide,we won't get into more detail regarding mulitple backends. If you want to
1979 7a3439cf Constantinos Venetsanopoulos
learn more please see /*TODO*/.
1980 7a3439cf Constantinos Venetsanopoulos
1981 7a3439cf Constantinos Venetsanopoulos
Add a Public Network
1982 053d0dfc Constantinos Venetsanopoulos
----------------------
1983 053d0dfc Constantinos Venetsanopoulos
1984 7a3439cf Constantinos Venetsanopoulos
Cyclades supports different Public Networks on different Ganeti backends.
1985 cc16407a Dimitris Aragiorgis
After connecting Cyclades with our Ganeti cluster, we need to setup a Public
1986 cc16407a Dimitris Aragiorgis
Network for this Ganeti backend (`id = 1`). The basic setup is to bridge every
1987 cc16407a Dimitris Aragiorgis
created NIC on a bridge. After having a bridge (e.g. br0) created in every
1988 cc16407a Dimitris Aragiorgis
backend node edit Synnefo setting CUSTOM_BRIDGED_BRIDGE to 'br0':
1989 053d0dfc Constantinos Venetsanopoulos
1990 053d0dfc Constantinos Venetsanopoulos
.. code-block:: console
1991 053d0dfc Constantinos Venetsanopoulos
1992 69aa7f21 Ilias Tsitsimpis
   $ snf-manage network-create --subnet=5.6.7.0/27 \
1993 69aa7f21 Ilias Tsitsimpis
                               --gateway=5.6.7.1 \
1994 69aa7f21 Ilias Tsitsimpis
                               --subnet6=2001:648:2FFC:1322::/64 \
1995 69aa7f21 Ilias Tsitsimpis
                               --gateway6=2001:648:2FFC:1322::1 \
1996 be8c3784 Christos Stavrakakis
                               --public --dhcp=True --flavor=CUSTOM \
1997 92e4d1c6 Dimitris Aragiorgis
                               --link=br0 --mode=bridged \
1998 69aa7f21 Ilias Tsitsimpis
                               --name=public_network \
1999 7a3439cf Constantinos Venetsanopoulos
                               --backend-id=1
2000 053d0dfc Constantinos Venetsanopoulos
2001 053d0dfc Constantinos Venetsanopoulos
This will create the Public Network on both Cyclades and the Ganeti backend. To
2002 053d0dfc Constantinos Venetsanopoulos
make sure everything was setup correctly, also run:
2003 053d0dfc Constantinos Venetsanopoulos
2004 053d0dfc Constantinos Venetsanopoulos
.. code-block:: console
2005 053d0dfc Constantinos Venetsanopoulos
2006 053d0dfc Constantinos Venetsanopoulos
   $ snf-manage reconcile-networks
2007 053d0dfc Constantinos Venetsanopoulos
2008 053d0dfc Constantinos Venetsanopoulos
You can see all available networks by running:
2009 053d0dfc Constantinos Venetsanopoulos
2010 053d0dfc Constantinos Venetsanopoulos
.. code-block:: console
2011 053d0dfc Constantinos Venetsanopoulos
2012 7a3439cf Constantinos Venetsanopoulos
   $ snf-manage network-list
2013 053d0dfc Constantinos Venetsanopoulos
2014 053d0dfc Constantinos Venetsanopoulos
and inspect each network's state by running:
2015 053d0dfc Constantinos Venetsanopoulos
2016 053d0dfc Constantinos Venetsanopoulos
.. code-block:: console
2017 053d0dfc Constantinos Venetsanopoulos
2018 053d0dfc Constantinos Venetsanopoulos
   $ snf-manage network-inspect <net_id>
2019 053d0dfc Constantinos Venetsanopoulos
2020 053d0dfc Constantinos Venetsanopoulos
Finally, you can see the networks from the Ganeti perspective by running on the
2021 053d0dfc Constantinos Venetsanopoulos
Ganeti MASTER:
2022 053d0dfc Constantinos Venetsanopoulos
2023 053d0dfc Constantinos Venetsanopoulos
.. code-block:: console
2024 053d0dfc Constantinos Venetsanopoulos
2025 053d0dfc Constantinos Venetsanopoulos
   $ gnt-network list
2026 053d0dfc Constantinos Venetsanopoulos
   $ gnt-network info <network_name>
2027 053d0dfc Constantinos Venetsanopoulos
2028 19425707 Christos Stavrakakis
Create pools for Private Networks
2029 d587329c Konstantinos Tompoulidis
---------------------------------
2030 19425707 Christos Stavrakakis
2031 19425707 Christos Stavrakakis
To prevent duplicate assignment of resources to different private networks,
2032 19425707 Christos Stavrakakis
Cyclades supports two types of pools:
2033 19425707 Christos Stavrakakis
2034 19425707 Christos Stavrakakis
 - MAC prefix Pool
2035 19425707 Christos Stavrakakis
 - Bridge Pool
2036 19425707 Christos Stavrakakis
2037 19425707 Christos Stavrakakis
As long as those resourses have been provisioned, admin has to define two
2038 19425707 Christos Stavrakakis
these pools in Synnefo:
2039 19425707 Christos Stavrakakis
2040 19425707 Christos Stavrakakis
2041 19425707 Christos Stavrakakis
.. code-block:: console
2042 19425707 Christos Stavrakakis
2043 19425707 Christos Stavrakakis
   root@testvm1:~ # snf-manage pool-create --type=mac-prefix --base=aa:00:0 --size=65536
2044 19425707 Christos Stavrakakis
2045 19425707 Christos Stavrakakis
   root@testvm1:~ # snf-manage pool-create --type=bridge --base=prv --size=20
2046 19425707 Christos Stavrakakis
2047 19425707 Christos Stavrakakis
Also, change the Synnefo setting in :file:`20-snf-cyclades-app-api.conf`:
2048 19425707 Christos Stavrakakis
2049 19425707 Christos Stavrakakis
.. code-block:: console
2050 19425707 Christos Stavrakakis
2051 18e300b2 Christos Stavrakakis
   DEFAULT_MAC_FILTERED_BRIDGE = 'prv0'
2052 19425707 Christos Stavrakakis
2053 04c1254b Constantinos Venetsanopoulos
Servers restart
2054 04c1254b Constantinos Venetsanopoulos
---------------
2055 04c1254b Constantinos Venetsanopoulos
2056 053d0dfc Constantinos Venetsanopoulos
Restart gunicorn on node1:
2057 04c1254b Constantinos Venetsanopoulos
2058 04c1254b Constantinos Venetsanopoulos
.. code-block:: console
2059 bc055d09 Constantinos Venetsanopoulos
2060 04c1254b Constantinos Venetsanopoulos
   # /etc/init.d/gunicorn restart
2061 bc055d09 Constantinos Venetsanopoulos
2062 04c1254b Constantinos Venetsanopoulos
Now let's do the final connections of Cyclades with Ganeti.
2063 bc055d09 Constantinos Venetsanopoulos
2064 04c1254b Constantinos Venetsanopoulos
``snf-dispatcher`` initialization
2065 04c1254b Constantinos Venetsanopoulos
---------------------------------
2066 04c1254b Constantinos Venetsanopoulos
2067 04c1254b Constantinos Venetsanopoulos
``snf-dispatcher`` dispatches all messages published to the Message Queue and
2068 04c1254b Constantinos Venetsanopoulos
manages the Cyclades database accordingly. It also initializes all exchanges. By
2069 04c1254b Constantinos Venetsanopoulos
default it is not enabled during installation of Cyclades, so let's enable it in
2070 04c1254b Constantinos Venetsanopoulos
its configuration file ``/etc/default/snf-dispatcher``:
2071 04c1254b Constantinos Venetsanopoulos
2072 04c1254b Constantinos Venetsanopoulos
.. code-block:: console
2073 04c1254b Constantinos Venetsanopoulos
2074 04c1254b Constantinos Venetsanopoulos
   SNF_DSPTCH_ENABLE=true
2075 04c1254b Constantinos Venetsanopoulos
2076 04c1254b Constantinos Venetsanopoulos
and start the daemon:
2077 04c1254b Constantinos Venetsanopoulos
2078 04c1254b Constantinos Venetsanopoulos
.. code-block:: console
2079 04c1254b Constantinos Venetsanopoulos
2080 04c1254b Constantinos Venetsanopoulos
   # /etc/init.d/snf-dispatcher start
2081 04c1254b Constantinos Venetsanopoulos
2082 04c1254b Constantinos Venetsanopoulos
You can see that everything works correctly by tailing its log file
2083 04c1254b Constantinos Venetsanopoulos
``/var/log/synnefo/dispatcher.log``.
2084 04c1254b Constantinos Venetsanopoulos
2085 04c1254b Constantinos Venetsanopoulos
``snf-ganeti-eventd`` on GANETI MASTER
2086 04c1254b Constantinos Venetsanopoulos
--------------------------------------
2087 04c1254b Constantinos Venetsanopoulos
2088 04c1254b Constantinos Venetsanopoulos
The last step of the Cyclades setup is enabling the ``snf-ganeti-eventd``
2089 04c1254b Constantinos Venetsanopoulos
daemon (part of the :ref:`Cyclades Ganeti tools <cyclades-gtools>` package).
2090 04c1254b Constantinos Venetsanopoulos
The daemon is already installed on the GANETI MASTER (node1 in our case).
2091 04c1254b Constantinos Venetsanopoulos
``snf-ganeti-eventd`` is disabled by default during the ``snf-cyclades-gtools``
2092 04c1254b Constantinos Venetsanopoulos
installation, so we enable it in its configuration file
2093 04c1254b Constantinos Venetsanopoulos
``/etc/default/snf-ganeti-eventd``:
2094 04c1254b Constantinos Venetsanopoulos
2095 04c1254b Constantinos Venetsanopoulos
.. code-block:: console
2096 04c1254b Constantinos Venetsanopoulos
2097 04c1254b Constantinos Venetsanopoulos
   SNF_EVENTD_ENABLE=true
2098 04c1254b Constantinos Venetsanopoulos
2099 04c1254b Constantinos Venetsanopoulos
and start the daemon:
2100 04c1254b Constantinos Venetsanopoulos
2101 04c1254b Constantinos Venetsanopoulos
.. code-block:: console
2102 bc055d09 Constantinos Venetsanopoulos
2103 04c1254b Constantinos Venetsanopoulos
   # /etc/init.d/snf-ganeti-eventd start
2104 bc055d09 Constantinos Venetsanopoulos
2105 04c1254b Constantinos Venetsanopoulos
.. warning:: Make sure you start ``snf-ganeti-eventd`` *ONLY* on GANETI MASTER
2106 bc055d09 Constantinos Venetsanopoulos
2107 b446c082 Giorgos Korfiatis
Apply Quota
2108 b446c082 Giorgos Korfiatis
-----------
2109 b446c082 Giorgos Korfiatis
2110 b446c082 Giorgos Korfiatis
The following commands will check and fix the integrity of user quota.
2111 b446c082 Giorgos Korfiatis
In a freshly installed system, these commands have no effect and can be
2112 b446c082 Giorgos Korfiatis
skipped.
2113 d587329c Konstantinos Tompoulidis
2114 d587329c Konstantinos Tompoulidis
.. code-block:: console
2115 d587329c Konstantinos Tompoulidis
2116 075b91de Giorgos Korfiatis
   node1 # snf-manage quota --sync
2117 b446c082 Giorgos Korfiatis
   node1 # snf-manage reconcile-resources-astakos --fix
2118 b446c082 Giorgos Korfiatis
   node2 # snf-manage reconcile-resources-pithos --fix
2119 62c86226 Christos Stavrakakis
   node1 # snf-manage reconcile-resources-cyclades --fix
2120 d587329c Konstantinos Tompoulidis
2121 0c068fc6 marioskogias
2122 04c1254b Constantinos Venetsanopoulos
If all the above return successfully, then you have finished with the Cyclades
2123 73ebcd68 Constantinos Venetsanopoulos
installation and setup.
2124 d587329c Konstantinos Tompoulidis
2125 d587329c Konstantinos Tompoulidis
Let's test our installation now.
2126 bc055d09 Constantinos Venetsanopoulos
2127 5b6feb88 Vangelis Koukis
2128 73ebcd68 Constantinos Venetsanopoulos
Testing of Cyclades
2129 73ebcd68 Constantinos Venetsanopoulos
===================
2130 5b6feb88 Vangelis Koukis
2131 8a4cd31b Constantinos Venetsanopoulos
Cyclades Web UI
2132 8a4cd31b Constantinos Venetsanopoulos
---------------
2133 8a4cd31b Constantinos Venetsanopoulos
2134 8a4cd31b Constantinos Venetsanopoulos
First of all we need to test that our Cyclades Web UI works correctly. Open your
2135 8a4cd31b Constantinos Venetsanopoulos
browser and go to the Astakos home page. Login and then click 'cyclades' on the
2136 8a4cd31b Constantinos Venetsanopoulos
top cloud bar. This should redirect you to:
2137 8a4cd31b Constantinos Venetsanopoulos
2138 a14f152f Giorgos Korfiatis
 `http://node1.example.com/cyclades/ui/`
2139 8a4cd31b Constantinos Venetsanopoulos
2140 8a4cd31b Constantinos Venetsanopoulos
and the Cyclades home page should appear. If not, please go back and find what
2141 8a4cd31b Constantinos Venetsanopoulos
went wrong. Do not proceed if you don't see the Cyclades home page.
2142 8a4cd31b Constantinos Venetsanopoulos
2143 8a4cd31b Constantinos Venetsanopoulos
If the Cyclades home page appears, click on the orange button 'New machine'. The
2144 8a4cd31b Constantinos Venetsanopoulos
first step of the 'New machine wizard' will appear. This step shows all the
2145 8a4cd31b Constantinos Venetsanopoulos
available Images from which you can spawn new VMs. The list should be currently
2146 8a4cd31b Constantinos Venetsanopoulos
empty, as we haven't registered any Images yet. Close the wizard and browse the
2147 8a4cd31b Constantinos Venetsanopoulos
interface (not many things to see yet). If everything seems to work, let's
2148 8a4cd31b Constantinos Venetsanopoulos
register our first Image file.
2149 8a4cd31b Constantinos Venetsanopoulos
2150 8a4cd31b Constantinos Venetsanopoulos
Cyclades Images
2151 8a4cd31b Constantinos Venetsanopoulos
---------------
2152 8a4cd31b Constantinos Venetsanopoulos
2153 e5d8df8c Constantinos Venetsanopoulos
To test our Cyclades installation, we will use an Image stored on Pithos to
2154 73ebcd68 Constantinos Venetsanopoulos
spawn a new VM from the Cyclades interface. We will describe all steps, even
2155 e5d8df8c Constantinos Venetsanopoulos
though you may already have uploaded an Image on Pithos from a :ref:`previous
2156 73ebcd68 Constantinos Venetsanopoulos
<snf-image-images>` section:
2157 8a4cd31b Constantinos Venetsanopoulos
2158 e5d8df8c Constantinos Venetsanopoulos
 * Upload an Image file to Pithos
2159 73ebcd68 Constantinos Venetsanopoulos
 * Register that Image file to Cyclades
2160 8a4cd31b Constantinos Venetsanopoulos
 * Spawn a new VM from that Image from the Cyclades Web UI
2161 8a4cd31b Constantinos Venetsanopoulos
2162 34e79416 Constantinos Venetsanopoulos
We will use the `kamaki <http://www.synnefo.org/docs/kamaki/latest/index.html>`_
2163 8a4cd31b Constantinos Venetsanopoulos
command line client to do the uploading and registering of the Image.
2164 8a4cd31b Constantinos Venetsanopoulos
2165 8a4cd31b Constantinos Venetsanopoulos
Installation of `kamaki`
2166 8a4cd31b Constantinos Venetsanopoulos
~~~~~~~~~~~~~~~~~~~~~~~~
2167 8a4cd31b Constantinos Venetsanopoulos
2168 8a4cd31b Constantinos Venetsanopoulos
You can install `kamaki` anywhere you like, since it is a standalone client of
2169 8a4cd31b Constantinos Venetsanopoulos
the APIs and talks to the installation over `http`. For the purpose of this
2170 8a4cd31b Constantinos Venetsanopoulos
guide we will assume that we have downloaded the `Debian Squeeze Base Image
2171 8a4cd31b Constantinos Venetsanopoulos
<https://pithos.okeanos.grnet.gr/public/9epgb>`_ and stored it under node1's
2172 8a4cd31b Constantinos Venetsanopoulos
``/srv/images`` directory. For that reason we will install `kamaki` on node1,
2173 8a4cd31b Constantinos Venetsanopoulos
too. We do this by running:
2174 8a4cd31b Constantinos Venetsanopoulos
2175 8a4cd31b Constantinos Venetsanopoulos
.. code-block:: console
2176 8a4cd31b Constantinos Venetsanopoulos
2177 8a4cd31b Constantinos Venetsanopoulos
   # apt-get install kamaki
2178 8a4cd31b Constantinos Venetsanopoulos
2179 8a4cd31b Constantinos Venetsanopoulos
Configuration of kamaki
2180 8a4cd31b Constantinos Venetsanopoulos
~~~~~~~~~~~~~~~~~~~~~~~
2181 8a4cd31b Constantinos Venetsanopoulos
2182 8a4cd31b Constantinos Venetsanopoulos
Now we need to setup kamaki, by adding the appropriate URLs and tokens of our
2183 8a4cd31b Constantinos Venetsanopoulos
installation. We do this by running:
2184 8a4cd31b Constantinos Venetsanopoulos
2185 8a4cd31b Constantinos Venetsanopoulos
.. code-block:: console
2186 8a4cd31b Constantinos Venetsanopoulos
2187 c4054de2 Ilias Tsitsimpis
   $ kamaki config set cloud.default.url \
2188 c4054de2 Ilias Tsitsimpis
       "https://node1.example.com/astakos/identity/v2.0"
2189 c4054de2 Ilias Tsitsimpis
   $ kamaki config set cloud.default.token USER_TOKEN
2190 8a4cd31b Constantinos Venetsanopoulos
2191 c4054de2 Ilias Tsitsimpis
Both the Authentication URL and the USER_TOKEN appear on the user's
2192 c4054de2 Ilias Tsitsimpis
`API access` web page on the Astakos Web UI.
2193 8a4cd31b Constantinos Venetsanopoulos
2194 c0d88cf3 Constantinos Venetsanopoulos
You can see that the new configuration options have been applied correctly,
2195 c0d88cf3 Constantinos Venetsanopoulos
either by checking the editable file ``~/.kamakirc`` or by running:
2196 8a4cd31b Constantinos Venetsanopoulos
2197 8a4cd31b Constantinos Venetsanopoulos
.. code-block:: console
2198 8a4cd31b Constantinos Venetsanopoulos
2199 8a4cd31b Constantinos Venetsanopoulos
   $ kamaki config list
2200 8a4cd31b Constantinos Venetsanopoulos
2201 c0d88cf3 Constantinos Venetsanopoulos
A quick test to check that kamaki is configured correctly, is to try to
2202 c0d88cf3 Constantinos Venetsanopoulos
authenticate a user based on his/her token (in this case the user is you):
2203 ebf463a5 Stavros Sachtouris
2204 ebf463a5 Stavros Sachtouris
.. code-block:: console
2205 ebf463a5 Stavros Sachtouris
2206 ebf463a5 Stavros Sachtouris
  $ kamaki user authenticate
2207 ebf463a5 Stavros Sachtouris
2208 c0d88cf3 Constantinos Venetsanopoulos
The above operation provides various user information, e.g. UUID (the unique
2209 c0d88cf3 Constantinos Venetsanopoulos
user id) which might prove useful in some operations.
2210 ebf463a5 Stavros Sachtouris
2211 e5d8df8c Constantinos Venetsanopoulos
Upload an Image file to Pithos
2212 e5d8df8c Constantinos Venetsanopoulos
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2213 8a4cd31b Constantinos Venetsanopoulos
2214 8a4cd31b Constantinos Venetsanopoulos
Now, that we have set up `kamaki` we will upload the Image that we have
2215 8a4cd31b Constantinos Venetsanopoulos
downloaded and stored under ``/srv/images/``. Although we can upload the Image
2216 8a4cd31b Constantinos Venetsanopoulos
under the root ``Pithos`` container (as you may have done when uploading the
2217 e5d8df8c Constantinos Venetsanopoulos
Image from the Pithos Web UI), we will create a new container called ``images``
2218 8a4cd31b Constantinos Venetsanopoulos
and store the Image under that container. We do this for two reasons:
2219 8a4cd31b Constantinos Venetsanopoulos
2220 8a4cd31b Constantinos Venetsanopoulos
a) To demonstrate how to create containers other than the default ``Pithos``.
2221 8a4cd31b Constantinos Venetsanopoulos
   This can be done only with the `kamaki` client and not through the Web UI.
2222 8a4cd31b Constantinos Venetsanopoulos
2223 8a4cd31b Constantinos Venetsanopoulos
b) As a best organization practise, so that you won't have your Image files
2224 e5d8df8c Constantinos Venetsanopoulos
   tangled along with all your other Pithos files and directory structures.
2225 8a4cd31b Constantinos Venetsanopoulos
2226 8a4cd31b Constantinos Venetsanopoulos
We create the new ``images`` container by running:
2227 8a4cd31b Constantinos Venetsanopoulos
2228 8a4cd31b Constantinos Venetsanopoulos
.. code-block:: console
2229 8a4cd31b Constantinos Venetsanopoulos
2230 ebf463a5 Stavros Sachtouris
   $ kamaki file create images
2231 ebf463a5 Stavros Sachtouris
2232 c0d88cf3 Constantinos Venetsanopoulos
To check if the container has been created, list all containers of your
2233 c0d88cf3 Constantinos Venetsanopoulos
account:
2234 ebf463a5 Stavros Sachtouris
2235 ebf463a5 Stavros Sachtouris
.. code-block:: console
2236 ebf463a5 Stavros Sachtouris
2237 ebf463a5 Stavros Sachtouris
  $ kamaki file list
2238 8a4cd31b Constantinos Venetsanopoulos
2239 8a4cd31b Constantinos Venetsanopoulos
Then, we upload the Image file to that container:
2240 8a4cd31b Constantinos Venetsanopoulos
2241 8a4cd31b Constantinos Venetsanopoulos
.. code-block:: console
2242 8a4cd31b Constantinos Venetsanopoulos
2243 ebf463a5 Stavros Sachtouris
   $ kamaki file upload /srv/images/debian_base-6.0-7-x86_64.diskdump images
2244 8a4cd31b Constantinos Venetsanopoulos
2245 e5d8df8c Constantinos Venetsanopoulos
The first is the local path and the second is the remote container on Pithos.
2246 c0d88cf3 Constantinos Venetsanopoulos
Check if the file has been uploaded, by listing the container contents:
2247 ebf463a5 Stavros Sachtouris
2248 ebf463a5 Stavros Sachtouris
.. code-block:: console
2249 ebf463a5 Stavros Sachtouris
2250 ebf463a5 Stavros Sachtouris
  $ kamaki file list images
2251 ebf463a5 Stavros Sachtouris
2252 e5d8df8c Constantinos Venetsanopoulos
Alternatively check if the new container and file appear on the Pithos Web UI.
2253 8a4cd31b Constantinos Venetsanopoulos
2254 73ebcd68 Constantinos Venetsanopoulos
Register an existing Image file to Cyclades
2255 8a4cd31b Constantinos Venetsanopoulos
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2256 8a4cd31b Constantinos Venetsanopoulos
2257 c0d88cf3 Constantinos Venetsanopoulos
For the purposes of the following example, we assume that the user UUID is
2258 c0d88cf3 Constantinos Venetsanopoulos
``u53r-un1qu3-1d``.
2259 ebf463a5 Stavros Sachtouris
2260 e5d8df8c Constantinos Venetsanopoulos
Once the Image file has been successfully uploaded on Pithos then we register
2261 73ebcd68 Constantinos Venetsanopoulos
it to Cyclades, by running:
2262 8a4cd31b Constantinos Venetsanopoulos
2263 8a4cd31b Constantinos Venetsanopoulos
.. code-block:: console
2264 8a4cd31b Constantinos Venetsanopoulos
2265 69aa7f21 Ilias Tsitsimpis
   $ kamaki image register "Debian Base" \
2266 0c068fc6 marioskogias
                           pithos://u53r-un1qu3-1d/images/debian_base-6.0-11-x86_64.diskdump \
2267 69aa7f21 Ilias Tsitsimpis
                           --public \
2268 69aa7f21 Ilias Tsitsimpis
                           --disk-format=diskdump \
2269 69aa7f21 Ilias Tsitsimpis
                           --property OSFAMILY=linux --property ROOT_PARTITION=1 \
2270 69aa7f21 Ilias Tsitsimpis
                           --property description="Debian Squeeze Base System" \
2271 69aa7f21 Ilias Tsitsimpis
                           --property size=451 --property kernel=2.6.32 --property GUI="No GUI" \
2272 8a4cd31b Constantinos Venetsanopoulos
                           --property sortorder=1 --property USERS=root --property OS=debian
2273 8a4cd31b Constantinos Venetsanopoulos
2274 e5d8df8c Constantinos Venetsanopoulos
This command registers the Pithos file
2275 0c068fc6 marioskogias
``pithos://u53r-un1qu3-1d/images/debian_base-6.0-11-x86_64.diskdump`` as an
2276 73ebcd68 Constantinos Venetsanopoulos
Image in Cyclades. This Image will be public (``--public``), so all users will
2277 8a4cd31b Constantinos Venetsanopoulos
be able to spawn VMs from it and is of type ``diskdump``. The first two
2278 8a4cd31b Constantinos Venetsanopoulos
properties (``OSFAMILY`` and ``ROOT_PARTITION``) are mandatory. All the rest
2279 8a4cd31b Constantinos Venetsanopoulos
properties are optional, but recommended, so that the Images appear nicely on
2280 8a4cd31b Constantinos Venetsanopoulos
the Cyclades Web UI. ``Debian Base`` will appear as the name of this Image. The
2281 8a4cd31b Constantinos Venetsanopoulos
``OS`` property's valid values may be found in the ``IMAGE_ICONS`` variable
2282 8a4cd31b Constantinos Venetsanopoulos
inside the ``20-snf-cyclades-app-ui.conf`` configuration file.
2283 8a4cd31b Constantinos Venetsanopoulos
2284 8a4cd31b Constantinos Venetsanopoulos
``OSFAMILY`` and ``ROOT_PARTITION`` are mandatory because they will be passed
2285 73ebcd68 Constantinos Venetsanopoulos
from Cyclades to Ganeti and then `snf-image` (also see
2286 8a4cd31b Constantinos Venetsanopoulos
:ref:`previous section <ganeti-with-pithos-images>`). All other properties are
2287 8a4cd31b Constantinos Venetsanopoulos
used to show information on the Cyclades UI.
2288 8a4cd31b Constantinos Venetsanopoulos
2289 8a4cd31b Constantinos Venetsanopoulos
Spawn a VM from the Cyclades Web UI
2290 8a4cd31b Constantinos Venetsanopoulos
-----------------------------------
2291 8a4cd31b Constantinos Venetsanopoulos
2292 8a4cd31b Constantinos Venetsanopoulos
If the registration completes successfully, then go to the Cyclades Web UI from
2293 8a4cd31b Constantinos Venetsanopoulos
your browser at:
2294 8a4cd31b Constantinos Venetsanopoulos
2295 a14f152f Giorgos Korfiatis
 `https://node1.example.com/cyclades/ui/`
2296 8a4cd31b Constantinos Venetsanopoulos
2297 8a4cd31b Constantinos Venetsanopoulos
Click on the 'New Machine' button and the first step of the wizard will appear.
2298 8a4cd31b Constantinos Venetsanopoulos
Click on 'My Images' (right after 'System' Images) on the left pane of the
2299 8a4cd31b Constantinos Venetsanopoulos
wizard. Your previously registered Image "Debian Base" should appear under
2300 8a4cd31b Constantinos Venetsanopoulos
'Available Images'. If not, something has gone wrong with the registration. Make
2301 e5d8df8c Constantinos Venetsanopoulos
sure you can see your Image file on the Pithos Web UI and ``kamaki image
2302 8a4cd31b Constantinos Venetsanopoulos
register`` returns successfully with all options and properties as shown above.
2303 8a4cd31b Constantinos Venetsanopoulos
2304 8a4cd31b Constantinos Venetsanopoulos
If the Image appears on the list, select it and complete the wizard by selecting
2305 8a4cd31b Constantinos Venetsanopoulos
a flavor and a name for your VM. Then finish by clicking 'Create'. Make sure you
2306 8a4cd31b Constantinos Venetsanopoulos
write down your password, because you *WON'T* be able to retrieve it later.
2307 8a4cd31b Constantinos Venetsanopoulos
2308 8a4cd31b Constantinos Venetsanopoulos
If everything was setup correctly, after a few minutes your new machine will go
2309 8a4cd31b Constantinos Venetsanopoulos
to state 'Running' and you will be able to use it. Click 'Console' to connect
2310 8a4cd31b Constantinos Venetsanopoulos
through VNC out of band, or click on the machine's icon to connect directly via
2311 8a4cd31b Constantinos Venetsanopoulos
SSH or RDP (for windows machines).
2312 8a4cd31b Constantinos Venetsanopoulos
2313 8a4cd31b Constantinos Venetsanopoulos
Congratulations. You have successfully installed the whole Synnefo stack and
2314 8a4cd31b Constantinos Venetsanopoulos
connected all components. Go ahead in the next section to test the Network
2315 8a4cd31b Constantinos Venetsanopoulos
functionality from inside Cyclades and discover even more features.
2316 8a4cd31b Constantinos Venetsanopoulos
2317 a96ec00f Constantinos Venetsanopoulos
General Testing
2318 a96ec00f Constantinos Venetsanopoulos
===============
2319 5b6feb88 Vangelis Koukis
2320 a96ec00f Constantinos Venetsanopoulos
Notes
2321 a96ec00f Constantinos Venetsanopoulos
=====