[Openstack] Glance and Keystone Folsom RC1 available

2012-09-14 Thread Thierry Carrez
Hello everyone, After Quantum and Horizon, it's now the Glance and Keystone projects which publish their first Folsom release candidates. The tarballs for the first release candidate for OpenStack Image service (Glance) and Identity (Keystone) are now available at:

Re: [Openstack] Glance and Keystone

2012-02-01 Thread Paras pradhan
Didn't work here is the o/p root@server3:~# glance -A 16afc976-4dfa-4175-a7ea-ec8446f636b3 details Failed to show details. Got error: Internal Server error: Traceback (most recent call last): File /usr/lib/python2.7/dist-packages/eventlet/wsgi.py, line 336, in handle_one_response result =

Re: [Openstack] Glance and Keystone

2012-02-01 Thread Jay Pipes
If you do: curl -v -H X-Auth-Token: 16afc976-4dfa-4175-a7ea-ec8446f636b3 GLANCE_API_HOST:GLANCE_API_PORT/v2/images What is returned? -jay On 02/01/2012 11:19 AM, Paras pradhan wrote: Didn't work here is the o/p root@server3:~# glance -A 16afc976-4dfa-4175-a7ea-ec8446f636b3 details Failed

Re: [Openstack] Glance and Keystone

2012-02-01 Thread Paras pradhan
Got this -- root@server3:/etc/nova# curl -v -H X-Auth-Token: 16afc976-4dfa-4175-a7ea-ec8446f636b3 192.168.122.14:9292/v2/images * About to connect() to 192.168.122.14 port 9292 (#0) * Trying 192.168.122.14... connected * Connected to 192.168.122.14 (192.168.122.14) port 9292 (#0) GET

Re: [Openstack] Glance and Keystone

2012-02-01 Thread Paras pradhan
np. here is it root@server3:/etc/nova# curl -v -H X-Auth-Token: 16afc976-4dfa-4175-a7ea-ec8446f636b3 192.168.122.14:9292/v1/images * About to connect() to 192.168.122.14 port 9292 (#0) * Trying 192.168.122.14... connected * Connected to 192.168.122.14 (192.168.122.14) port 9292 (#0) GET

Re: [Openstack] Glance and Keystone

2012-02-01 Thread Paras pradhan
I think i pasted the wrong one . Here is it again. -- root@server3:/etc/glance# curl -v -H X-Auth-Token: 16afc976-4dfa-4175-a7ea-ec8446f636b3 192.168.122.14:9292/v1/images * About to connect() to 192.168.122.14 port 9292 (#0) * Trying 192.168.122.14... connected * Connected to 192.168.122.14

Re: [Openstack] Glance and Keystone

2012-02-01 Thread Jay Pipes
Sorry about that... should have been v1 not v2 :) -jay On 02/01/2012 11:29 AM, Paras pradhan wrote: Got this -- root@server3:/etc/nova# curl -v -H X-Auth-Token: 16afc976-4dfa-4175-a7ea-ec8446f636b3 192.168.122.14:9292/v2/images * About to connect() to 192.168.122.14 port 9292 (#0) * Trying

Re: [Openstack] Glance and Keystone

2012-02-01 Thread Kiall Mac Innes
I think Jay gave you the wrong command to try, he probably meant: (notice the v2 changed to v1.1) curl -v -H X-Auth-Token: 16afc976-4dfa-4175-a7ea-ec8446f636b3 GLANCE_API_HOST:GLANCE_API_PORT/v1.1/images Thanks, Kiall On Wed, Feb 1, 2012 at 4:29 PM, Paras pradhan pradhanpa...@gmail.comwrote:

Re: [Openstack] Glance and Keystone

2012-02-01 Thread Paras pradhan
I think i found the problem Added/Edited the following to glance-api.conf pipeline = authtoken keystone_shim registryapp and pipeline = versionnegotiation authtoken keystone_shim apiv1app to glance-registry.conf I am not geeting any errors now. Paras. On Wed, Feb 1, 2012 at 11:06 AM,

Re: [Openstack] Glance and Keystone

2012-01-31 Thread Jay Pipes
On 01/31/2012 06:00 PM, Paras pradhan wrote: Hi, How do I check if glance is working with keystone? This is what I've done so far and getting errors # glance -A details 16afc976-4dfa-4175-a7ea-ec8446f636b3 Needs to be: glance -A 16afc976-4dfa-4175-a7ea-ec8446f636b3 details Cheers!