1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 03:54:15 +00:00
No description
Find a file
Anatoliy Guskov 064e88dd1d Merge pull request #10 from hico-horiuchi/mv_requirements
Move requirements.txt to match README
2015-05-21 18:53:01 +03:00
accounts Fixed some bugs 2015-05-13 09:42:20 +03:00
computes Changed icon 2015-05-13 10:39:50 +03:00
conf Move requirements.txt to match README 2015-05-21 23:44:14 +09:00
console Fixed some bugs 2015-05-13 09:42:20 +03:00
create Fixed #3 2015-05-15 20:54:55 +03:00
dev Merge branch 'guestfish' 2015-05-21 15:08:21 +03:00
instances Rebuilt bootstrap libvirt 2015-05-21 11:52:10 +03:00
interfaces Fixed create net alias 2015-04-21 15:58:56 +03:00
logs Fixed #7 2015-05-18 22:00:30 +03:00
networks Fixed create net alias 2015-04-21 15:58:56 +03:00
secrets Fixed pep8 2015-04-06 10:51:50 +03:00
static Changed font-awsome 2015-05-13 10:32:10 +03:00
storages Fixed url hash 2015-04-21 15:40:18 +03:00
templates User can change root password in instance 2015-05-20 16:44:30 +03:00
vrtManager Fixed bad gateway 2015-04-30 16:09:13 +03:00
webvirtcloud Fixed intances's CPU graph 2015-04-21 17:25:26 +03:00
.gitignore DB changes 2015-04-02 14:24:28 +03:00
.travis.yml Cleaned some places 2015-04-21 17:13:53 +03:00
gunicorn.conf.py Cleaned some places 2015-04-21 17:13:53 +03:00
manage.py Initial commit 2015-02-27 10:53:51 +02:00
README.md Merge branch 'guestfish' 2015-05-21 15:08:21 +03:00
Vagrantfile Added vagrant to libvirtd group 2015-04-23 22:07:02 +03:00

WebVirtCloud Beta

Features

  • User can change root password (Test only Ubuntu)

Description

WebVirtMgr is a libvirt-based Web interface for managing virtual machines. It can delegate Virtual Machine's to users. A noVNC viewer presents a full graphical console to the guest domain. KVM is currently the only hypervisor supported.

Install WebVirtCloud panel

sudo apt-get -y install git python-pip python-dev python-libvirt python-libxml2 nginx supervisor
git clone https://github.com/retspen/webvirtcloud
cd webvirtcloud
sudo pip install -r conf/requirements.txt
python manage.py migrate
sudo cp conf/supervisor/webvirtcloud.conf /etc/supervisor/conf.d
sudo cp conf/nginx/webvirtcloud.conf /etc/nginx/conf.d
cd ..
sudo mv webvirtcloud /var/www/
sudo chown -R www-data:www-data /var/www/webvirtcloud

Restart services for running WebVirtCloud:

sudo service nginx restart
sudo service supervisor restart

Setup libvirt and KVM on server

wget -O - https://clck.ru/9V9fH | sudo sh

Default credentials

login: admin

password: admin

How To Update

$ git pull
$ python manage.py migrate
$ sudo service supervisor restart