kvm虚拟机管理

一、环境

role         hostname    ip                  OS

kvm_server   target      192.168.32.40/24    rhel6.0_x64

vir_guest1   node4       192.168.32.34/24    rhel5.5_i386

vir_guest2   node5       192.168.32.35/24    rhel5.5_i386

manager      manager     192.168.32.33/24    rhel5.5_i386

ESXi         ESXi        192.168.2.251/24    ESXi 3.5

二、安裝kvm

[root@target ~]# yum install -y qemu-kvm.x86_64 qemu-kvm-tools.x86_64  #安装kvm内核

[root@target ~]# yum install libvirt.x86_64 libvirt-cim.x86_64 libvirt-client.x86_64 libvirt-java.noarch  libvirt-python.x86_64 #安装virt管理工具

[root@target ~]# modprobe kvm         #载入kvm内核

[root@target ~]# modprobe kvm-intel   #intel cpu载入kvm-intel内核。要支持全虚拟化,必须开启。要求cpu支持,通过bios可设置。

[root@target ~]# modprobe kvm-amd     #amd cpu载入kvm-intel

[root@target ~]# modprobe -ls | grep kvm   #查看内核是否开启

kernel/arch/x86/kvm/kvm.ko

kernel/arch/x86/kvm/kvm-intel.ko

kernel/arch/x86/kvm/kvm-amd.ko

[root@target ~]# modprobe -ls | grep kvm-intel

kernel/arch/x86/kvm/kvm-intel.ko

三、安装guest虚拟机

1、直接通过virt-manager安装、管理虚拟机(略)

2、通过命令行安装guest虚拟机

[root@target ~]# yum install virt-viewer   #开启图形控制台安装虚拟客户机须要,

[root@target ~]# virt-install \            #安装选项可用virt-install --help查看

--name node4 \           #虚拟机名

--ram=1024 \             #分配内存大小,MB

--arch=x86_64 \          #模拟的CPU 构架

--vcpus=1 \              #配置虚拟机的vcpu 数目

--check-cpu \            #检查确定vcpu是否超过物理 CPU数目。假设超过则发出警告。

--os-type=linux \        #要安装的操作系统类型,比如:'linux'、'unix'、'windows'

--os-variant=rhel5 \     #操作系统版本号。如:'fedora6', 'rhel5', 'solaris10', 'win2k'

--disk path=/virhost/node7.img,device=disk,bus=virtio,size=20,sparse=true \   #虚拟机所用磁盘或镜像文件,size大小G

--bridge=br0 \           #指定网络,採用透明网桥

--noautoconsole \        #不自己主动开启控制台

--pxe                    #网络安装

四、利用virsh对虚拟机管理

1、开关机

[root@target ~]# virsh start node4      #开机

[root@target ~]# virsh create /etc/libvirt/qemu/node4.xml #直接通过主机配置文档启动主机

[root@target ~]# virsh shutdown node4   #关机

[root@target ~]# virsh destroy node4    #强制关闭电源

[root@target ~]# virsh list --all       #查看虚拟机状态         

 Id 名称               状态

----------------------------------

 18 node4                running

  - node5                关闭

  - win8                 关闭

2、加入删除虚拟机

[root@target ~]# virsh define /etc/libvirt/qemu/node5.xml   #依据主机配置文档加入虚拟机

[root@target ~]# virsh list --all        #node5已经加入

 Id 名称               状态

----------------------------------

 18 node4                running

  - node5                关闭

  - win8                 关闭

 

[root@target ~]# virsh undefine node5     #移除虚拟机

[root@target ~]# ls /etc/libvirt/qemu

networks  node4.xml  win8.xml

[root@target ~]# virsh list --all         #node5已经被移除

 Id 名称               状态

----------------------------------

 18 node4                running

  - win8                 关闭

3、远程管理虚拟机(qemu+ssh连接)

[root@target ~]# yum install virt-viewer

[root@target ~]# export DISPLAY=192.168.40.18:0.0

[root@target ~]# virt-viewer -c qemu///system node4                          #本地管理虚拟机,system:获取system权限,注意qemu后是三个/

[root@manager ~]# virt-viewer -c qemu+ssh://root@192.168.32.40/system node4  #远程linux通过virt-viewer+ssh管理虚拟机

Xlib:  extension "RANDR" missing on display "192.168.40.18:0.0".

root@192.168.32.40's password:

root@192.168.32.40's password:

#会弹出virt-viwer的gtk管理界面

4、使用已存在的虚拟机配置文档安裝新的虚拟机

[root@target ~]# qemu-img create -f qcow2 /virhost/kvm_node/node6.img 20G

#为新建虚拟机生产磁盘镜像文件

[root@target ~]# virsh list

 Id 名称               状态

----------------------------------

 18 node4                running

[root@target ~]# virsh dumpxml node4 >/etc/libvirt/qemu/node6.xml

#导出虚拟机node6的硬件配置信息为/etc/libvirt/qemu/node6.xml

[root@target ~]# vim /etc/libvirt/qemu/node6.xml 

<domain type='kvm' id='20'>    #改动node6的id号

  <name>node6</name>           #虚拟机node6的name

  <uuid>4b7e91eb-6521-c2c6-cc64-c1ba72707fc7</uuid>  #uuid必须改动。否则会和node4的冲突

  <memory>524288</memory>

  <currentMemory>524288</currentMemory>

  <vcpu>1</vcpu>

  <os>

    <type arch='x86_64' machine='rhel5.4.0'>hvm</type>

    <boot dev='network'/>

  </os>

  <features>

    <acpi/>

    <apic/>

    <pae/>

  </features>

  <clock offset='utc'/>

  <on_poweroff>destroy</on_poweroff>

  <on_reboot>restart</on_reboot>

  <on_crash>restart</on_crash>

  <devices>

    <emulator>/usr/libexec/qemu-kvm</emulator>

    <disk type='file' device='disk'>

      <driver name='qemu' type='qcow2' cache='none'/>

      <source file='/virhost/node4.img'/>         #指定新虚拟机的硬盘文件

      <target dev='vda' bus='virtio'/>

    </disk>

    <interface type='bridge'>

      <mac address='54:52:00:69:d5:c7'/>

      <source bridge='br0'/>

      <target dev='vnet0'/>

      <model type='virtio'/>

    </interface>

    <interface type='bridge'>

      <mac address='54:52:00:69:d5:d7'/>

      <source bridge='br0'/>

      <target dev='vnet1'/>

      <model type='virtio'/>

    </interface>

    <serial type='pty'>

      <source path='/dev/pts/4'/>

      <target port='0'/>

    </serial>

    <console type='pty' tty='/dev/pts/4'>

      <source path='/dev/pts/4'/>

      <target port='0'/>

    </console>

    <input type='mouse' bus='ps2'/>

    <graphics type='vnc' port='5900' autoport='yes' keymap='en-us'/>

  </devices>

</domain>

[root@target ~]# virsh define /etc/libvirt/qemu/node6.xml

#使用虚拟描写叙述文档建立虚拟机。可用virsh edit node6改动node6的配置文件

[root@target ~]# virsh start node6

#启动虚拟机

5 为虚拟机开启vnc

[root@target ~]# virsh edit node4     #编辑node4的配置文件。不建议直接通过vim node4.xml改动。

<graphics type='vnc' port='-1' autoport='yes' listen='127.0.0.1' keymap='en-us'/>

   #port='-1' autoport='yes':port自己主动分配,监听回环网络(virt-manager管理须要listen='127.0.0.1'),无password

改为

<graphics type='vnc' port='5904' autoport='no' listen='0.0.0.0' keymap='en-us' passwd='xiaobai'/>

   #固定vnc管理port5904,不自己主动分配。vncpasswordxiaobai。监听全部网络

2. 远程vnc訪问地址:192.168.32.40:5904

五、存储池和存储卷的管理

1.创建 KVM主机存储池

1).创建基于文件夹(文件夹)的存储池

[root@target virhost]# virsh pool-define-as vmware_pool --type dir --target /virhost/vmware

#定义存储池vmware_pool



[root@target virhost]# virsh pool-create-as --name vmware_pool --type dir --target /virhost/vmware    

#创建存储池vmware_pool,类型为文件文件夹,/virhost/vmware,与pool-define-as结果一样

2).创建基于文件系统的存储池

[root@target virhost]#virsh pool-define-as --name vmware_pool --type fs --source-dev /dev/vg_target/LogVol02 --source-format ext4 --target /virhost/vmware



[root@target virhost]#virsh pool-create-as --name vmware_pool --type fs --source-dev /dev/vg_target/LogVol02 --source-format ext4 --target /virhost/vmware

3).查看存储池信息

[root@target virhost]# virsh pool-info vmware_pool  #查看存储域(池)信息

名称:       vmware_pool

UUID:           2e9ff708-241f-fd7b-3b57-25df273a55db

状态:       running

Persistent:     no

自己主动启动: no

容量:       98.40 GB

分配:       18.39 GB

可用:       80.01 GB

4).启动存储池

[root@target virhost]# virsh pool-start vmware_pool   #启动存储池

[root@target virhost]# virsh pool-list

名称               状态     自己主动開始

-----------------------------------------

default              活动     yes      

virhost              活动     yes      

vmware_pool          活动     no

5)销毁存储域,取消存储池

[root@target virhost]# virsh pool-destroy vmware_pool  #销毁存储池

[root@target virhost]# virsh pool-list --all

名称               状态     自己主动開始

-----------------------------------------

default              活动     yes      

virhost              活动     yes      

vmware_pool          不活跃  no         

[root@target virhost]# virsh pool-undefine vmware_pool  #取消存储池的定义

[root@target virhost]# virsh pool-list --all          

名称               状态     自己主动開始

-----------------------------------------

default              活动     yes      

virhost              活动     yes

2.创建了存储池后,就能够创建一个卷,这个卷是用来做虚拟机的硬盘

[root@target virhost]# virsh vol-create-as --pool vmware_pool --name node6.img --capacity 10G --allocation 1G --format qcow2

#创建卷 node6.img,所在存储池为vmware_pool。容量10G,初始分配1G,文件格式类型qcow2

[root@target virhost]# virsh vol-info /virhost/vmware/node6.img  #查看卷信息

名称:       node6.img

类型:       文件

容量:       10.00 GB

分配:       136.00 KB

3.在存储卷上安装虚拟主机

[root@target virhost]#virt-install --connect qemu:///system \

-n node7 \

-r 512 \

-f /virhost/vmware/node7.img \

--vnc \

--os-type=linux \

--os-variant=rhel6  \

--vcpus=1 \

--network bridge=br0 \

-c /mnt/rhel-server-6.0-x86_64-dvd.iso

六、虚拟机的迁移(vmware 2 kvm)

1.安装软件

[root@target ~]# yum install -y virt-v2v.x86_64

[root@target ~]# rpm -ivh libguestfs-winsupport-1.0-7.el6.x86_64.rpm  virtio-win-1.2.0-1.el6.noarch.rpm 

#虚拟机为windows时须要libguestfs-winsupport 包来支持 NTFS 文件系统和 virtio-win 包来支持 Windows para-virtualized 存储和网络设备驱动

2.创建 KVM 主机存储域(略)

virt-v2v 在迁移虚拟机的过程中,须要拷贝被迁移虚拟机到 KVM 主机预先定义的存储池中。

3.创建 KVM 主机网络接口(略)

虚拟机在迁移之后将连接 KVM 主机网络, 因此主机必须有一个与之相匹配的网络接口。比方说网桥。

4.在 KVM 主机上创建或改动 $HOME/.netrc 文件。加入 VMware ESXi server的username和password。

[root@target ~]# cat ~/.netrc

machine 192.168.2.251 login root password xxxxxx

[root@target ~]# chmod 0600 ~/.netrc

5.Vmware ESXi到KVM的迁移

[root@target ~]# virt-v2v -ic esx://192.168.2.251/?no_verify=1 -op virhost -b br0 ipserver  

** HEAD https://192.168.2.251/folder/tserver21/RHEL4.6-flat.vmdk?dcPath=ha-datacenter&dsName=ESX35-bak%3Astorage1 ==> 401 Unauthorized

** HEAD https://192.168.2.251/folder/tserver21/RHEL4.6-flat.vmdk?

dcPath=ha-datacenter&dsName=ESX35-bak%3Astorage1 ==> 200 OK

** GET https://192.168.2.251/folder/tserver21/RHEL4.6-flat.vmdk?

dcPath=ha-datacenter&dsName=ESX35-bak%3Astorage1 ==> 200 OK (2084s)

unknown filesystem /dev/hda

unknown filesystem /dev/fd0

virt-v2v: Installation failed because the following files referenced in the configuration file are required, but missing: rhel/4/kernel-smp-2.6.9-89.EL.i686.rpm

virt-v2v: 非 virtio 驱动程序配置的 tserver21

#全部选项可通过配置文件/etc/virt-v2v.conf来指定

#-op:指定用于转换后的存储域(pool),virhost

#-b:指定网络为网桥br0

#-ic:指定要转换的源地址

[root@target kvm_node]# virsh list --all

 Id 名称               状态

----------------------------------

  1 node4                running

  - node5                关闭

  - tserver21            关闭

  - win8                 关闭

[root@target kvm_node]# virsh start tserver21

6.KVM到KVM迁移

[root@target kvm_node]# virt-v2v -ic qemu+ssh://192.168.32.179/system -op virhost -b br0 node6

root@192.168.32.179's password:

root@192.168.32.179's password:

unknown filesystem label SWAP-vda3

virt-v2v: The connected hypervisor does not support a machine type of rhel5.4.0. It will be set to the current default.

virt-v2v: virtio 驱动程序配置的 node6

[root@target kvm_node]# virsh list --all

 Id 名称               状态

----------------------------------

  1 node4                running

  - node5                关闭

  - node6                关闭

  - tserver21            关闭

  - win8                 关闭

[root@target kvm_node]# virsh start node6

centos 下 KVM虚拟机的创建、管理与迁移的更多相关文章

  1. CentOS 6.9下KVM虚拟机快照创建、删除、恢复(转)

    使用文件快照的方式实现文件备份,但单说快照(snapshot)的话,他是某一时间点(版本)你能看到的该时间点备份文件状态的全貌,通过文件的快照(全貌)你能恢复到特定时间点(版本)的文件状态. 创建虚拟 ...

  2. CentOS下vm虚拟机桥接联网

    CentOS下vm虚拟机桥接联网   vm虚拟机下的桥接联网相当于虚拟机是一个独立的主机,直接与外网相连,这是比较好的连接方式,这样外网的机子就可以直接访问到虚拟机了.   首先虚拟机的联网方式设置为 ...

  3. Linux下KVM虚拟机基本管理及常用命令(转)

    说明:可能有重复 一.KVM的基本管理 1.查看KVM虚拟机配置文件 #Kvm虚拟机默认配置文件位置 [root@kvm qemu]# pwd /etc/libvirt/qemu [root@kvm ...

  4. KVM虚拟机的创建、管理与迁移

    [日期:2012-06-01] KVM虚拟机管理 一.环境 role         hostname    ip                  OS kvm_server   target   ...

  5. CentOS 6.9下KVM虚拟机网络Bridge(网桥)方式与NAT方式详解(转)

    摘要:KVM虚拟机网络配置的两种方式:NAT方式和Bridge方式.Bridge方式的配置原理和步骤.Bridge方式适用于服务器主机的虚拟化.NAT方式适用于桌面主机的虚拟化. NAT的网络结构图: ...

  6. CentOS 6.9下KVM虚拟机通过virt-clone克隆虚拟机(转)

    一.virt-clone概述 1.virt-clone作用简介 virt-clone主要是用来克隆kvm虚拟机,并且通过Options.General Option.Storage Configura ...

  7. 使用Python-Libvirt GUI 实现KVM 虚拟机 界面化管理

    一.KVM环境的搭建 1.安装VMware(略) 2.在VMware中安装Linux系统(略,Ubuntu16.04) 打开支持虚拟化 网络选择桥接模式 3.安装qemu apt-get instal ...

  8. centos6.7环境下kvm虚拟机之virt-install和virsh及virt-manager工具的使用

    virt-install工具的使用: virt-install是一个命令行工具,它能够为KVM.Xen或其它支持libvrit API的hypervisor创建虚拟机并完成GuestOS安装:此外,它 ...

  9. linux系统下kvm虚拟机的安装

    一 KVM虚拟机简介 KVM是kernel-based Virtual Machine的简称,目前已成为学术界的主流VMM之一.KVM的虚拟化需要硬件支持(如Intel VT技术或者AMD V技术) ...

随机推荐

  1. weixin js接口

    <!DOCTYPE HTML><html><head> <meta http-equiv="content-type" content=& ...

  2. TYVJ 1941 BZOJ3038 上帝造题的七分钟2 并查集+树状数组

    背景 XLk觉得<上帝造题的七分钟>不太过瘾,于是有了第二部. 描述 "第一分钟,X说,要有数列,于是便给定了一个正整数数列. 第二分钟,L说,要能修改,于是便有了对一段数中每个 ...

  3. Hadoop MapReduce编程 API入门系列之FOF(Fund of Fund)(二十三)

    不多说,直接上代码. 代码 package zhouls.bigdata.myMapReduce.friend; import org.apache.hadoop.io.Text; public cl ...

  4. Git Learning Part III - working remotely (Github)

    help document of Github : https://help.github.com/ 1 upload 1.1 new update  Initialize a repository  ...

  5. Git Learning Part I - Install Git and configure it

    Why we need 'Git' GIt version control: 1. record the history about updating code and deleting code 2 ...

  6. javascript实现选项卡切换的4种方法

    方法一:for循环+if判断当前点击与自定义数组是否匹配 <html lang="en"> <head> <meta charset="UT ...

  7. java json转义引号

    String jsonMapStr = "{\"system\":\"1,\\\"2\\\",3\",\"createD ...

  8. sql多表关联

    inner join(等值连接) 只返回两个表中联结字段相等的行 left join(左联接) 返回包括左表中的所有记录和右表中联结字段相等的记录 right join(右联接) 返回包括右表中的所有 ...

  9. LINQ(Language Integrated Query)

    LINQ http://www.cnblogs.com/lifepoem/archive/2011/12/16/2288017.html LINQ是.NET Framework 3.5的新特性,其全称 ...

  10. 软件神器系列——photozoom图片像无损清晰放大软件砸金蛋活动开始啦!

    不管是刚进入社会的小白,还是混迹多年的油条,是不是发现了最近的工作越来越难做了? 推广文章.产品手册.营销方案.培训计划.工作报告乃至于PPT,都不是以前用文字数据可以交工的了,现在都讲究“图文并茂” ...