virsh iface-bridge eth0 br0- If you had
NM_CONTROLLED=noin there, re-add it to both ifcfg files because virsh probably just removed it for you. - Turn off STP by adding
STP=offto theifcfg-br0file.
/etc/libvirt/qemu.conf:
vnc_listen = "0.0.0.0"/etc/libvirt/
TODO: Add info for remote access/etc/sysconfig/iptables:
-A INPUT -p tcp -m state --state NEW -m tcp --dport 5900:5950 -j ACCEPTRHEL Virtualization Administration Guide
- Create
/tmp/kvmpool.xml
<pool type="fs">
<name>kvmpool</name>
<source>
<device path="/dev/vg_ruby/kvmpool"/>
</source>
<target>
<path>/var/lib/libvirt/images</path>
</target>
</pool>lvcreate -A y -L 500G -n kvmpool vg_ruby
virsh pool-define /tmp/kvmpool.xml
virsh pool-autostart kvmpool
virsh pool-start kvmpoolLocalhost libvirt access requires socket permissions:
vim /etc/polkit-1/localauthority/50-local.d/50-se.tmtowtdi-libvirt-local-access.pkla:
[Allow foreman libvirt management permissions]
Identity=unix-user:foreman
Action=org.libvirt.unix.manage
ResultAny=yes
ResultInactive=yes
ResultActive=yesOther options include ssh
- Localhost:
qemu+unix:///system?socket=/var/run/libvirt/libvirt-sock - Remote:
qemu+tcp://<hostname>/systemorqemu+ssh://...
If you're using Firefox and your Foreman is using SSL you have to enable network.websocket.allowInsecureFromHTTPS. theforeman.org
An example issue I hit when using swedish keyboard on the client computer is that I cannot type the '/' character. Will try adding keymap to the guest XML config later.
keymap issue is unresolved... and totally annoying.