|
|
|
1. Install Centos 7, bring it up to date `yum update`
|
|
|
|
2. Define two network interfaces ethctrl and ethdata (see wiki how to change names)
|
|
|
|
3. Stop and disable NetworkManager, restart network
|
|
|
|
```
|
|
|
|
systemctl stop NetworkManager
|
|
|
|
systemctl disable NetworkManager
|
|
|
|
systemctl restart network
|
|
|
|
```
|
|
|
|
4. Setup SSH key-based access for user omi and user root!
|
|
|
|
5. On omistack-beta:
|
|
|
|
1. add new host to /etc/hosts
|
|
|
|
2. add new host to CONFIG_COMPUTE_HOSTS in /root/packstack/answer-file.txt
|
|
|
|
make sure to have all other hosts in EXCLUDE_SERVERS
|
|
|
|
3. run packstack `packstack --answer-file=answer-file.txt`
|
|
|
|
|
|
|
|
# Troubleshooting
|
|
|
|
|
|
|
|
## Live Migration not working
|
|
|
|
Error message: "ERROR nova.virt.libvirt.driver [...] Live Migration failure: internal error: unable to execute QEMU command 'migrate': this feature or command is not currently supported"
|
|
|
|
|
|
|
|
Solution:
|
|
|
|
|
|
|
|
Install qemu* from oVirt repositories:
|
|
|
|
1. yum install http://resources.ovirt.org/pub/yum-repo/ovirt-release35.rpm
|
|
|
|
2. yum update
|
|
|
|
|
|
|
|
The yum update will replace the packages qemu-img qemu-kvm qemu-kvm-common with the newer versions qemu-kvm-common-ev qemu-img-ev qemu-kvm-ev
|
|
|
|
|
|
|
|
\ No newline at end of file |