Why do I get "connection refused" when reaching OpenStack Dashboard
I just tried to install Openstack (grizzly) on Ubuntu 12.04 on a single node to try it out. Everything went perfectly until I tried to install Horizon, which, after 3 days of various attempts just doesn't want to work. I followed this tutorial from the beginning (except the object storage part).
It seems it is the apache and django configuration who would be faulty as I get some errors as soon as I try to connect to Horizon. I can get to the authentication page (127.0.0.1/horizon) and print my login and password (admin, or any other service user). But then I got this error :
http://paste.openstack.org/show/36310/
I can also find this on apache2 logs. When I tried to connect to OpenStack Block Storage service (cinder) I get:
#cinder list
ERROR: [Errno 111] Connection refused
So, in fact, the problem must be with cinder. From what I read in the tutorial, I don't use cinder but nova-volume. I have this conf in nova.conf :
volume_driver=nova.volume.driver.ISCIDriver
volume_group=nova-volumes
volume_name_template=volume-%s
isci_helper=tgtadm
I got this output from #cinder endpoints
This output from #keypoint service-list
This output from #keypoint endpoint-list
More details on my configuration:
- /etc/apache2/conf.d/openstack-dashboard.conf
- /usr/share/openstack-dashboard/settings.py
- /usr/share/openstack-dashboard/openstack_dashboard/settings.py
- /etc/openstack-dashboard/local_settings.py
So, do I absolutely have to use cinder instead of nova-volume to get Horizon working ?