Partly Cloudy – Openstack in VM

Having heard so much about clouds and ‘Infrastructure as A Service’ recently I decided to try Openstack – complete open source solution for cloud computing.   Openstack is actually a set of softwares, that together provide necessary services for a cloud infrastructure.  Openstack (Essex release) can be installed in virtual machine, Virtual Box in my case, so I gave it a try and here are some of my observations:

Installation

I used this guide for Ubuntu server, which is available on Openstack web,  getting starting section. Actually it took bit more then advertised 10 minutes, due to some small issues and detours, but finally I got it running (computing service with all related components).   There are few important things for an installation in VM:

  • VM disk size – since Nova VM disk images are stored in the root file system (see below for explanation), the disk size should be reasonably big – at least 20GB – to enable so experiments.  The guide also require separate volume block devices (nova-volume service), but this is something completely else then VM images.
  • Memory – 4GB of memory worked for me without any issues
  • Network interfaces –   the setup that worked for me :
    Adapter 1 – Host-Only ‘vboxnet0’ – public cloud interface
    Adapter 2 – Host-Only ‘vboxnet1’ – private cloud interface
    Adapter 3 – NAT – internet access to install SW packages
  • If openstack is running in VM it has to use qemu as virtual machine type – in this case edit /etc/nova/nova-compute.conf  and put there --libvirt_type=qemu

VNC console

Some additional effort is needed for VNC console to work ( as explained here):

  • Install this additional packages:
    apt-get install novnc nova-consoleauth
  • and edit /etc/nova/nova.conf
    --vnc_enabled=true
    --novncproxy_base_url=http://your_public_ip:6080/vnc_auto.html

VM images vs. block volumes

VM disk  images are stored at /var/lib/nova/instances.   Disk images are stored as qcow2 disk image format (this format enables ‘Copy On Write’, only data additional to base OS image are written here).  This was a source of  some confusion for me – because these images are not maintained by nova-volume services.   Block devices from nova-volume service are handled completely separately and  can be used as additional discs to VMs.

Errors, Issues

The error reporting in Dashboard interface seemed to quite insufficient to me,    usually just VM instance status indicates that something went wrong, but not providing any clue what it is and how to fix it.  You must go to logs in /var/log/ , where each service has subdirectory with its logs and dig there for details.  Hope this will be better in new release.

Leave a Reply

Your email address will not be published. Required fields are marked *