Statistics
| Branch: | Tag: | Revision:

root / README.deploy @ b8498a99

History | View | Annotate | Download (17.9 kB)

1
README.deploy -- Instructions for a basic Synnefo deployment
2

    
3
This document describes the basic steps to obtain a basic, working Synnefo
4
deployment. It begins by examining the different node roles, then moves to the
5
installation and setup of distinct software components.
6

    
7
It is current as of Synnefo v0.5.2.
8

    
9

    
10
Node types
11
===========
12

    
13
Nodes in a Synnefo deployment belong in one of the following types:
14

    
15
 * DB:
16
   A node [or more than one nodes, if using an HA configuration], running a DB
17
   engine supported by the Django ORM layer. The DB is the single source of
18
   truth for the servicing of API requests by Synnefo.
19
   Services: PostgreSQL / MySQL
20

    
21
 * APISERVER:
22
   A node running the implementation of the OpenStack API, in Django. Any number
23
   of APISERVERs can be used, in a load-balancing configuration, without any
24
   special consideration. Access to a common DB ensures consistency.
25
   Services: Web server, vncauthproxy
26

    
27
 * QUEUE:
28
   A node running the RabbitMQ software, which provides AMQP functionality. More
29
   than one QUEUE nodes may be deployed, in an HA configuration. Such
30
   deployments require shared storage, provided e.g., by DRBD.
31
   Services: RabbitMQ [rabbitmq-server]
32

    
33
 * LOGIC:
34
   A node running the business logic of Synnefo, in Django. It dequeues
35
   messages from QUEUE nodes, and provides the context in which business logic
36
   functions run. It uses Django ORM to connect to the common DB and update the
37
   state of the system, based on notifications received from the rest of the
38
   infrastructure, over AMQP.
39
   Services: the Synnefo logic dispatcher [/logic/dispatcher.py]
40

    
41
 * GANETI-MASTER and GANETI-NODE:
42
   A single GANETI-MASTER and a large number of GANETI-NODEs constitute the
43
   Ganeti backend for Synnefo, which undertakes all VM management functions.
44
   Any APISERVER can issue commands to the GANETI-MASTER, over RAPI, to effect
45
   changes in the state of the VMs. The GANETI-MASTER runs the Ganeti request
46
   queue.
47
   Services:
48
     only on GANETI-MASTER:
49
       the Synnefo Ganeti monitoring daemon [/ganeti/snf-ganeti-eventd]
50
       the Synnefo Ganeti hook [/ganeti/snf-ganeti-hook.py].
51
     on each GANETI_NODE:
52
       a deployment-specific KVM ifup script
53
       properly configured NFDHCPD
54

    
55

    
56
Installation Process
57
=====================
58

    
59
This section describes the installation process of the various node roles in a
60
Synnefo deployment.
61

    
62

    
63
0. Allocation of physical nodes:
64
   Determine the role of every physical node in your deployment.
65

    
66

    
67
1. Ganeti installation:
68
   Synnefo requires a working Ganeti installation at the backend. Installation
69
   of Ganeti is not covered by this document, please refer to
70
   http://docs.ganeti.org/ganeti/current/html for all the gory details. A
71
   successful Ganeti installation concludes with a working GANETI-MASTER and a
72
   number of GANETI-NODEs.
73

    
74

    
75
2. RabbitMQ installation:
76
   RabbitMQ is used as a generic message broker for the system. It should be
77
   installed on two seperate QUEUE nodes (VMs should be enough for the moment)
78
   in a high availability configuration as described here:
79

    
80
     http://www.rabbitmq.com/pacemaker.html
81

    
82
   After installation, create a user and set its permissions
83
     rabbitmqctl add_user okeanos 0k3@n0s
84
     rabbitmqctl set_permissions -p / okeanos  "^.*" ".*" ".*"
85

    
86
   The values set for the user and password must be mirrored in the
87
   RABBIT_* variables in settings.py (see step 6)
88

    
89

    
90
3. Web server installation:
91
   A Web Server (e.g., Apache) needs to be installed on the APISERVERs,
92
   and be configured to run the Synnefo Django project appropriately. Selection
93
   and configuration of a Web server is outside the scope of this document.
94

    
95
   For testing or development purposes, Django's own development server,
96
   `./manage.py runserver' can be used.
97

    
98

    
99
4. Installation of the Synnefo Django project:
100
   As of v0.5 the Synnefo Django project needs to be installed on nodes
101
   of type APISERVER, LOGIC and on the GANETI-MASTER, with a properly
102
   configured settings.py. In later revisions, the specific parts of the Django
103
   project which need to run on each node type will be identified.
104

    
105
   Synnefo is written in Python 2.6 and depends on the following Python modules:
106
   [package versions confirmed to be compatible are in braces]
107

    
108
    * django 1.2 [Django==1.2.4]
109
    * simplejson [simplejson==2.1.3]
110
    * pycurl [pycurl==7.19.0]
111
    * python-dateutil  [python-dateutil==1.4.1]
112
      WARNING: version python-dateutil==2.0 downloaded by pip known *not* to
113
               work with Python 2.6
114
    * python-ipy [IPy==0.75]
115
        also verified to work with python-ipy 0.70-1 as shipped with Squeeze
116
    * south [south==0.7.1]
117
      WARNING: might not work with Debian Squeeze's default south-0.7-1 package.
118
    * amqplib [amqplib==0.6.1]
119
    * lockfile [lockfile==0.8]
120
    * python-daemon [python-daemon==1.5.5]
121
    * python-prctl [python-prctl==1.3.0]
122

    
123
   also, depending on the database engine of choice, on one of the following:
124
    * MySQL-python [MySQL-python==1.2.3]
125
    * psycopg2 [psycopg2==2.4]
126

    
127
   if the invitations application is deployed, the following dependencies should
128
   be installed:
129
    * pycrypto==2.1.0
130

    
131
   To run the user interface tests, selenium must be installed
132
    * selenium [?]
133

    
134
   The easiest method for installation of the Django project is to setup a
135
   working environment through virtualenv. Alternatively, you can use your
136
   system's package manager to install the dependencies (e.g. Macports has them
137
   all).
138

    
139
   * On Snow Leopard and linux (64-bit), you have to set the following
140
     environment variable for pip to compile the dependencies correctly.
141

    
142
  	   $ export ARCHFLAGS="-arch x86_64"
143

    
144
   * On Ubuntu, a few more packages must be installed before installing the
145
     prerequisite Python libraries
146

    
147
	   $ sudo aptitude install libcurl3-gnutls libcurl3-gnutls-dev uuid-dev
148

    
149
   Checkout the code and install the Python prerequisites. This assumes that
150
   python is already installed on the host.
151

    
152
    $ sudo easy_install virtualenv
153
    $ git clone https://user@code.grnet.gr/git/synnefo synnefo
154
    $ virtualenv --python=python2.6 synnefo --no-site-packages
155
    ...
156
    $ cd synnefo
157
    $ ./bin/pip install <list_of_dependencies>
158

    
159
    [WARNING]: The software must be checked out in a directory named synnefo,
160
    otherwise python imports will not work. Therefore, do not change the
161
    or rename the checkout path.
162

    
163

    
164
5. Database installation:
165
   A database supported by the Django ORM layer must be installed on nodes
166
   of type DB. The choices are: SQLIte, MySQL, PostgreSQL.
167

    
168
   * SQLite:
169
     The python sqlite driver is available by default with Python so no
170
     additional configuration is required. Also, most self-respecting systems
171
     have the sqlite library installed by default.
172

    
173
   * MySQL:
174
      MySQL must be installed first:
175

    
176
      * Ubuntu - Debian
177
	      $ sudo apt-get install libmysqlclient-dev
178

    
179
      * MacPorts
180
	      $ sudo port install mysql5
181

    
182
      Install the MySQL python library on servers running the Django project:
183

    
184
	    $ bin/pip install MySQL-python
185

    
186
      Note: On MacOSX with Mysql install from MacPorts the above command will
187
            fail complaining that it cannot find the mysql_config command. Do
188
            the following and restart the installation
189
	        $ echo "mysql_config = /opt/local/bin/mysql_config5" >> \
190
                                         ./build/MySQL-python/site.cfg
191

    
192
      Configure a MySQL db/account for synnefo
193
	    $ mysql -u root -p
194

    
195
    	mysql> create database synnefo;
196
	    mysql> show databases;
197
	    mysql> GRANT ALL on synnefo.* TO username IDENTIFIED BY 'password';
198

    
199
     IMPORTANT:
200
        MySQL *must* be set in READ-COMMITED mode, e.g. by setting
201

    
202
        transaction-isolation = READ-COMMITTED
203

    
204
        in the [mysqld] section of /etc/mysql/my.cnf.
205

    
206
        Alternatively, make sure the following code fragment stays enabled
207
        in settings.d/10-database.conf:
208

    
209
            if DATABASES['default']['ENGINE'].endswith('mysql'):
210
                DATABASES['default']['OPTIONS'] = {
211
                        'init_command': 'SET storage_engine=INNODB; ' +
212
                            'SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED',
213
                }
214
          
215
   * PostgreSQL
216
     You need to install the PostgreSQL binaries:
217
     * Ubuntu - Debian
218
	     $ sudo apt-get install postgresql-8.4 libpq-dev
219

    
220
     * MacPorts
221
	     $ sudo port install postgresql84
222

    
223
     Install the postgres Python library
224
	    $ bin/pip install psycopg2
225

    
226
     Configure a postgres db/account for synnefo:
227

    
228
     Become the postgres user, connect to PostgreSQL:
229
       $ sudo su - postgres
230
       $ psql
231
	
232
	 Run the following commands:
233
	   DROP DATABASE synnefo;
234
	   DROP USER username;
235
	   CREATE USER username WITH PASSWORD 'password';
236
	   CREATE DATABASE synnefo;
237
	   GRANT ALL PRIVILEGES ON DATABASE synnefo TO username;
238
	   ALTER DATABASE synnefo OWNER TO username;
239
	   ALTER USER username CREATEDB;
240

    
241
     The last line enables the newly created user to create own databases. This
242
     is needed for Django to create and drop the test_synnefo database for unit
243
     testing.
244

    
245

    
246
6. Setting up the Django project:
247
   The settings.py file for Django may be derived by concatenating the
248
   settings.py.dist file contained in the Synnefo distribution with a file
249
   containing custom modifications, which shall override all settings deviating
250
   from the supplied settings.py.dist. This is recommended to minimize the load
251
   of reconstructing settings.py from scratch, since each release currently
252
   brings heavy changes to settings.py.dist.
253

    
254
   Add the following to your custom settings.py, depending on your choice
255
   of DB:
256
   * SQLite
257

    
258
	 PROJECT_PATH = os.path.dirname(os.path.abspath(__file__)) + '/'
259

    
260
	 DATABASES = {
261
	     'default': {
262
		     'ENGINE': 'django.db.backends.sqlite3',
263
		     'NAME': PROJECT_PATH + 'synnefo.db' # WARN: This must be an absolute path
264
	     }
265
	 }
266

    
267
   * MySQL
268

    
269
 	 DATABASES = {
270
	     'default': {
271
             'ENGINE': 'django.db.backends.mysql',
272
             'NAME': 'synnefo',
273
             'USER': 'USERNAME',
274
             'PASSWORD': 'PASSWORD',
275
             'HOST': 'HOST',
276
             'PORT': 'PORT',
277
             'OPTIONS': {
278
                 'init_command': 'SET storage_engine=INNODB',
279
             }
280
	    }
281
	}
282

    
283
   * PostgreSQL
284

    
285
     DATABASES = {
286
	     'default': {
287
             'ENGINE': 'django.db.backends.postgresql_psycopg2',
288
             'NAME': 'DATABASE',
289
             'USER': 'USERNAME',
290
             'PASSWORD': 'PASSWORD',
291
             'HOST': 'HOST',
292
             'PORT': 'PORT',
293
	     }
294
     }
295

    
296
    Try it out. The following command will attempt to connect to the DB and
297
    print out DDL statements. It should not fail.
298

    
299
	$ ./bin/python manage.py sql db
300

    
301

    
302
7. Initialization of Synnefo DB:
303
   You need to initialize the Synnefo DB and load fixtures
304
   db/fixtures/{flavors,images}.json, which make the API usable by end users by
305
   defining a sample set of hardware configurations (flavors) and OS images.
306

    
307
     $ ./bin/python manage.py syncdb
308
     $ ./bin/python manage.py migrate db
309
     $ ./bin/python manage.py loaddata db/fixtures/flavors.json
310
     $ ./bin/python manage.py loaddata db/fixtures/images.json
311

    
312

    
313
8. Finalization of settings.py:
314
   Set the BACKEND_PREFIX_ID variable to some unique prefix, e.g. your commit
315
   username in settings.py. Several functional conventions within the system
316
   require this variable to include a dash at its end (e.g. snf-)
317

    
318

    
319
9. Installation of the Ganeti monitoring daemon, /ganeti/snf-ganeti-eventd:
320
   The Ganeti monitoring daemon must run on GANETI-MASTER.
321
   The Ganeti monitoring daemon has no dependency on Django.
322

    
323
   Override all relevant settings in settings.d/99-snf-ganeti-eventd.conf,
324
   GANETI_* variables.
325
   Then, make sure PYTHONPATH contains the parent of the Django project,
326
   and start the server on the Ganeti master as root.
327

    
328
     root:~# export PYTHONPATH=$PYTHONPATH:/opt
329
     root:~# /opt/synnefo/ganeti/snf-ganeti-eventd.py
330

    
331
   TBD: how to handle master migration.
332

    
333

    
334
10. Installation of the Synnefo dispatcher, /logic/dispatcher.py:
335
    The logic dispatcher is part of the Synnefo Django project and must run
336
    on LOGIC nodes.
337

    
338
    The dispatcher retrieves messages from the queue and calls the appropriate
339
    handler function as defined in the queue configuration in `setttings.py'.
340
    The default configuration should work directly without any modifications.
341

    
342
    For the time being The dispatcher must be run by hand:
343
      $ ./bin/python ./logic/dispatcher.py
344

    
345
    The dispatcher should run in at least 2 instances to ensure high
346
    (actually, increased) availability.
347

    
348

    
349
11. Installation of the Synnefo Ganeti hook:
350
    The bash wrapper ganeti/snf-ganeti-hook is the generic launcher for
351
    Synnefo hooks in Ganeti. It resides in the ganeti/ directory under the
352
    root of the Synnefo Django project.
353

    
354
    The hook needs to be enabled for phases post-{add,modify,reboot,start,stop}
355
    by *symlinking* in
356
    /etc/ganeti/hooks/instance-{add,modify,reboot,start,stop}-post.d on
357
    GANETI-MASTER, e.g.:
358

    
359
    root@ganeti-master:/etc/ganeti/hooks/instance-start-post.d# ls -l
360
    lrwxrwxrwx 1 root root 45 May   3 13:45 00-snf-ganeti-hook -> /home/devel/synnefo/ganeti/snf-ganeti-hook
361

    
362
    IMPORTANT: The link name may only contain "upper and lower case, digits,
363
    underscores and hyphens. In other words, the regexp ^[a-zA-Z0-9_-]+$."
364
    See:
365
     http://docs.ganeti.org/ganeti/master/html/hooks.html?highlight=hooks#naming
366

    
367
    You need to set SYNNEFO_PROJECT_DIR in ganeti/snf-ganeti-hook. The bash
368
    script modifies PYTHONPATH accordingly, before passing control to the
369
    relevant Python code.
370

    
371

    
372
12. Installation of the VNC authentication proxy, vncauthproxy:
373
    To support OOB console access to the VMs over VNC, the vncauthproxy
374
    daemon must be running on every node of type APISERVER.
375

    
376
    Download and install vncauthproxy from its own repository,
377
    at https://code.grnet.gr/git/vncauthproxy (known good commit: tag v1.0).
378

    
379
    Download and install a specific repository commit:
380

    
381
    $ bin/pip install -e git+https://code.grnet.gr/git/vncauthproxy@INSERT_COMMIT_HERE#egg=vncauthproxy
382

    
383
    Create /var/log/vncauthproxy and set its permissions appropriately.
384

    
385
    Alternatively, you can build Debian packages. To do so,
386
    checkout the "debian" branch of the vncauthproxy repository
387
    (known good commit: tag debian/v1.0):
388

    
389
    $ git checkout debian
390

    
391
    Then build debian package, and install as root:
392

    
393
    $ dpkg-buildpackage -b -uc -us
394
    # dpkg -i ../vncauthproxy_1.0-1_all.deb
395

    
396
    --Failure to build the package on the Mac.
397

    
398
    libevent, a requirement for gevent which in turn is a requirement for
399
    vncauthproxy is not included in MacOSX by default and installing it with
400
    MacPorts does not lead to a version that can be found by the gevent
401
    build process. A quick workaround is to execute the following commands:
402

    
403
    cd $SYNNEFO
404
    sudo pip install -e git+https://code.grnet.gr/git/vncauthproxy@5a196d8481e171a#egg=vncauthproxy
405
    <the above fails>
406
    cd build/gevent
407
    sudo python setup.py -I/opt/local/include -L/opt/local/lib build
408
    cd $SYNNEFO
409
    sudo pip install -e git+https://code.grnet.gr/git/vncauthproxy@5a196d8481e171a#egg=vncauthproxy
410

    
411
13. Installation of the customized Ganeti Instance Image for image deployment:
412
    For Synnefo to be able to launch VMs from specified Images, you need
413
    the gnt-instance-image OS Provider installed on the Ganeti backend.
414

    
415
    Download and install gnt-instance-image in all Ganeti nodes from its own
416
    repository, at https://code.grnet.gr/git/gnt-instance-image. It's
417
    recommended to use the win-support branch (known good commit for 0.5.2:
418
    8afaedb329c981282aed1a6c3daf62e43532f00d).
419

    
420
    After installing gnt-instance-image do the following:
421
    1. root@ganeti-master$ cd /path-to-repo
422
       root@ganeti-master$ cp ./defaults /etc/default/ganeti-instance-image
423
    2. Uncomment the following in /etc/default/ganeti-instance-image:
424
         SWAP=no
425
         ARCH="x86_64"
426
    3. In /etc/ganeti/instance-image/hooks, make sure the hooks you want to
427
       run during instance creation process have execute permission.
428
       For linux you will need at lease `grub' and `root_passwd' to make the
429
       instance usable:
430
         chmod +x /etc/ganeti/instance-image/hooks/linux/{grub,root_passwd}
431
       For security reasons make sure `ssh' hook is also enabled.
432
       For windows you will need `mbr' and `admin_passwd':
433
         chmod +x /etc/ganeti/instance-image/hooks/windows/{mbr,admin_passwd}
434
       For both architectures it is also highly recommended to enable
435
       `hostname' hook too:
436
         chmod +x /et/ganeti/instance-image/hooks/{linux,windows}/hostname
437

    
438
    Your Custom Images should be stored in a dump format under
439
    /var/cache/ganeti-instance-image and their filenames should have the
440
    following format:
441
      {backend_id}-x86_64-root.dump
442
    e.g., debian-6.0.1a-x86_64-root.dump (backend_id = "debian-6.0.1a")
443

    
444
14. Setup Synnefo-specific networking on the Ganeti backend:
445
    This part is deployment-specific and must be customized based on the
446
    specific needs of the system administrators.
447

    
448
    A reference installation will use a Synnefo-specific KVM ifup script,
449
    NFDHCPD and pre-provisioned Linux bridges to support public and private
450
    network functionality. For this:
451

    
452
    Grab NFDHCPD from its own repository (https://code.grnet.gr/git/nfdhcpd),
453
    install it, modify /etc/nfdhcpd/nfdhcpd.conf to reflect your network
454
    configuration.
455

    
456
    Install a custom KVM ifup script for use by Ganeti, as
457
    /etc/ganeti/kvm-vif-bridge, on GANETI-NODEs. A sample implementation is
458
    provided under /contrib/ganeti-hooks. Set NFDHCPD_STATE_DIR to point
459
    to NFDHCPD's state directory, usually /var/lib/nfdhcpd.
460

    
461

    
462
15. See section "Logging" in README.admin, and edit logic/logging.conf
463
    according to your OS and individual deployment characteristics.
464

    
465

    
466
16. Optionally, read the okeanos_site/README file to setup ~okeanos introductory 
467
    site (intro, video/info pages). Please see okeanos_site/90-okeanos.sample
468
    for a sample configuration file which overrides site-specific variables,
469
    to be placed under settings.d/, after customization.
470

    
471

    
472
17. (Hopefully) Done
473

    
474