Skip to content

Instantly share code, notes, and snippets.

@apackeer
Created October 20, 2012 10:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apackeer/3922942 to your computer and use it in GitHub Desktop.
Save apackeer/3922942 to your computer and use it in GitHub Desktop.
Devstack Install
Had problems with stack.sh stuffing up with pip.
so my full install sequence is now....
install Ubuntu 11.10 server
sudo apt-get update
sudo apt-get dist-upgrade
sudo init 6
sudo apt-get install git
git clone git://github.com/cloudbuilders/devstack.git
cd devstack
git checkout stable/folsom
echo ADMIN_PASSWORD=password > localrc
echo MYSQL_PASSWORD=password >> localrc
echo RABBIT_PASSWORD=password >> localrc
echo SERVICE_PASSWORD=password >> localrc
echo SERVICE_TOKEN=tokentoken >> localrc
echo HOST_IP=172.16.227.128 >> localrc
sudo pip install prettytable
sudo pip install cliff
sudo pip install pam==0.1.4
sudo pip install passlib
sudo pip install 'SQLAlchemy>=0.7'
sudo pip install boto==2.1.1
sudo pip install 'python-swiftclient>=1.2,<2'
sudo pip install jsonschema
sudo pip install 'warlock<2'
sudo pip install amqplib==0.6.1
sudo pip install 'eventlet>=0.9.17'
sudo pip install 'sqlalchemy-migrate>=0.7.2'
sudo pip install suds==0.4
sudo pip install 'Babel>=0.9.6'
sudo pip install 'python-quantumclient>=2.1'
sudo pip install 'Markdown>=2.0.1'
sudo pip install 'Django>=1.4'
sudo pip install django-compressor
sudo pip install python-daemon==1.5.5
./stack.sh
and stack.sh now completes....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment