OpenStack nova API start error
Could not bind to 0.0.0.0 address all ready in use
OpenStack-nova-api doesn't start, this error is from the services boot priority in many times.
This Error happens because openstack-nova-api and openstack-nova-metadata-api use the same ports. You can start nova-api stopping metadata-api service and starting nova-api before, then start again metadata-api service.
This should fix your issue. After this you can set up boot order to this processes
Example:
If openstack-nova-metadata-api got an order boot of S90 openstack-nova-metadata-api, you should use update-rc to set nova-api start before nova-metadata-api
This will set the priority of nova-api with the priority of nova-metadata-api, wich means that nova-api will run before metadata-api.
Last updated