Skip to content

DevStack: Quickly Develop or Test OpenStack

Software version Grizzly
Operating System Ubuntu Server 12.04
Website DevStack Website
Last Update 14/04/2013

Introduction

If you want to quickly test OpenStack^1, whether for playing around or developing with it, DevStack^2 is currently the fastest method.

I started with an Ubuntu Server 12.04 base as this distribution is one of the versions recommended by DevStack. The goal here is to have a VM with all OpenStack services installed and functional.

Warning

WARNING: Do NOT use DevStack in production!!!

Installation

To set up DevStack, we'll need git:

aptitude install git git-core

Now let's get the current version of DevStack, and switch to the desired version (Grizzly):

1
2
3
git clone git://github.com/openstack-dev/devstack.git
cd devstack
git checkout stable/grizzly

Then launch the installation and provide all requested passwords:

./stack.sh

Utilization

To launch a development stack:

./stack.sh

When the installation is complete, you can access the different services like this:

The default users are admin and demo

For more information, check the GitHub^3 page for DevStack.

References