Re: [Openstack-operators] docker-juno installation failed

2015-07-09 Thread Arun Adiththan
Hello Hamza, I referred to the installation steps in this blog post: https://sreeninet.wordpress.com/2015/06/14/openstack-and-docker-part-1/ (I just replaced kilo with juno in the commands). I had no issues but for the "concurrency module" error you encountered. Thanks, Arun Adiththan ​ On Th

Re: [Openstack-operators] docker-juno installation failed

2015-07-09 Thread Achi Hamza
Hi Arun Adiththan and Paul Czarkowski, Thank you both for your response. Arun@ your suggest did actually solve my problem, however i encountered another issue which is, nova is UP and running with DISABLE status! :) Disabled *Reason: AUTO: Failed to connect to libvirt* nova compute service did

Re: [Openstack-operators] docker-juno installation failed

2015-07-09 Thread Arun Adiththan
Hello Hamza, I faced the same issue with Devstack Juno. The error indicates that *concurrency *module isn't installed under */usr/lib/python-*/dist-packages/oslo*. You can fix the problem as follows: 1. Create a directory called concurrency inside */usr/lib/python-*/dist-packages/oslo * 2. Copy t

Re: [Openstack-operators] docker-juno installation failed

2015-07-09 Thread Paul Czarkowski
It looks like the pip dependencies didn't get installed. I often have better luck with `pip install .` inside the nova-docker directory.if that doesn't work you can try doing `pip install -r requirements.txt` ... of course it could also be that the package isn't actually listed in requirem

[Openstack-operators] docker-juno installation failed

2015-07-09 Thread Achi Hamza
Hi guys, I've tried to installed Docker with juno release on Ubuntu but all the attempts failed. here how i installed the nova-docker driver: *sudo apt-get install python-pip* *sudo apt-get install python-dev* *git clone https://github.com/stackforge/nova-docker