Error in devstack script. nova-api did not start?

风流意气都作罢 提交于 2019-12-25 05:32:21

问题


I have installed openstack on Ubuntu 12.04 single node using devstack. Now, it was running smoothly till yesterday. When i ran ./stack.sh today, it showed an error

./stack.sh:672 nova-api did not start

I have python-paste and python-pastedeploy installed. How to fix this error?


回答1:


check out for errors in nova api screen run this command to open screens

screen -x stack

open n-api screen ususally ( Ctrl + A + 5 ). Check for errors and then restart Nova API with this command.

cd /opt/stack/nova && /usr/local/bin/nova-api & echo $! >/opt/stack/status/stack/n-api.pid; fg || echo "n-api failed to start" | tee "/opt/stack/status/stack/n-api.failure"



回答2:


General rule of thumb for devstack.

Always unstack.sh before re-running stack.sh or pulling from repositories and re-running stack.sh



来源:https://stackoverflow.com/questions/17079919/error-in-devstack-script-nova-api-did-not-start

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!