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 OpenStack1, whether for playing around or developing with it, DevStack2 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.
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):
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:
- Horizon: http://server/
- Keystone: http://server:5000/v2.0/
The default users are admin and demo
For more information, check the GitHub3 page for DevStack.
References
Last updated 14 Apr 2013, 07:21 CEST.