~0x44/nova/extdoc

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
..
      Copyright 2010-2011 OpenStack LLC

      All Rights Reserved.

      Licensed under the Apache License, Version 2.0 (the "License"); you may
      not use this file except in compliance with the License. You may obtain
      a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
      WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
      License for the specific language governing permissions and limitations
      under the License.
      
Installing the Live CD
======================

If you'd like to set up a sandbox installation of Nova, you can use one of these Live CD images. 

If you don't already have VirtualBox installed, you can download it from http://www.virtualbox.org/wiki/Downloads.
 
Download the zip or iso file and then follow these steps to try Nova in a virtual environment.

http://c0047913.cdn1.cloudfiles.rackspacecloud.com/OpenStackNova.x86_64-2010.1.2.iso (OpenSUSE image; root password is "linux" for this image)

http://c0028699.cdn1.cloudfiles.rackspacecloud.com/nova-vm.zip (~900 MB) (log in information is nova/nova)

Once a VM is configured and started, here are the basics:

 #. Login to Ubuntu using ID nova and Password nova.

 #. Switch to running as sudo (enter nova when prompted for the password)::

    sudo -s

 #. To run Nova for the first time, enter::

    cd /var/openstack/

 #. Now that you're in the correct directory, enter::

    ./nova.sh run

    .. image:: images/novashvirtually.png

If it's already running, use screen -ls, and when the nova screen is presented,then enter screen -d -r nova.

These are the steps to get an instance running (the image is already provided in this environment). Enter these commands in the "test" screen.

::

 euca-add-keypair test > test.pem
 chmod 600 test.pem
 euca-run-instances -k test -t m1.tiny ami-tiny
 euca-describe-instances

 ssh -i test.pem root@10.0.0.3

To see output from the various workers, switch screen windows with Ctrl+A " (quotation mark). 

    .. image:: images/novascreens.png