Ovirt: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Thomas (Diskussion | Beiträge) |
Thomas (Diskussion | Beiträge) |
||
| (10 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
| Zeile 1: | Zeile 1: | ||
=installation= | =installation= | ||
!we use centos 7.0 | !we use centos 7.0 | ||
| + | =Disable = | ||
| + | *systemctl disable NetworkManager.service | ||
| + | *systemctl disable firewalld.service | ||
| + | *reboot | ||
=Importing keys Automatically= | =Importing keys Automatically= | ||
| Zeile 10: | Zeile 14: | ||
=Optionally install the All-In-One plugin if you want to host VMs on your Engine Host= | =Optionally install the All-In-One plugin if you want to host VMs on your Engine Host= | ||
*sudo yum install -y ovirt-engine-setup-plugin-allinone | *sudo yum install -y ovirt-engine-setup-plugin-allinone | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
=Set up oVirt Engine.= | =Set up oVirt Engine.= | ||
*sudo engine-setup | *sudo engine-setup | ||
;Important for all-in-one | ;Important for all-in-one | ||
*Configure VDSM on this host? (Yes, No) [No]: Yes | *Configure VDSM on this host? (Yes, No) [No]: Yes | ||
| − | + | =Example= | |
| + | [[Datei:config-ovirt.jpg]] | ||
=install host= | =install host= | ||
| Zeile 26: | Zeile 26: | ||
=all in one= | =all in one= | ||
*http://www.hacktheory.org/index.php/projects/projects-by-eureka/ovirt-32-setup-all-required-bug-fixes/ | *http://www.hacktheory.org/index.php/projects/projects-by-eureka/ovirt-32-setup-all-required-bug-fixes/ | ||
| + | =virsh= | ||
| + | *[[virsh-ovirt]] | ||
| + | =net hacks= | ||
| + | ==dummy device== | ||
| + | */etc/modprobe.d/dummy.conf | ||
| + | alias dummy0 dummy | ||
| + | options dummy numdummies=1 | ||
| + | |||
| + | |||
| + | */etc/sysconfig/network-skripts/ifcfg-dummy0 | ||
| + | <pre> | ||
| + | DEVICE=dummy0 | ||
| + | BOOTPROTO=none | ||
| + | ONBOOT=yes | ||
| + | USERCTL=no | ||
| + | IPV6INIT=no | ||
| + | PEERDNS=yes | ||
| + | TYPE=Ethernet | ||
| + | NETMASK=255.255.255.0 | ||
| + | IPADDR=10.1.1.1 | ||
| + | ARP=yes | ||
| + | NM_CONTROLLED="no" | ||
| + | </pre> | ||
| + | |||
| + | =patch= | ||
| + | grep -ei.bak "s/dummy_/dummy/" /usr/lib/python2.7/site-packages/vdsm/config.py | ||
| + | =vdsmd restart= | ||
| + | *systemctl restart vdsmd | ||
| + | |||
| + | =weiterer wahnsinn= | ||
| + | *http://lists.ovirt.org/pipermail/users/2013-May/014390.html | ||
| + | *http://lists.ovirt.org/pipermail/users/2012-April/007385.html | ||
| + | |||
| + | =vdsdmd restart= | ||
| + | *systemctl restart vdsmd | ||
=example= | =example= | ||
*http://community.redhat.com/blog/2014/03/up-and-running-with-ovirt-3-4/ | *http://community.redhat.com/blog/2014/03/up-and-running-with-ovirt-3-4/ | ||
| + | =sieben schritte= | ||
| + | *http://www.datacenter-insider.de/specials/virtualisierungspraxis/articles/464532/ | ||
| + | =install= | ||
| + | *https://xrsa.net/2015/02/04/installing-ovirt-3-5-on-centos-7-hosted-engine/ | ||
Aktuelle Version vom 4. April 2015, 08:30 Uhr
installation
!we use centos 7.0
Disable
- systemctl disable NetworkManager.service
- systemctl disable firewalld.service
- reboot
Importing keys Automatically
Add the official oVirt repository
- yum localinstall http://resources.ovirt.org/pub/yum-repo/ovirt-release35.rpm
Install oVirt Engine.
- sudo yum install -y ovirt-engine
Optionally install the All-In-One plugin if you want to host VMs on your Engine Host
- sudo yum install -y ovirt-engine-setup-plugin-allinone
Set up oVirt Engine.
- sudo engine-setup
- Important for all-in-one
- Configure VDSM on this host? (Yes, No) [No]: Yes
Example
install host
all in one
virsh
net hacks
dummy device
- /etc/modprobe.d/dummy.conf
alias dummy0 dummy options dummy numdummies=1
- /etc/sysconfig/network-skripts/ifcfg-dummy0
DEVICE=dummy0 BOOTPROTO=none ONBOOT=yes USERCTL=no IPV6INIT=no PEERDNS=yes TYPE=Ethernet NETMASK=255.255.255.0 IPADDR=10.1.1.1 ARP=yes NM_CONTROLLED="no"
patch
grep -ei.bak "s/dummy_/dummy/" /usr/lib/python2.7/site-packages/vdsm/config.py
vdsmd restart
- systemctl restart vdsmd
weiterer wahnsinn
- http://lists.ovirt.org/pipermail/users/2013-May/014390.html
- http://lists.ovirt.org/pipermail/users/2012-April/007385.html
vdsdmd restart
- systemctl restart vdsmd
