Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

To test the CloudMonkey releases, start with simple things like checking the signatures of the artifacts and installing cloudmonkey

You may wish to use a virtualenv in order to give yourself a clean python environment. The setup/installation for virtualenv is documented at https://cwiki.apache.org/confluence/display/CLOUDSTACK/Installing+virtualenv

Code Block
#!/bin/bash

wget --no-check-certificate https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.0.0/apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2
wget --no-check-certificate https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.0.0/apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2.asc
wget --no-check-certificate https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.0.0/apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2.md5
wget --no-check-certificate https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.0.0/apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2.sha

wget --no-check-certificate https://dist.apache.org/repos/dist/release/cloudstack/KEYS


gpg --verify apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2.asc

gpg --print-md MD5 apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2 | diff - apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2.md5
gpg --print-md SHA512 apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2 | diff - apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2.sha

tar xvfj apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2

cd apache-cloudstack-cloudmonkey-5.0.0-src

sudo python ./setup.py install

Then launch cloudmonkey and test the functionalities.