If you want to manage your KVM VMs through a web GUI, then check out these instruction from Scott Irwin.
Need a simple and easy to use Free KVM Manager? While there are many tools out there that offer similar functionality I found that with only a few hosts WebVirtMgr offers a simple and easy UI to create and manage Hypervisors and VM’s.
Outline of setting up WebVirtMgr
- Prepare CentOS 7.3 Server
- Prepare CentOS 7.3 Client
- Install and configure WebVirtMgr on Server
- Install and configure WebVirtMgr on each Client
- Test Connectivity between Client and Server
Server Setup
Prepare the CentOS 7 server
https://github.com/retspen/webvirtmgr/wiki/Install-WebVirtMgr
After a new CentOS 7.3 Server with security disabled
You may need to update current epel-releaseyum -y install http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-9.noarch.rpm
yum -y install git python-pip libvirt-python libxml2-python python-websockify supervisor nginx
yum -y install gcc python-devel
After running above command update pip and install numpypip install --upgrade pip
pip install numpy
clone webvirtmgr from github and install itgit clone git://github.com/retspen/webvirtmgr.git
cd webvirtmgr
pip install -r requirements.txt
View original post 265 more words