openstack vm实例pxe无法启动

问题如下:

创建vm没有任何报错,打开控制台提示:

SeaBIOS (versio xxxxxxx)
Machine UUID xxxxxxxxxx
iPXE (http://ipxe.org) 00.03.0 C980 PCI2.10 PnP PMM

导致这个问题的原因在于centos7.3源中的qemu1.5版本低,更新一下qemu版本即可

[root@compute01 ~]# yum install -y centos-release-qemu-ev.noarch

[root@compute01 ~]# yum update -y 

查看更新后的版本为qemu2.6,之前是1.5

[root@compute01 ~]# virsh version
Compiled against library: libvirt 2.0.0
Using library: libvirt 2.0.0
Using API: QEMU 2.0.0
Running hypervisor: QEMU 2.6.0

创建虚拟机正常

原文地址:https://www.cnblogs.com/menkeyi/p/6689256.html