%BOOK_ENTITIES; ]>
Install and Configure libvirt &PRODUCT; uses libvirt for managing virtual machines. Therefor it is vital that libvirt is configured correctly. Install libvirt On RHEL or CentOS: # yum install libvirt On Ubuntu: # apt-get install libvirt-bin In order to have live migration working libvirt has to listen for unsecured TCP connections. # vi /etc/libvirt/libvirtd.conf Set the following paramaters: listen_tls = 0 listen_tcp = 1 tcp_port = 16059 auth_tcp none In order to have libvirt listening on TCP we have to change the execution arguments. On RHEL or CentOS: # vi /etc/sysconfig/libvirtd Uncomment the following line: #LIBVIRTD_ARGS="--listen" On Ubuntu: # vi /etc/init/libvirt-bin.conf Change the following line: exec /usr/sbin/libvirtd -d to (just add -l) exec /usr/sbin/libvirtd -d -l