Jump to: navigation, search

Difference between revisions of "Obsolete:InstallationNova20100729"

Line 102: Line 102:
 
unzip nova.zip  
 
unzip nova.zip  
 
. novarc
 
. novarc
 +
</nowiki></pre>
 +
 +
 +
* Install rabbit-mq
 +
 +
<pre><nowiki>
 +
# ubuntu
 +
apt-get install rabbitmq-server
 +
# OSX
 +
brew install rabbitmq
 
</nowiki></pre>
 
</nowiki></pre>
  

Revision as of 00:30, 30 July 2010

Installation notes

PYTHON 2.6 REQUIRED!!!

For developers

  • Get Redis
curl http://redis.googlecode.com/files/redis-2.0.0-rc4.tar.gz -o redis-2.0.0-rc4.tar.gz
tar xvfz redis-2.0.0-rc4.tar.gz
cd redis-2.0.0-rc4


  • Make and start Redis server
make
./redis-server


  • Get BZR
http://wiki.bazaar.canonical.com/Download


SUDO MAY NOT BE NECESSARY

  • Get virtualenv
sudo easy_install virtualenv


  • Get PIP
sudo easy_install pip


  • UBUNTU ONLY!!!
sudo apt-get build-dep python-m2crypto


  • Get Nova and run tests
bzr init
bzr branch lp:nova
cd nova
python tools/install_venv.py
./run_tests.sh


  • Set up python path for using nova
# is there an easier way to do this? automation? Relative paths?
echo "/path/to/bzr/branch" > cat /path/to/bzr/branch/.nova-venv/lib/python2.6/site-packages/nova.pth


  • Activate the virtual environment (type deactivate to leave it later)
. .nova-venv/bin/activate


  • Install eucatools
# ubuntu
apt-get install euca2ools
# OSX
wget http://open.eucalyptus.com/sites/all/modules/pubdlcnt/pubdlcnt.php?file=http://eucalyptussoftware.com/downloads/releases/euca2ools-1.2.tar.gz&nid=1346
tar zxf  euca2ools-1.2.tar.gz
cd euca2ools-1.2
sed -i="" "s/-g root/-g wheel/g" Makefile
sudo make install


  • Set up user/project credentials
tools/with_venv.sh bin/nova-manage user admin admin
tools/with_venv.sh bin/nova-manage project admin admin admin
tools/with_venv.sh bin/nova-manage project create admin admin admin
tools/with_venv.sh bin/nova-manage project zip admin admin
unzip nova.zip 
. novarc


  • Install rabbit-mq
# ubuntu
apt-get install rabbitmq-server
# OSX
brew install rabbitmq


  • Start services in their own windows (don't forget to activate venv in each)
tools/with_venv.sh bin/nova-api --verbose
tools/with_venv.sh bin/nova-objectstore --verbose --nodaemon
tools/with_venv.sh bin/nova-compute --verbose --nodaemon --connection_type=fake
# tools/with_venv.sh bin/nova-volume --verbose --nodaemon # ignore this for now, requires extra setup


  • PROFIT???

Just to run on Debian or Ubuntu

Get packages from http://nova.openstack.org/pkgs