Kvm之十一:v2v遷移

Centos7 Kvm v2v遷移(都是在vm環(huán)境下,實(shí)驗(yàn)后面沒有實(shí)現(xiàn))

1眉尸、v2v遷移
#虛擬化遷移至虛擬化環(huán)境
#p2v遷移,是指物理機(jī)器遷移至虛擬化環(huán)境
#安裝v2v遷移工具:yum install -y virt-v2v
#
2、KVM-KVM的v2v遷移
#KVM是采用Centos7,vm是采用oel6操作系統(tǒng)爵卒,始終報(bào)錯(cuò)
錯(cuò)誤信息:
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操作系統(tǒng)測試,環(huán)境確認(rèn)撵彻,兩臺(tái)KVM需要有相同的存儲(chǔ)池位置钓株,vmfspool
#node72檢查
[root@node72 ~]# virsh pool-list
 名稱               狀態(tài)     自動(dòng)開始
-------------------------------------------
 iso                  活動(dòng)     是       
 oel1                 活動(dòng)     是       
 vmfspool             活動(dòng)     是       

[root@node72 ~]# 
#關(guān)閉需要遷移的虛擬機(jī)
[root@node72 ~]# virsh list --all
 Id    名稱                         狀態(tài)
----------------------------------------------------
 7     oel4                           running
 -     oel5                           關(guān)閉
[root@node72 ~]# virsh shutdown oel4
域 oel4 被關(guān)閉
[root@node72 ~]#
#測試KVM 自身vm遷移到自身,-oc是遷移出去陌僵,-on取另外一個(gè)名字轴合,因?yàn)橄到y(tǒng)本身已經(jīng)存在oel4這個(gè)實(shí)例
[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)
#檢查,另外需要因?yàn)槭沁w移到自身測試碗短,所以需要查看配置文件UUID,MAC地址受葛,VNC端口,
[root@node72 ~]# virsh list --all
 Id    名稱                         狀態(tài)
----------------------------------------------------
 -     centos4                        關(guān)閉
 -     oel4                           關(guān)閉
 -     oel5                           關(guān)閉
[root@node72 ~]#
3偎谁、KVM之間的v2v遷移
#檢查node71的遷移環(huán)境
[root@node71 ~]# virsh pool-list
 名稱               狀態(tài)     自動(dòng)開始
-------------------------------------------
 iso                  活動(dòng)     是       
 vmfspool             活動(dòng)     是       

[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 ~]# 
#遷移完成
#檢查測試,在運(yùn)行遷移的vm之前搭盾,需要根據(jù)實(shí)際環(huán)境的情況來檢查vm配置文件,確定是否按需修改
[root@node71 vmfs]# virsh list --all
 Id    名稱                         狀態(tài)
----------------------------------------------------
 -     oel2                           關(guān)閉
 -     oel3                           關(guān)閉
 -     oel4                           關(guān)閉
[root@node71 vmfs]# 
#可以查看到oel4已經(jīng)遷移完成

#這是采用node72遷移出去的方式(-oc),但是在node71上采用遷移進(jìn)來的方式(-ic)就會(huì)報(bào)錯(cuò)誤
[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]# 
#暫時(shí)還不清楚婉支,我們-ic一直會(huì)報(bào)"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
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末鸯隅,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌蝌以,老刑警劉巖炕舵,帶你破解...
    沈念sama閱讀 211,884評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異跟畅,居然都是意外死亡咽筋,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,347評論 3 385
  • 文/潘曉璐 我一進(jìn)店門徊件,熙熙樓的掌柜王于貴愁眉苦臉地迎上來奸攻,“玉大人,你說我怎么就攤上這事虱痕《媚停” “怎么了?”我有些...
    開封第一講書人閱讀 157,435評論 0 348
  • 文/不壞的土叔 我叫張陵部翘,是天一觀的道長硝训。 經(jīng)常有香客問我,道長新思,這世上最難降的妖魔是什么窖梁? 我笑而不...
    開封第一講書人閱讀 56,509評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮夹囚,結(jié)果婚禮上纵刘,老公的妹妹穿的比我還像新娘。我一直安慰自己崔兴,他們只是感情好彰导,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,611評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著敲茄,像睡著了一般位谋。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上堰燎,一...
    開封第一講書人閱讀 49,837評論 1 290
  • 那天掏父,我揣著相機(jī)與錄音,去河邊找鬼秆剪。 笑死赊淑,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的仅讽。 我是一名探鬼主播陶缺,決...
    沈念sama閱讀 38,987評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼洁灵!你這毒婦竟也來了饱岸?” 一聲冷哼從身側(cè)響起掺出,我...
    開封第一講書人閱讀 37,730評論 0 267
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎苫费,沒想到半個(gè)月后汤锨,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,194評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡百框,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,525評論 2 327
  • 正文 我和宋清朗相戀三年闲礼,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片铐维。...
    茶點(diǎn)故事閱讀 38,664評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡柬泽,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出方椎,到底是詐尸還是另有隱情聂抢,我是刑警寧澤,帶...
    沈念sama閱讀 34,334評論 4 330
  • 正文 年R本政府宣布棠众,位于F島的核電站琳疏,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏闸拿。R本人自食惡果不足惜空盼,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,944評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望新荤。 院中可真熱鬧揽趾,春花似錦、人聲如沸苛骨。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,764評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽痒芝。三九已至俐筋,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間严衬,已是汗流浹背澄者。 一陣腳步聲響...
    開封第一講書人閱讀 31,997評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留请琳,地道東北人粱挡。 一個(gè)月前我還...
    沈念sama閱讀 46,389評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像俄精,于是被迫代替她去往敵國和親询筏。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,554評論 2 349

推薦閱讀更多精彩內(nèi)容