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.
WebVirtMgr is licensed under the Apache Licence, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html).
Run:
$ su -c 'yum -y install git Django python-virtinst httpd mod_python mod_wsgi'
Run:
$ sudo apt-get install git python-django virtinst apache2 libapache2-mod-python libapache2-mod-wsgi
Run:
$ su -c 'rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm'
$ su -c 'yum -y install git python-virtinst httpd mod_python mod_wsgi Django'
Run:
$ git clone git://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: username@domain.local (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:
http://x.x.x.x:8000 (x.x.x.x - your IP address server)
###1. Virtual Host
Add file webvirtmgr.conf in conf.d directory (Ubuntu: "/etc/apache2/conf.d" or RedHat,Fedora,CentOS: "/etc/httpd/conf.d"):
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
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 ${APACHE_LOG_DIR}/webvirtmgr-error_log
CustomLog ${APACHE_LOG_DIR}/webvirtmgr-access_log common
</VirtualHost>
Copy the folder and change owner (Ubuntu: "www-data:www-data", Fedora, Redhat, CentOS: "apache:apache"):
$ sudo cp -r webvirtmgr /var/www/
$ sudo chown -R www-data:www-data /var/www/webvirtmgr/
Reload apache:
# service apache2 reload
###2. WSGI
Add file webvirtmgr.conf in conf.d directory (Ubuntu: "/etc/apache2/conf.d" or RedHat,Fedora,CentOS: "/etc/httpd/conf.d"):
WSGIScriptAlias / /var/www/webvirtmgr/wsgi/django.wsgi
Alias /static /var/www/webvirtmgr/polls/static/
<Directory /var/www/webvirtmgr/wsgi>
Order allow,deny
Allow from all
</Directory>
$ cd /path to/webvirtmgr
$ git pull
Support: support@webvirtmgr.net