backbone.ws

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
gnu_linux:libvirt:webvirtmgr [2014/12/08 04:18] kolangnu_linux:libvirt:webvirtmgr [2023/08/08 14:55] (current) – [WebVirtMgr Installation] kolan
Line 1: Line 1:
-====== Installation ====== +====== Libvirt Installation ====== 
-<code bash | Installation steps>+ 
 +<code bash | Libvirt Installation steps> 
 +# Obsolete/Improper commands 
 +# ovs-vsctl -v add-br virbr0 
 +# ovs-vsctl add-port virbr0 lan0 
 +# ovs-vsctl set-controller virbr0 ptcp: 
 +# ovs-vsctl set bridge virbr0 stp_enable=true 
 +</code> 
 + 
 +====== WebVirtMgr Installation ====== 
 +<code bash | WebVirtMgr Installation steps>
 su wvm su wvm
-virtualenv --no-site-packages ~/webvirtmgr-venv+virtualenv --system-site-packages ~/webvirtmgr-venv
 source ~/webvirtmgr-venv/bin/activate source ~/webvirtmgr-venv/bin/activate
 git clone git://github.com/retspen/webvirtmgr.git git clone git://github.com/retspen/webvirtmgr.git
 cd webvirtmgr cd webvirtmgr
-pip install -r requirements.txt +pip install -r conf/requirements.txt 
-# NO NO NO python setup.py install || python setup.py install+cp ~/webvirtmgr/webvirtmgr/local/local_settings.py.example ~/webvirtmgr/webvirtmgr/local/local_settings.py
 ./manage.py syncdb ./manage.py syncdb
-pip install libvirt-python +./manage.py collectstatic 
-# NO NO NO pip install --allow-external libxml2-python +python ./manage.py runserver 127.0.0.1:8000 # run WebVirtManager server on 8000 port 
-python ./manage.py runserver 127.0.0.1:8000+console/webvirtmgr-nonvc                    # run noVNC server on 6080 port
 </code> </code>