Difference between revisions of "Archive/XCP CloudStack"

From Xen
(References)
Line 3: Line 3:
 
=XCP Compatibility=
 
=XCP Compatibility=
 
== XCP 1.5 ==
 
== XCP 1.5 ==
Before installing CloudStack, perform these steps on each XCP host:
+
Before installing CloudStack, there are a few compatibility fixes to apply.
# Rename or copy /etc/xensource/installed-repos/xcp:main to /etc/xensource/installed-repos/xs:main (this name changed between 1.1 and 1.5) to get the CloudStack supplemental pack installed.
+
# Rename the installed repo (this name changed between 1.1 and 1.5) to get the CloudStack supplemental pack installed.
 
# Fix the get_mtime bug by replacing the NFSSR.py file with a custom built version and actually include the python stats module to get access to the functions necessary.
 
# Fix the get_mtime bug by replacing the NFSSR.py file with a custom built version and actually include the python stats module to get access to the functions necessary.
 
# Do not modify the XAPI version as some other HOWTOs suggest. For CloudStack to work the API version should be kept as it is from the install ("1.4.90").
 
# Do not modify the XAPI version as some other HOWTOs suggest. For CloudStack to work the API version should be kept as it is from the install ("1.4.90").
  +
  +
To accomplish the above, run these commands on each XCP host being adding them to CloudStack.
  +
# cp /etc/xensource/installed-repos/xcp:main /etc/xensource/installed-repos/xs:main
  +
# mv /opt/xensource/sm/NFSSR.py /opt/xensource/sm/NFSSR.py.backup
  +
# wget http://download.locatrix.com/xcp/cloudstack/NFSSR.py -O /opt/xensource/sm/NFSSR.py
  +
  +
Alternatively, you can modify the NFSSR script on the CloudStack server itself before the install:
  +
# mv /usr/lib/cloud/agent/scripts/vm/hypervisor/xenserver/xcpserver/NFSSR.py /usr/lib/cloud/agent/scripts/vm/hypervisor/xenserver/xcpserver/NFSSR.py.backup
  +
# wget http://download.locatrix.com/xcp/cloudstack/NFSSR.py -O /usr/lib/cloud/agent/scripts/vm/hypervisor/xenserver/xcpserver/NFSSR.py
  +
 
==What CloudStack does to a XCP Host==
 
==What CloudStack does to a XCP Host==
 
* https://git-wip-us.apache.org/repos/asf?p=incubator-cloudstack.git;a=blob;f=scripts/vm/hypervisor/xenserver/xenserver60/patch;hb=HEAD
 
* https://git-wip-us.apache.org/repos/asf?p=incubator-cloudstack.git;a=blob;f=scripts/vm/hypervisor/xenserver/xenserver60/patch;hb=HEAD
 
=References=
 
=References=
* Thanks to Shawn Henderson for the above XCP 1.5 hints.
+
* Thanks to Shawn Henderson, Ryan Farrington, and Abhi for the above XCP 1.5 hints.
 
* http://cloudstack.org/
 
* http://cloudstack.org/
 
* http://incubator.apache.org/projects/cloudstack.html
 
* http://incubator.apache.org/projects/cloudstack.html

Revision as of 14:32, 5 June 2012

Introduction

CloudStack (cloud.com) is a mature cloud orchestration technology that works with KVM, VMWare, XenServer, and XCP. CloudStack was acquired by Citrix in 2011, and is the orchestration system of choice for XCP and XenServer.

XCP Compatibility

XCP 1.5

Before installing CloudStack, there are a few compatibility fixes to apply.

  1. Rename the installed repo (this name changed between 1.1 and 1.5) to get the CloudStack supplemental pack installed.
  2. Fix the get_mtime bug by replacing the NFSSR.py file with a custom built version and actually include the python stats module to get access to the functions necessary.
  3. Do not modify the XAPI version as some other HOWTOs suggest. For CloudStack to work the API version should be kept as it is from the install ("1.4.90").

To accomplish the above, run these commands on each XCP host being adding them to CloudStack.

  1. cp /etc/xensource/installed-repos/xcp:main /etc/xensource/installed-repos/xs:main
  2. mv /opt/xensource/sm/NFSSR.py /opt/xensource/sm/NFSSR.py.backup
  3. wget http://download.locatrix.com/xcp/cloudstack/NFSSR.py -O /opt/xensource/sm/NFSSR.py

Alternatively, you can modify the NFSSR script on the CloudStack server itself before the install:

  1. mv /usr/lib/cloud/agent/scripts/vm/hypervisor/xenserver/xcpserver/NFSSR.py /usr/lib/cloud/agent/scripts/vm/hypervisor/xenserver/xcpserver/NFSSR.py.backup
  2. wget http://download.locatrix.com/xcp/cloudstack/NFSSR.py -O /usr/lib/cloud/agent/scripts/vm/hypervisor/xenserver/xcpserver/NFSSR.py

What CloudStack does to a XCP Host

References