Kvm之十一:v2v迁移

Centos7 Kvm v2v迁移(都是在vm环境下,实验后面没有实现)

1、v2v迁移
#虚拟化迁移至虚拟化环境
#p2v迁移,是指物理机器迁移至虚拟化环境
#安装v2v迁移工具:yum install -y virt-v2v
#
2、KVM-KVM的v2v迁移
#KVM是采用Centos7,vm是采用oel6操作系统,始终报错
错误信息:
qemu-img: /var/tmp/v2vovl16ebce.qcow2: Could not open '/data/vmfs/c4_qcow2.img': No such file irectory
virt-v2v: error: qemu-img command failed, see earlier errors
If reporting bugs, run virt-v2v with debugging enabled and include the 
#新安装centos6操作系统测试,环境确认,两台KVM需要有相同的存储池位置,vmfspool
#node72检查
[root@node72 ~]# virsh pool-list
 名称               状态     自动开始
-------------------------------------------
 iso                  活动     是       
 oel1                 活动     是       
 vmfspool             活动     是       

[root@node72 ~]# 
#关闭需要迁移的虚拟机
[root@node72 ~]# virsh list --all
 Id    名称                         状态
----------------------------------------------------
 7     oel4                           running
 -     oel5                           关闭
[root@node72 ~]# virsh shutdown oel4
域 oel4 被关闭
[root@node72 ~]#
#测试KVM 自身vm迁移到自身,-oc是迁移出去,-on取另外一个名字,因为系统本身已经存在oel4这个实例
[root@node72 ~]# virt-v2v -oc qemu+ssh://192.168.2.110/system -os vmfspool -on centos4 -b br0 oel4
[   0.0] Opening the source -i libvirt oel4
[   0.0] Creating an overlay to protect the source from being modified
[   0.0] Opening the overlay
[  10.0] Initializing the target -o libvirt -oc qemu+ssh://192.168.2.110/system -os vmfspool
root@192.168.2.110's password: 
root@192.168.2.110's password: 
root@192.168.2.110's password: 
[  17.0] Inspecting the overlay
[  24.0] Checking for sufficient free disk space in the guest
[  24.0] Estimating space required on target for each disk
[  24.0] Converting CentOS release 6.5 (Final) to run on KVM
virt-v2v: This guest has virtio drivers installed.
[  69.0] Mapping filesystem data to avoid copying unused and blank areas
[  69.0] Closing the overlay
[  70.0] Checking if the guest needs BIOS or UEFI to boot
[  70.0] Copying disk 1/1 to /data/vmfs/centos4-sda (qcow2)
    (100.00/100%)
[  82.0] Creating output metadata
root@192.168.2.110's password: 
池 vmfspool 被刷新
root@192.168.2.110's password: 
定义域 centos4(从 /tmp/v2vlibvirt7142b4.xml)
[ 107.0] Finishing off
[root@node72 ~]#
#可以看到迁移的vm磁盘为/data/vmfs/centos4-sda (qcow2)
#检查,另外需要因为是迁移到自身测试,所以需要查看配置文件UUID,MAC地址,VNC端口,
[root@node72 ~]# virsh list --all
 Id    名称                         状态
----------------------------------------------------
 -     centos4                        关闭
 -     oel4                           关闭
 -     oel5                           关闭
[root@node72 ~]#
3、KVM之间的v2v迁移
#检查node71的迁移环境
[root@node71 ~]# virsh pool-list
 名称               状态     自动开始
-------------------------------------------
 iso                  活动     是       
 vmfspool             活动     是       

[root@node71 ~]# 
#测试迁移,从node72迁移出来
[root@node72 ~]# virt-v2v -oc qemu+ssh://192.168.2.111/system -os vmfspool  -b br0 oel4
[   0.0] Opening the source -i libvirt oel4
[   0.0] Creating an overlay to protect the source from being modified
[   0.0] Opening the overlay
[  10.0] Initializing the target -o libvirt -oc qemu+ssh://192.168.2.111/system -os vmfspool
root@192.168.2.111's password: 
root@192.168.2.111's password: 
root@192.168.2.111's password: 
[  18.0] Inspecting the overlay
[  24.0] Checking for sufficient free disk space in the guest
[  24.0] Estimating space required on target for each disk
[  24.0] Converting CentOS release 6.5 (Final) to run on KVM
virt-v2v: This guest has virtio drivers installed.
[  68.0] Mapping filesystem data to avoid copying unused and blank areas
[  69.0] Closing the overlay
[  69.0] Checking if the guest needs BIOS or UEFI to boot
[  69.0] Copying disk 1/1 to /data/vmfs/oel4-sda (qcow2)
    (100.00/100%)
[  80.0] Creating output metadata
root@192.168.2.111's password: 
池 vmfspool 被刷新

root@192.168.2.111's password: 
定义域 oel4(从 /tmp/v2vlibvirt255acc.xml)

[  86.0] Finishing off
[root@node72 ~]# 
#迁移完成
#检查测试,在运行迁移的vm之前,需要根据实际环境的情况来检查vm配置文件,确定是否按需修改
[root@node71 vmfs]# virsh list --all
 Id    名称                         状态
----------------------------------------------------
 -     oel2                           关闭
 -     oel3                           关闭
 -     oel4                           关闭
[root@node71 vmfs]# 
#可以查看到oel4已经迁移完成

#这是采用node72迁移出去的方式(-oc),但是在node71上采用迁移进来的方式(-ic)就会报错误
[root@node71 vmfs]# virt-v2v -ic qemu+ssh://192.168.2.110/system -os vmfspool -b br0 -on centos6 oel4
virt-v2v: warning: no support for remote libvirt connections to '-ic 
qemu+ssh://192.168.2.110/system'.  The conversion may fail when it tries to 
read the source disks.
[   0.0] Opening the source -i libvirt -ic qemu+ssh://192.168.2.110/system oel4
root@192.168.2.110's password: 
[   2.0] Creating an overlay to protect the source from being modified
qemu-img: /var/tmp/v2vovl1c0ab2.qcow2: Could not open '/data/vmfs/c4_qcow2.img': No such file or directory
virt-v2v: error: qemu-img command failed, see earlier errors

If reporting bugs, run virt-v2v with debugging enabled and include the 
complete output:

  virt-v2v -v -x [...]
[root@node71 vmfs]# 
#暂时还不清楚,我们-ic一直会报"No such file or directory"
virt-v2v 命令帮助
[root@node71 iso]# virt-v2v --help
virt-v2v: convert a guest to use KVM

 virt-v2v -ic vpx://vcenter.example.com/Datacenter/esxi -os imported esx_guest

 virt-v2v -ic vpx://vcenter.example.com/Datacenter/esxi esx_guest -o rhev -os rhev.nfs:/export_domain --network rhevm

 virt-v2v -i libvirtxml guest-domain.xml -o local -os /var/tmp

 virt-v2v -i disk disk.img -o local -os /var/tmp

 virt-v2v -i disk disk.img -o glance

There is a companion front-end called "virt-p2v" which comes as an
ISO or CD image that can be booted on physical machines.

A short summary of the options is given below.  For detailed help please
read the man page virt-v2v(1).

  -b in:out                                   Map bridge 'in' to 'out'
  --bridge in:out                             -"-
  --debug-gc                                  Debug GC and memory allocations
  --dcpath path                               Override dcPath (for vCenter)
  --dcPath path                               -"-
  --debug-overlay                             Save overlay files
  --debug-overlays                            -"-
  -i disk|libvirt|libvirtxml|ova              Set input mode (default: libvirt)
  -ic uri                                     Libvirt URI
  -if format                                  Input format (for -i disk)
  --long-options                              List long options
  --machine-readable                          Make output machine readable
  -n in:out                                   Map network 'in' to 'out'
  --network in:out                            -"-
  --no-copy                                   Just write the metadata
  --no-trim all|mp,mp,..                      Don't trim selected mounts
  -o glance|libvirt|local|null|qemu|rhev|vdsm Set output mode (default: libvirt)
  -oa sparse|preallocated                     Set output allocation mode
  -oc uri                                     Libvirt URI
  -of raw|qcow2                               Set output format
  -on name                                    Rename guest when converting
  -os storage                                 Set output storage location
  --password-file file                        Use password from file
  --print-source                              Print source and stop
  --qemu-boot                                 This option cannot be used in RHEL
  -q                                          Quiet output
  --quiet                                     -"-
  --root ask|...                              How to choose root filesystem
  --vdsm-image-uuid uuid                      Output image UUID(s)
  --vdsm-vol-uuid uuid                        Output vol UUID(s)
  --vdsm-vm-uuid uuid                         Output VM UUID
  --vdsm-ovf-output                           Output OVF file
  -v                                          Enable debugging messages
  --verbose                                   -"-
  -V                                          Display version and exit
  --version                                   -"-
  --vmtype server|desktop                     Set vmtype (for RHEV)
  -x                                          Enable tracing of libguestfs calls
  -help                                       Display this list of options
  --help                                      Display this list of options
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,378评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,356评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,702评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,259评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,263评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,036评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,349评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,979评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,469评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,938评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,059评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,703评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,257评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,262评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,485评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,501评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,792评论 2 345

推荐阅读更多精彩内容