Anton, Assuming you have access to the CloudStack database, identify the ID of the VM by looking in the vm_instance table, searching for the name of the VM
mysql> SELECT id, name, FROM cloud.vm_instance where name="<VM-NAME>"; Or if you know the instance name such as i-5-33-VM, the VM ID will be 33 (5 is the account ID in this example) Once you know the ID of the VM identify the Volume mysql> SELECT pool_id, path FROM cloud.volumes where instance_id = 33; The POOL_ID will tell you which Primary Storage the volume is on (look in the storage_pool table for details), and the PATH will tell you the name of the volume. Then export the volume to a hypervisor not under the control of CloudStack, and mount it on a running VM, this will then allow you to access the data contained within it. Regards Geoff Higginbottom D: +44 20 3603 0542 | S: +44 20 3603 0540 | M: +447968161581 [email protected] -----Original Message----- From: Anton Rubets [mailto:[email protected]] Sent: 28 April 2014 09:21 To: [email protected] Subject: Save data from xenserver Hi I have a problem with CS 4.1 Now i wanna save data from VM but i cant launch it with CS. How i can run it without CS? Thx Need Enterprise Grade Support for Apache CloudStack? Our CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/> offers the best 24/7 SLA for CloudStack Environments. Apache CloudStack Bootcamp training courses **NEW!** CloudStack 4.2.1 training<http://shapeblue.com/cloudstack-training/> 28th-29th May 2014, Bangalore. Classromm<http://shapeblue.com/cloudstack-training/> 16th-20th June 2014, Region A. Instructor led, On-line<http://shapeblue.com/cloudstack-training/> 23rd-27th June 2014, Region B. Instructor led, On-line<http://shapeblue.com/cloudstack-training/> 15th-20th September 2014, Region A. Instructor led, On-line<http://shapeblue.com/cloudstack-training/> 22nd-27th September 2014, Region B. Instructor led, On-line<http://shapeblue.com/cloudstack-training/> 1st-6th December 2014, Region A. Instructor led, On-line<http://shapeblue.com/cloudstack-training/> 8th-12th December 2014, Region B. Instructor led, On-line<http://shapeblue.com/cloudstack-training/> This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue is a registered trademark.
