Installing Openstack errors

Sorry, can't help you with your particular error, but in general, the easiest way to install openstack is http://devstack.org/

Here are a few notes to install it on virgin Ubuntu 12.04 x64 server:

https://gist.github.com/max-lobur/7786074

This manual is about OpenStack together with Ironic project, but it won't affect you anyway. And you can omit "Install ironic client" step.


Make change in stackrc :

-GIT_BASE=${GIT_BASE:-git://git.openstack.org}

+GIT_BASE=${GIT_BASE:-https://www.github.com}

This would solve problem for you.


I had the same problem, the git protocol is blocked in my testing environment.

The solution is to modify the sourcerc file in the devstack installation folder to use https instead of git. You have to look for that line and change it. This file is also known as the local.conf file.

Default setting in sourcerc file:

GIT_BASE=${GIT_BASE:-git://git.openstack.org}

Modified setting that should bypass git restrictions:

GIT_BASE=${GIT_BASE:-https://git.openstack.org}

Simply add this modified line to the local/localrc section of your local.conf file in the DevStack directory and it should use the HTTPS protocol instead of the Git protocol! More info on the local.conf file here - http://devstack.org/configuration.html