Centos6.5安装kvm虚拟化

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos6.5安装kvm虚拟化相关的知识,希望对你有一定的参考价值。

Centos6.5安装kvm虚拟化

KVM简介:
1.KVM是开源软件,全称是kernel-based virtual machine(基于内核的虚拟机)。
2.是x86架构且硬件支持虚拟化技术(如 intel VT 或 AMD-V)的Linux全虚拟化解决方案。
3.KVM能在不改变linux或windows镜像的情况下同时运行多个虚拟机,(它的意思是多个虚拟机使用同一镜像)并为每一个虚拟机配置个性化硬件环境(网卡、磁盘、图形适配器……)

一、设置虚拟机支持虚拟化
技术分享图片

二、先关闭防火墙和selinux

[[email protected] ~]# service iptables stop    关闭防火墙
[[email protected] ~]# setenforce 0                关闭selinux(临时生效)
setenforce: SELinux is disabled

永久生效方法

[[email protected] ~]# vim /etc/sysconfig/selinux   SELINUX=enforcing 改为disabled 并reboot生效

三、检查服务器是否支持虚拟化

[[email protected] ~]# grep -E -o ‘vmx|svm‘ /proc/cpuinfo
vmx    如果有输出VMX就支持虚拟化

四、安装KVM所需组件,VM使用桥接网络,使用yum安装方式(配置好yum源)

[[email protected] ~]# yum install -y kvm virt-* libvirts bridge-utils qemu-img

五、加载kvm模块,查看kvm模块是否被加载

[[email protected] ~]# modprobe kvm-intel
[[email protected] ~]# lsmod | grep kvm
kvm_intel             54285  0 
kvm                    333172  1 kvm_intel     成功加载!

六、配置网卡,具体参数如下
创建桥接网卡命令 : virsh iface-bridge eth0 br0 或者直接编辑网卡配置

[[email protected] ~]# virsh iface-bridge eth0 br0     出现下面的错误 重启一下libvirt服务就好了
error: Failed to reconnect to the hypervisor
error: no valid connection
error: Failed to connect socket to ‘/var/run/libvirt/libvirt-sock‘: No such file or directory
[[email protected] ~]# /etc/init.d/libvirtd restart
Stopping libvirtd daemon:                                  [  OK  ]
Starting libvirtd daemon:                                  [  OK  ]
[[email protected] ~]# virsh iface-bridge eth0 br0
Created bridge br0 with attached device eth0
Bridge interface br0 started                              成功桥接
[[email protected] ~]# service network restart           重启网卡

此时的网卡信息

技术分享图片
注意 :因为eth0网卡因为与br0 网卡进行桥接,所以eth0不显示ip是正常的

七、查看目前所有的网桥接口

[[email protected] ~]# brctl show
bridge name bridge id       STP enabled interfaces
br0     8000.000c29eb8697   yes     eth0
virbr0      8000.525400941201   yes     virbr0-nic

八、修改VNC配置

[[email protected] ~]#  vim /etc/libvirt/qemu.conf
    #vnc_listen = "0.0.0.0"  去掉  # 号并wq保存

九、重启libvirtd和messagebus服务

[[email protected] ~]# service libvirtd restart
Stopping libvirtd daemon:                                  [  OK  ]
Starting libvirtd daemon:                                  [  OK  ]
[[email protected] ~]# service messagebus restart
Stopping system message bus:                               [  OK  ]
Starting system message bus:                               [  OK  ]

十、创建、安装LVM虚拟机

[[email protected] ~]# mkdir /abc         创建镜像存放目录
[[email protected] ~]# mkdir -p /data/kvm     创建虚拟磁盘存放目录
[[email protected] ~]# dd if=/dev/cdrom of=/abc/Centos6.iso     把Centos6.5系统的镜像文件拷贝到abc目录下
8726528+0 records in
8726528+0 records out
4467982336 bytes (4.5 GB) copied, 157.25 s, 28.4 MB/s
[[email protected] libvirt]# cd /data/kvm/    进入虚拟磁盘目录创建img
[[email protected] kvm]# qemu-img create -f qcow2 -o preallocation=metadata kvm_cany.img 5G
Formatting ‘kvm_cany.img‘, fmt=qcow2 size=5368709120 encryption=off cluster_size=65536 preallocation=‘metadata‘ 
[[email protected] kvm]# ls
kvm_cany.img

安装虚拟机

[[email protected] kvm]# virt-install --name=kvm_cany --ram 512 --vcpus=1 -f /data/kvm/kvm_cany.img --cdrom=/abc/Centos6.iso --graphics vnc,listen=0.0.0.0,port=7788 --force --autostart

Starting install...
Creating domain...                                                                            |    0 B     00:00     
Cannot open display: 
Run ‘virt-viewer --help‘ to see a full list of available command line options
Domain installation still in progress. You can reconnect to 
the console to complete the installation process.

如果遇到安装失败  请对虚拟磁盘存放目录权限  chmod -R 777 /data/kvm

VNC客户端连接KVM虚拟机
软件:VNC Viewer
技术分享图片
技术分享图片
VNC连上了之后,安装系统就ok了!安装结束后,vnc会自动挂断,因为此时虚拟机并未启动!!!

使用 virsh控制台为 KVM 系统管理若干任务 下面就让我们来手动开启刚刚安装的KVM虚拟机

[[email protected] kvm]# virsh
Welcome to virsh, the virtualization interactive terminal.

Type:  ‘help‘ for help with commands
       ‘quit‘ to quit

virsh # list --all
 Id    Name                           State
----------------------------------------------------
 -     kvm_cany                       shut off

virsh # start kvm_cany
Domain kvm_cany started

重新使用VNC客户端进行连接 并对其网卡进行配置
技术分享图片

注意:出现网卡重启失败的话 将eth0网卡配置文件中的 HWADDR修改成MACADDR

rm -rf /etc/udev/rules.d/70-persistent-net.rules

在虚拟机上查看KVM虚拟机运行状态

技术分享图片

以上是关于Centos6.5安装kvm虚拟化的主要内容,如果未能解决你的问题,请参考以下文章

使用kvm虚拟出Centos6.5系统相关步骤

CentOS6.5部署KVM及实现在线迁移

CentOS6.5部署KVM及实现在线迁移

在Centos6.5上部署kvm虚拟化技术

centos6.5下kvm环境搭建

CentOS 6.5下安装KVM