vif_plugging_is_fatal = False 在controller0节点: 进入/etc/neutron/neutron.conf配置文件,找到nova_url配置,发现该配置本就为http://127.0.0.1:8774/v2,不必再次修改。 进入到/etc/nova/nova.conf配置文件中, vif_plugging_timeout = 10 vif_plugging_is_fatal = False 然后重启Nova和Neutron相关服务 Control...
修改/etc/nova/nova.conf文件 #Fail instance boot if vif plugging fails vif_plugging_is_fatal = False #Number of seconds to wait for neutron vif #plugging events to arrive before continuing or failing #(see vif_plugging_is_fatal). If this is set to zero and #vif_plugging_is_fatal is Fa...
#修改/etc/nova/nova.conf文件 #vif_plugging_is_fatal=truevif_plugging_is_fatal=false #关闭#vif_plugging_timeout=300vif_plugging_timeout=0 #超时时间没有 修改完后重启nova服务 systemctl restart openstack-nova* 创建实例错误 __EOF__
#Fail instance boot if vif plugging fails vif_plugging_is_fatal = False #Number of seconds to wait for neutron vif #plugging events to arrive before continuing or failing #(see vif_plugging_is_fatal). If this is set to zero and #vif_plugging_is_fatal is False, events should not be ...
原因是:创建时超过300秒还没有创建完成,则判定失败 #修改/etc/nova/nova.conf文件 代码语言:javascript 复制 #vif_plugging_is_fatal=truevif_plugging_is_fatal=false#关闭 #vif_plugging_timeout=300vif_plugging_timeout=0#超时时间没有 修改完后重启nova服务 ...
解决方法: 在nova的计算节点修改 /etc/nova/nova.conf # Determine if instance should boot or fail on VIF plugging timeout. For more # information, refer to the documentation. (boolean value) vif_plugging_is_fatal=false # Timeout for Neutron VIF plugging event message arrival. For more informat...
vif_plugging_is_fatal = False vif_plugging_timeout = 0 然后执行service nova-compute restart重启nova-compute。 重新创建实例,即可发现实例状态可以变成ACTIVE,但又出现了新的问题。 解决端口状态为BUILD的问题 使用openstack port list查看实例的端口信息,发现此时子网已经给实例分配好了正确网段的IP,而端口状态(...
Godday和CERN同样遇到了相同的问题,解决办法为设置vif_plugging_is_fatal为false,表示忽略Neutron消息等待超时问题,继续执行后续步骤。另外需要设置等待的超时时间vif_plugging_timeout,因为我们已经确定肯定会超时,因此设置一个较短的时间,避免创建虚拟机等待过长,Godday设置为5秒,可以作为参考。
vif_plugging_is_fatal: false vif_plugging_timeout: 0 然后重启各服务 sudo service nova-api restart &&\ sudo service neutron-server restart &&\ sudo service neutron-linuxbridge-agent restart &&\ sudo service neutron-dhcp-agent restart &&\ sudo service neutron-metadata-agent restart 最后...
vif_plugging_is_fatal=Truevif_plugging_timeout=300# add follows to the end : Neutron auth info# the value of metadata_proxy_shared_secret is the same with the one in metadata_agent.ini[neutron]auth_url=http://controller:5000auth_type=password ...