這篇文章主要介紹KVM虛擬機(jī)快照管理的示例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
成都創(chuàng)新互聯(lián)公司是少有的成都做網(wǎng)站、網(wǎng)站建設(shè)、營銷型企業(yè)網(wǎng)站、小程序開發(fā)、手機(jī)APP,開發(fā)、制作、設(shè)計(jì)、外鏈、推廣優(yōu)化一站式服務(wù)網(wǎng)絡(luò)公司,自2013年起,堅(jiān)持透明化,價(jià)格低,無套路經(jīng)營理念。讓網(wǎng)頁驚喜每一位訪客多年來深受用戶好評
kvm虛擬機(jī)默認(rèn)使用raw格式的鏡像格式,性能最好,速度最快,它的缺點(diǎn)就是不支持一些新的功能,如支持鏡像,zlib磁盤壓縮,AES加密等。
要使用鏡像功能,磁盤格式必須為qcow2。
查看磁盤格式并轉(zhuǎn)換:
[root@e3 images]# qemu-img info centos6.5.img image: kvm003.img file format: raw #可以看出默認(rèn)kvm使用磁盤格式為RAW virtual size: 20G (21474836480 bytes) disk size: 1.8G
關(guān)閉虛擬機(jī)并轉(zhuǎn)換磁盤
[root@e3 images]# virsh list --all Id 名稱 狀態(tài) ---------------------------------------------------- 29 centos6.6 running - centos6.5 關(guān)閉 - kvm001 關(guān)閉 - kvm002 關(guān)閉 - kvm003 關(guān)閉 - template 關(guān)閉
轉(zhuǎn)換
[root@e3 images]# qemu-img convert -f raw -O qcow2 kvm003.img kvm003.qcow2 #-f指定源格式 -O指定轉(zhuǎn)換格式 [root@e3 images]# qemu-img info centos6.5.qcow2 [root@e3 images]# qemu-img info centos6.5.qcow2 image: centos6.5.qcow2 file format: qcow2 #轉(zhuǎn)換成功 virtual size: 20G (21474836480 bytes) disk size: 1.4G cluster_size: 65536 Format specific information: compat: 1.1 lazy refcounts: false
修改虛擬機(jī)配置文件
[root@e3 images]# virsh edit centos6.5/usr/libexec/qemu-kvm #修改 #修改
對虛擬機(jī)進(jìn)行快照
[root@e3 images]# virsh snapshot-create centos6.5 已生成域快照 1421829141
查看快照
[root@e3 images]# virsh snapshot-list centos6.5 名稱 生成時(shí)間 狀態(tài) ------------------------------------------------------------ 1421829141 2015-01-21 16:32:21 +0800 shutoff
查看當(dāng)前的虛擬機(jī)快照版本
[root@e3 images]# virsh snapshot-current centos6.51421829141 #這shutoff 1421829141 centos6.5 34f5ab44-7800-4bc9-a9c1-5227460cf1fa 524288 524288
查看虛擬機(jī)快照文件
[root@e3 images]# virsh snapshot-create centos6.5 已生成域快照 1421829551 [root@e3 images]# virsh snapshot-list centos6.5 名稱 生成時(shí)間 狀態(tài) ------------------------------------------------------------ 1421829141 2015-01-21 16:32:21 +0800 shutoff 1421829551 2015-01-21 16:39:11 +0800 shutoff #因?yàn)関irsh 命令由libvirt-client提供所以rpm -ql libvirt-client 可以看到快照文件存儲在 /var/lib/libvirt [root@e3 images]# rpm -ql libvirt-client [root@e3 images]# cd /var/lib/libvirt/qemu/ [root@e3 qemu]# ls capabilities.monitor.sock centos6.6.monitor channel dump save snapshot [root@e3 qemu]# ll 總用量 16 srwxr-xr-x. 1 qemu qemu 0 1月 19 10:15 capabilities.monitor.sock srwxr-xr-x. 1 qemu qemu 0 1月 21 11:40 centos6.6.monitor drwxr-x---. 3 qemu qemu 4096 1月 6 06:32 channel drwxr-xr-x. 2 root root 4096 1月 14 10:05 dump drwxr-xr-x. 2 qemu qemu 4096 1月 14 10:05 save drwxr-xr-x. 3 qemu qemu 4096 1月 21 16:32 snapshot [root@e3 qemu]# ll 總用量 16 srwxr-xr-x. 1 qemu qemu 0 1月 19 10:15 capabilities.monitor.sock srwxr-xr-x. 1 qemu qemu 0 1月 21 11:40 centos6.6.monitor drwxr-x---. 3 qemu qemu 4096 1月 6 06:32 channel drwxr-xr-x. 2 root root 4096 1月 14 10:05 dump drwxr-xr-x. 2 qemu qemu 4096 1月 14 10:05 save drwxr-xr-x. 3 qemu qemu 4096 1月 21 16:32 snapshot [root@e3 qemu]# cd snapshot/ [root@e3 snapshot]# ll 總用量 4 drwxr-xr-x. 2 root root 4096 1月 21 16:39 centos6.5 [root@e3 snapshot]# cd centos6.5/ [root@e3 centos6.5]# ll 總用量 8 -rw-------. 1 root root 2082 1月 21 16:39 1421829141.xml #存儲文件 -rw-------. 1 root root 2133 1月 21 16:39 1421829551.xml #存儲文件
恢復(fù)虛擬機(jī)快照#虛擬機(jī)必須是關(guān)閉狀態(tài)
[root@e3 images]# virsh list --all Id 名稱 狀態(tài) ---------------------------------------------------- 29 centos6.6 running 33 centos6.5 running - kvm001 關(guān)閉 - kvm002 關(guān)閉 - kvm003 關(guān)閉 - template 關(guān)閉 [root@e3 images]# virsh shutdown centos6.5 #關(guān)閉 域 centos6.5 被關(guān)閉 [root@e3 images]# virsh destroy centos6.5 #關(guān)閉不了強(qiáng)制關(guān)閉 域 centos6.5 被刪除 [root@e3 images]# virsh list --all #查看狀態(tài) Id 名稱 狀態(tài) ---------------------------------------------------- 29 centos6.6 running - centos6.5 關(guān)閉 - kvm001 關(guān)閉 - kvm002 關(guān)閉 - kvm003 關(guān)閉 - template 關(guān)閉 [root@e3 images]# virsh domstate centos6.5 #確認(rèn)關(guān)閉 關(guān)閉 [root@e3 images]# virsh snapshot-list centos6.5 #查看快照 名稱 生成時(shí)間 狀態(tài) ------------------------------------------------------------ 1421829141 2015-01-21 16:32:21 +0800 shutoff 1421829551 2015-01-21 16:39:11 +0800 shutoff [root@e3 images]# virsh snapshot-current centos6.5 #查看當(dāng)前使用那個(gè)快照1421829551 #shutoff [root@e3 images]# virsh snapshot-revert centos6.5 1421829141 #恢復(fù) [root@e3 images]# virsh snapshot-current centos6.5 1421829141 #恢復(fù)成功shutoff 1421829141
以上是“KVM虛擬機(jī)快照管理的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!