Was this page helpful?

RedHat KVM

    RedHat 自版本 RHEL5.4 起,開始改用 KVM Virtualization,但 5.4 版仍會有 Xen + KVM 兩套不同方案選擇,但之後的新版本,將會以 KVM 為主,使用 RedHat 的人可能要注意了。

    RHEL KVM 最大可以支援 16 vCPU/per guest,而 VMware vSphere 或 Citrix XenServer for free 都只能到 8 vCPU。

    RHEL 5.4 已經內含 KVM Hypervisor 虛擬化引擎以及 virt 簡易型管理工具,如果不要求管理功能,這樣要作系統虛擬化已經夠用。
    假設需要有較完善的集中化管理,以及 Live Migration(類似 vmware 的 live-motion)、HA等功能,就需要購買 RHEV(RedHat Enterprise Virtualization) Server 版,這個產品包含有 KVM Hypervisor、RHEV Manager。
    詳細資訊請見 http://www.redhat.com/virtualization...ures-benefits/
    簡介影片 http://www.redhat.com/v/swf/rhev/demo.html

    RedHat 官方線上手冊
    http://www.redhat.com/docs/en-US/Red...ide/index.html

    安裝前注意事項

    需要 64 bit 安裝模式

    為了要在安裝時能選用 KVM 套件,必須要選擇 64-bit 安裝,才能看的到 KVM 套件的選項,如果看不到,表示您的版本不是 64-bit,如圖示。

    Note: 為了要能安裝 64-bit RHEL,CPU 也必須能支援 64-bit。

    RHELkvmSelect.png 

    Guest OS 支援列表

    guest_os.png

    軟體的使用限制

    Per Host:

    • Max physical CPUs = 64
    • Max logical CPUs = 256
    • Max RAM = 1 TB

    Per Guest:

    • Max vCPU/guest = 16
    • Max RAM/guest = 256 GB

    與 VMware, Hyper-V 比較

    kvm_comparison.jpg

    開始安裝

    使用 RHEL for x86_64 光碟開機,按一般方式來安裝,在到了選擇套件的步驟時,只選擇 Virtualization,其餘的套件就不要選,勾選 Customize Now,選擇 KVM,取消 Virtualization(這是 Xen 套件)。

    RHELkvmSelect.png

    安裝完成後,重新開機。

    新增 Guest OS - RHAS3

    以 root 登入 Host OS,執行指令開啟管理介面。

    virt-manager &

    1. 按 New 新增 Guest OS(virtual machine)。

    Notes: KVM 只能使用 Fully Virtualized

    rhelkvm-new_guest.png

    rhelkvm-method.png 

    2. 選擇 Guest OS Type

    rhelkvm-os_type.png 

    3. 選擇 安裝映像檔 ISO 的路徑。

    Tip: ISO 檔路徑可為本機磁碟或遠端 FTP 主機。

    rhelkvm-iso.png 

    4. 分配 CPU & Memory 資源

    rhelkvm-cpu_mem.png

    5. 設定虛擬網路介面,預設的網路類型只有 NAT 虛擬網路可選

    Tip: 系統在安裝後,預設所支援的網路類型只有 NAT,若要使用 Bridge 模式和現有 LAN 連接,請繼續以下設定:

    如何設定 Bridged Network 橋接的網路

    // 停用 Xen network scripts, 如果沒有安裝 Xen, 請忽略
    編輯 /etc/xen/xend-config.sxp

    (network-script network-bridge)
    修改為
    (network-script /bin/true)

    // 停用 NetworkManager 服務
    #chkconfig NetworkManager off
    #chkconfig network on
    #service NetworkManager stop
    #service network start

    // 新增橋接網路設定檔
    #cd /etc/sysconfig/network-scripts
    #vi ifcfg-eth0

    DEVICE=eth0
    ...
    ONBOOT=yes
    BRIDGE=br0
    MTU=9000
    

    Note: 增加 BRIDGE, MTU 兩個參數。

    #vi ifcfg-br0

    DEVICE=br0
    TYPE=Bridge
    BOOTPROTO=dhcp
    ONBOOT=yes
    DELAY=0
    

    Notes: TYPE=Bridge,要注意大小寫的英文字。

    #service network restart

    // 設定 iptables
    #iptables -I FORWARD -m physdev --physdev-is-bridged -j ACCEPT
    #services iptables save
    #services iptables restart

    #vi /etc/sysctl.conf
    增加這幾行

    net.bridge.bridge-nf-call-ip6tables = 0
    net.bridge.bridge-nf-call-iptables = 0
    net.bridge.bridge-nf-call-arptables = 0
    

    #sysctl -p /etc/sysctl.conf
    #service libvirtd reload

    // 檢查 橋接網路
    #brctl show

    bridge name     bridge id               STP enabled     interfaces
    br0             8000.0a4e52d7f15c       no              eth0
    virbr0          8000.000000000000       yes

    Notes: br0 是 bridged network; virbr0 是 NAT network,兩者各自獨立運作。

    rhelkvm-network.png  

     

    VM 設定完成。

    開始安裝 Guest OS

    rhelkvm-boot_starting.png

    rhelkvm-boot_starting-2.png 

    Was this page helpful?
    標籤 (Edit tags)
    • No tags
    您必須 登入 才能發佈評論。
    Powered by MindTouch Core