Hi Everyone,
I am trying to create a development server which was designed to imitate the conditions of our main production servers.
#
# SPECS
#
CPU: i7 3770
MEM: Corsair Vengeance 32GB
STORAGE: 2 x Samsung Pro in RAID 1
#
# WHAT I HAVE DONE SO FAR
#
*** Fresh install of Centos 6.4 minimal
#
# THE PROBLEM
#
- I notice frequently the CPU jumps up to 100 - 200%, the VM seems responsive until 200%.
- Shutting down the VM is challenging.
#
# QUESTION
#
I have noticed that XEN seems to have a huge following and I am looking to find something that is standardized. Is KVM not the solution when looking for a stable Virtual Machine?
I have used ESXi in the past and I have never had this poor of results.
I am trying to create a development server which was designed to imitate the conditions of our main production servers.
#
# SPECS
#
CPU: i7 3770
MEM: Corsair Vengeance 32GB
STORAGE: 2 x Samsung Pro in RAID 1
#
# WHAT I HAVE DONE SO FAR
#
*** Fresh install of Centos 6.4 minimal
Code:
# yum install kvm
# yum install virt-manager libvirt libvirt-python python-virtinst
# modprobe kvm
# modprobe kvm-intel
# /etc/init.d/libvirtd start
# qemu-img create -f qcow2 -o preallocation=metadata /var/lib/libvirt/images/dev1.qcow2 60G
# virt-install --connect qemu:///system --name dev1 --ram 4096 --vcpus 4 --disk path=/var/lib/libvirt/images/dev1.qcow2,format=qcow2,bus=virtio,cache=none --network=bridge:br0,model=virtio --vnc --os-type=linux --os-variant=debiansqueeze --cdrom /var/lib/libvirt/images/debian-6.0.7-amd64-DVD-1.iso --accelerate --vnc --noautoconsole --keymap=en-us
#
# THE PROBLEM
#
- I notice frequently the CPU jumps up to 100 - 200%, the VM seems responsive until 200%.
- Shutting down the VM is challenging.
#
# QUESTION
#
I have noticed that XEN seems to have a huge following and I am looking to find something that is standardized. Is KVM not the solution when looking for a stable Virtual Machine?
I have used ESXi in the past and I have never had this poor of results.