Upgrade Instruction from 4.10.x

    Any steps that are hypervisor-specific will be called out with a note.

    We recommend reading through this section once or twice before beginning your upgrade procedure, and working through it on a test system before working on a production system.

    Note

    The following upgrade instructions should be performed regardless of hypervisor type.

    Upgrade Steps:

    1. Backup CloudStack database (MySQL)
    2. Add package repository for MySQL connector
    3. Upgrade CloudStack management server(s)
    4. Update hypervisors specific dependencies

    Apache CloudStack 4.10.0.0 users who are upgrading to 4.11.0.0 should read the following discussion and workaround for a db-upgrade issue: http://markmail.org/message/f42kqr3mx4r4hgih

    1. While running the existing 4.10.x system, log in to the UI as the root administrator.

    2. In the left navigation bar, click Templates.

    3. In Select view, click Templates.

    4. Click Register template. The Register template dialog box is displayed.

    5. In the Register template dialog box, specify the following values (do not change these):

    6. Watch the screen to be sure that the template downloads successfully and enters the READY state. Do not proceed until this is successful.

    Packages repository

    Most users of CloudStack manage the installation and upgrades of CloudStack with one of Linux’s predominant package systems, RPM or APT. This guide assumes you’ll be using RPM and Yum (for Red Hat Enterprise Linux or CentOS), or APT and Debian packages (for Ubuntu).

    Create RPM or Debian packages (as appropriate) and a repository from the 4.11.3.0 source, or check the Apache CloudStack downloads page at http://cloudstack.apache.org/downloads.html for package repositories supplied by community members. You will need them for or Management Server on CentOS/RHEL and hosts upgrade.

    Instructions for creating packages from the CloudStack source are in the CloudStack Installation Guide.

    Database Preparation

    Backup current database

    1. Stop your management server or servers. Run this on all management server hosts:

    2. If you are running a usage server or usage servers, stop those as well:

    3. Make a backup of your MySQL database. If you run into any issues or need to roll back the upgrade, this will assist in debugging or restoring your existing environment. You’ll be prompted for your password.

      1. $ mysqldump -u root -p cloud > cloud-backup_`date '+%Y-%m-%d'.sql
    4. (KVM Only) If primary storage of type local storage is in use, the path for this storage needs to be verified to ensure it passes new validation. Check local storage by querying the cloud.storage_pool table:

      1. $ mysql -u cloud -p -e "select id,name,path from cloud.storage_pool where pool_type='Filesystem'"

      If local storage paths are found to have a trailing forward slash, remove it:

      1. $ mysql -u cloud -p -e 'update cloud.storage_pool set path="/var/lib/libvirt/images" where path="/var/lib/libvirt/images/"';

    If you are using Ubuntu, follow this procedure to upgrade your packages. If not, skip to step Management Server on CentOS/RHEL.

    Note

    Community Packages: This section assumes you’re using the community supplied packages for CloudStack. If you’ve created your own packages and APT repository, substitute your own URL for the ones used in these examples.

    The first order of business will be to change the sources list for each system with CloudStack packages. This means all management servers, and any hosts that have the KVM agent. (No changes should be necessary for hosts that are running VMware or Xen.)

    Java 8 JRE on Ubuntu

    CloudStack 4.11 requires installation of Java 8 JRE from an external PPA such as openjdk-r for Ubuntu distributions where the openjdk-8 packages are not available from the main repositories such as on Ubuntu 14.04. The PPA can be added before installation/upgrade:

    Users can also choose to install Java 8 distribution from Oracle, or Xulu-8 OpenJDK distribution from Azul.

    Start by opening /etc/apt/sources.list.d/cloudstack.list on any systems that have CloudStack packages installed.

    This file should have one line, which contains:

    1. deb http://download.cloudstack.org/ubuntu precise 4.10

    We’ll change it to point to the new package repository:

    1. deb http://download.cloudstack.org/ubuntu precise 4.11

    Setup the public key for the above repository:

    1. wget -qO - http://download.cloudstack.org/release.asc | sudo apt-key add -

    If you’re using your own package repository, change this line to read as appropriate for your 4.11 repository.

    1. Now update your apt package list:

      1. $ sudo apt-get update
      1. $ sudo apt-get upgrade cloudstack-management
    2. If you use CloudStack usage server

      1. $ sudo apt-get upgrade cloudstack-usage

    Management Server on CentOS/RHEL

    If you are using CentOS or RHEL, follow this procedure to upgrade your packages. If not, skip to hypervisors section Hypervisor: XenServer.

    Note

    Community Packages: This section assumes you’re using the community supplied packages for CloudStack. If you’ve created your own packages and yum repository, substitute your own URL for the ones used in these examples.

    The first order of business will be to change the yum repository for each system with CloudStack packages. This means all management servers, and any hosts that have the KVM agent.

    (No changes should be necessary for hosts that are running VMware or Xen.)

    Start by opening /etc/yum.repos.d/cloudstack.repo on any systems that have CloudStack packages installed.

    This file should have content similar to the following:

    If you are using the community provided package repository, change the base url to:

    Setup the GPG public key if you wish to enable gpgcheck=1:

    1. rpm --import http://download.cloudstack.org/RPM-GPG-KEY

    If you’re using your own package repository, change this line to read as appropriate for your 4.11 repository.

    1. Now that you have the repository configured, it’s time to upgrade the cloudstack-management.

      1. $ sudo yum upgrade cloudstack-management
    2. If you use CloudStack usage server

      1. $ sudo yum upgrade cloudstack-usage

    (XenServer only) Copy vhd-utils file on CloudStack management servers. Copy the file to /usr/share/cloudstack-common/scripts/vm/hypervisor/xenserver.

    1. wget -P /usr/share/cloudstack-common/scripts/vm/hypervisor/xenserver http://download.cloudstack.org/tools/vhd-util

    Hypervisor: VMware

    Warning

    For VMware hypervisor CloudStack management server packages must be build using “noredist”. Refer to

    (VMware only) Additional steps are required for each VMware cluster. These steps will not affect running guests in the cloud. These steps are required only for clouds using VMware clusters:

    1. Stop the Management Server:

      1. $ sudo service cloudstack-management stop
    2. Generate the encrypted equivalent of your vCenter password:

      1. $ java -classpath /usr/share/cloudstack-common/lib/jasypt-1.9.2.jar org.jasypt.intf.cli.JasyptPBEStringEncryptionCLI encrypt.sh input="_your_vCenter_password_" password="cat /etc/cloudstack/management/key" verbose=false

    Store the output from this step, we need to add this in cluster_details table and vmware_data_center tables in place of the plain text password

    1. Find the ID of the row of cluster_details table that you have to update:

      1. $ mysql -u <username> -p<password>
      1. select * from cloud.cluster_details;
    2. Update the plain text password with the encrypted one

      1. where id = _id_from_step_2_;
    3. Confirm that the table is updated:

      1. select * from cloud.cluster_details;
    4. Find the ID of the correct row of vmware_data_center that you

      want to update

    5. update the plain text password with the encrypted one:

      1. update cloud.vmware_data_center set password = '_ciphertext_from_step_1_'
    6. Confirm that the table is updated:

      1. select * from cloud.vmware_data_center;

    Hypervisor: KVM

    (KVM only) Additional steps are required for each KVM host. These steps will not affect running guests in the cloud. These steps are required only for clouds using KVM as hosts and only on the KVM hosts.

    1. Configure the as detailed above.

    2. Stop the running agent.

      1. $ sudo service cloudstack-agent stop
    3. Update the agent software.

      1. $ sudo apt-get upgrade cloudstack-agent
    4. Verify that the file /etc/cloudstack/agent/environment.properties has a

      line that reads:

      1. paths.script=/usr/share/cloudstack-common

      If not, add the line.

    5. Start the agent.

      1. $ sudo service cloudstack-agent start

    For KVM hosts, upgrade the cloudstack-agent package

    1. Configure the CloudStack RPM repository as detailed above.

      1. $ sudo yum upgrade cloudstack-agent
    2. Verify that the file /etc/cloudstack/agent/environment.properties has a line that reads:

      1. paths.script=/usr/share/cloudstack-common

      If not, add the line.

    3. Restart the agent:

      1. $ sudo service cloudstack-agent stop
      2. $ sudo killall jsvc
      3. $ sudo service cloudstack-agent start
      1. $ sudo service cloudstack-management start
    1. If you use it, start the usage server