Updated Branches: refs/heads/4.2 db4a2db42 -> da56b6212
Add upgrade instructions for KVM local storage users Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/da56b621 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/da56b621 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/da56b621 Branch: refs/heads/4.2 Commit: da56b6212bbcf9e363ba1add180516584a3d695b Parents: db4a2db Author: Marcus Sorensen <[email protected]> Authored: Tue Sep 24 14:45:41 2013 -0600 Committer: Marcus Sorensen <[email protected]> Committed: Tue Sep 24 14:45:41 2013 -0600 ---------------------------------------------------------------------- docs/en-US/Release_Notes.xml | 9 +++++++++ 1 file changed, 9 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/da56b621/docs/en-US/Release_Notes.xml ---------------------------------------------------------------------- diff --git a/docs/en-US/Release_Notes.xml b/docs/en-US/Release_Notes.xml index f42b7b9..b1a7901 100644 --- a/docs/en-US/Release_Notes.xml +++ b/docs/en-US/Release_Notes.xml @@ -1085,6 +1085,15 @@ under the License. You'll be prompted for your password.</para> <programlisting><prompt>#</prompt> mysqldump -u root -p cloud > cloudstack-backup.sql</programlisting> </listitem> + <listitem> + <para>(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: + </para> + <programlisting><prompt>#</prompt>mysql -u cloud -p -e "select id,name,path from cloud.storage_pool where pool_type='Filesystem'"</programlisting> + <para>If local storage paths are found to have a trailing forward slash, remove it: + <programlisting><prompt>#</prompt>mysql -u cloud -p -e 'update cloud.storage_pool set path="/var/lib/libvirt/images" where path="/var/lib/libvirt/images/"';</programlisting> + </listitem> <listitem id="upgrade-deb-packages"> <para>If you are using Ubuntu, follow this procedure to upgrade your packages. If not, skip to step <xref linkend="upgrade-rpm-packages"/>.</para>
