WebVirtMgr is a libvirt-based Web interface for managing virtual machines. It allows you to create and configure new domains, and adjust a domain's resource allocation. A VNC viewer over a SSH tunnel presents a full graphical console to the guest domain. KVM is currently the only hypervisor supported.
The application logic is written in Python & Django. The LIBVIRT Python bindings are used to interacting with the underlying hypervisor.
Run:
$ su -c 'yum -y install git Django python-virtinst httpd mod_python'
Run:
$ sudo apt-get install git python-django virtinst apache2 libapache2-mod-python
Run:
$ su -c 'rpm -Uvh https://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-7.noarch.rpm'
$ su -c 'yum -y install git python-virtinst httpd mod_python Django'
Run:
$ git clone git:https://github.com/retspen/webvirtmgr.git
$ cd webvirtmgr
$ ./manage.py syncdb
Enter the user information:
You just installed Django's auth system, which means you don't have any superusers defined.
Would you like to create one now? (yes/no): yes (Put: yes)
Username (Leave blank to use 'admin'): admin (Put: your username or login)
E-mail address: [email protected] (Put: your email)
Password: xxxxxx (Put: your password)
Password (again): xxxxxx (Put: confirm password)
Superuser created successfully.
Run app for test:
$ ./manage.py runserver x.x.x.x:8000 (x.x.x.x - your IP address server)
Enter in your browser:
https://x.x.x.x:8000 (x.x.x.x - your IP address server)
Add virtual host in apache:
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName dummy-host.example.com
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE webvirtmgr.settings
PythonOption django.root /webvirtmgr
PythonDebug On
PythonPath "['/var/www'] + sys.path"
ErrorLog logs/webvirtmgr-error_log
CustomLog logs/webvirtmgr-access_log common
</VirtualHost>