nova boot --flavor m1.tiny --image cirros --nic net-id=a0bde269-d320-4853-9045-e2e90ba14031 \
> --security-group default --key-name mykey public-instance
ERROR (ClientException): Unexpected API Error. Please report this athttp://bugs.launchpad.net/nova/ and attach the Nova API log if possible.
<class 'keystoneclient.exceptions.BadRequest'> (HTTP 500) (Request-ID: req-c0467d40-2fff-42b4-915a-d5ff3f1a7ff0)
nova boot --flavor m1.tiny --image cirros --nic net-id=9d4daabf-ef36-4949-90e5-9904851d4a4a \
--security-group default public-instance
2016-01-14 11:00:16.143 11528 ERROR nova.api.
在computer节点中的nova.conf缺少关于neutron的配置,添加以后配置即可解决
The document is missing this block in nova.conf
[neutron]
url = http://
auth_url = http://
auth_plugin = password
project_domain_id = default
user_domain_id = default
region_name = RegionOne
project_name = service
username = neutron
password = neutron_pass
Adding this fixed this issue for my Kilo install.