[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Xen-users] ISSUE EXPORTING VM FROM XEN 3.2.1 to XCP 0.5 WITH XVA.PY


  • To: George Shuklin <george.shuklin@xxxxxxxxx>
  • From: Jorge Constán <jorqejcv@xxxxxxxxx>
  • Date: Wed, 1 Dec 2010 08:52:58 +0000
  • Cc: xen-users@xxxxxxxxxxxxxxxxxxx
  • Delivery-date: Wed, 01 Dec 2010 00:55:10 -0800
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=umHjd3mJ+Pfn4X6OxowCrSVBuB//ljk9JjuETKAiENqG2F2816lRTRyOdu0p9sgdG2 RFjqIeAtqOA29dTIfox7otC0GWdd6GQwgItOlAy+yrZm1jZ/DhscnAHgVmvyTPJ0evbs OO/pjzGeYlrwP5pKa5tq0Qioo/9HB6sjn+Uuw=
  • List-id: Xen user discussion <xen-users.lists.xensource.com>

Hi George and thanks for your reply.

The FileSystem of domU asterisk.domainxen.local in XEN is ext3:
---------------------------------------------------------------------------------------------------------------------
asterisk:~# df -hT
Filesystem Type Size Used Avail Use% Mounted on
/dev/xvda2ÂÂÂ ext3ÂÂÂ 5.0GÂ 1.2GÂ 3.6GÂ 25% /
tmpfsÂÂÂÂÂÂÂ tmpfsÂÂÂ 257MÂÂÂÂ 0Â 257MÂÂ 0% /lib/init/rw
udevÂÂÂÂÂÂÂÂ tmpfsÂÂÂÂ 10MÂ 456KÂ 9.6MÂÂ 5% /dev
tmpfsÂÂÂÂÂÂÂ tmpfsÂÂÂ 257MÂ 4.0KÂ 257MÂÂ 1% /dev/shm
---------------------------------------------------------------------------------------------------------------------

Reading README file of xva.py again it says:
......................................................................................................................

Things to take into consideration when migrating PV Linux guests to XenServer.

1. The most important thing to realise is that XenServer only supports xvda/b/c/d block device names in the guest.
That means you cannot have a block device called sda or hda.
It also means that block devices cannot be the names of partitions i.e. sda1 or xvda1 will not work.
......................................................................................................................
Perhaps my error is that my domU in XEN is xvda2 and I should changing it to xvda only in "fstab" and "menu,lst" inside domU before migrate.

FSTAB in domU is:
----------------------------------------------------------------------------------------------------------------
asterisk:~# less /etc/fstab
# /etc/fstab: static file system information.
#
# <file system> <mount point>ÂÂ <type>Â <options>ÂÂÂÂÂÂ <dump>Â <pass>
procÂÂÂÂÂÂÂÂÂÂÂ /procÂÂÂÂÂÂÂÂÂÂ procÂÂÂ defaultsÂÂÂÂÂÂÂ 0ÂÂÂÂÂÂ 0
/dev/xvda1 none swap sw 0 0
/dev/xvda2 / ext3 noatime,nodiratime,errors=remount-ro 0 1
---------------------------------------------------------------------------------------------------------------

But there is not any menu.lst inside domU (it is lenny debian).

Any suggestions?

Thanks again!






2010/11/30 George Shuklin <george.shuklin@xxxxxxxxx>
What FS is in domU? pygrub in XCP0.5 seems having troubles with ext4.

In anyway, you can use external kernels (xe vm-param-set
bootloader=EMTRYHERE; xe vm-param-set kernel=..., xe vm-param-set
ramdisk=...; be sure place kernels to anywhere in /boot on every XCP
host).

Ð ÐÐÐ, 29/11/2010 Ð 12:46 +0000, Jorge ConstÃn ÐÐÑÐÑ:
> Hello everyone.
>
> I have the following problem that could help would appreciate.
>
>
> 1) Environment:
>
> HOST 1: xen-hypervisor-3.2-1-amd64 with all VM in LVM disk.
>
> HOST 2: XCP 0.5
>
>
> 2) The VM that I wish migrate is a domU in XEN and is debian lenny
> over LVM:
>
> ...................................................................................................
> # Configuration file for the Xen instance asterisk.domainxen.local,
> created
> # by xen-tools 3.9 on Wed Nov 11 11:11:34 2009.
> #
>
> #
> # ÂKernel + memory size
> #
> kernel   Â= '/boot/vmlinuz-2.6.26-1-xen-amd64'
> ramdisk   = '/boot/initrd.img-2.6.26-1-xen-amd64'
> memory   Â= '512'
>
> #
> # ÂDisk device(s).
> #
> root    Â= '/dev/xvda2 ro'
> disk    Â= [
>
> 'phy:/dev/server/asterisk.domainxen.local-swap,xvda1,w',
>
> 'phy:/dev/server/asterisk.domainxen.local-disk,xvda2,w',
> Â Â Â Â Â Â Â ]
>
> ........................................................................................................
>
> As the disk was "xvda" I not modified anything (as says README xva.py
> script).
>
>
> 3) From dom0 in XEN host:
>
> server:# lvscan
>
> Â ACTIVE
> '/dev/server/asterisk.domainxen.local-swap' [512,00 MB] inherit
> Â ACTIVE Â Â Â Â Â Â'/dev/server/asterisk.domainxen.local-disk' [5,00
> GB] inherit
>
>
> 4) The steps I did:
>
>
> A) Shutdown VM asterisk.domain.local in XEN:
> B) Convert VM LVM (asterisk.domainxen.local-disk) to a IMG so that:
>
> server:t# dd if=/dev/server/asterisk.domainxenlocal-disk bs=64K | gzip
> -c > /mnt/unidad_usb/sat/disco_imagen_asterisk.img.gz
> 81920+0 records in
> 81920+0 records out
> 5368709120 bytes (5,4 GB) copied, 180,349 s, 29,8 MB/s
>
> C) I Copied Âimg file to my ubuntu karmic desktop with python 2.6.4
> and run ""xva.py" script:
>
> jorge@ubus1:~/vm_xen_img$ ./xva.py --is-pv --disk
> disco_imagen_asterisk.img --file=asterik.xva
> VM Details:
> Name: Unnamed
> Type: Paravirtualised
> VCPUS: 1
> Memory(bytes): 268435456
> ACPI: true
> APIC: true
> PAE: true
> NX: false
> Viridian: true
> Disk xvda(Bootable): disco_imagen_asterisk.img
> Generating XVA file asterik.xva
>
> Processing disk disco_imagen_asterisk.img(5368709120 bytes)
> [ ########################################################################### ] 100%
>
> It seemed that all was corect
>
>
> 5) When I imported from XCP 0.5 CLI appeared the following error:
>
> Error: ['WARNING: /dev/xvda is not a disk image', 'Traceback (most
> recent call last):', ' ÂFile "/usr/bin/pygrub", line 746, in ?', '
> rai
>
>
>
> What am I doing wrong? Any suggestions?
>
> Thanks a lot.
>
> _______________________________________________
> Xen-users mailing list
> Xen-users@xxxxxxxxxxxxxxxxxxx
> http://lists.xensource.com/xen-users



_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users

_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.