Question

I am using debian 7 with openstack havana all in one node,keystone work perfectly,glace also work ,but after installing nova when i try

 # nova image-list

it responds

ERROR: [Errno 111] Connection refused

i would really appreciate if someone can help me to find out the cause of this error .

Was it helpful?

Solution

Try,unsetting proxies

unset http_proxy 
unset https_proxy

OTHER TIPS

In my case I got this problem because I'd blindly gone thru the config steps of a Debian/Wheezy install of Havana. I accidentally set the rabbitmq user name to something besides guest... when I was using the default name of guest for rabbitmq.

My solution was to

cd /etc; grep -r rabbit . | grep WRONG_NAME

and then fix the bad rabbit_user entries by putting in the right name. Then I had to restart all the daemons.

I did this on my compute node and on my controller. Things got a lot better after that.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top