[Openstack] Grizzly- Add NFS server to store all Instances and templates

2013-06-20 Thread Jake G.
Hi all, I just finshed installing Grizzly on one node (CentOS 6.4) via the RDO method.  I would like to add a primary NFS server to store all Objects, Instances and templates. How can I do this?  Documentation links would be very helpful. Thanks! Jake_

Re: [Openstack] Quantum is changing its name to...

2013-06-20 Thread Gary Kotton
On 06/19/2013 07:13 PM, Mark McClain wrote: All- The OpenStack Networking team is happy to announce that the Quantum project will be changing its name to Neutron. You'll soon see Neutron in lots of places as we work to implement the name change within OpenStack. I hope that Nickelodeon does

[Openstack] Grizzly- Configure networking on a single node installation with 3 NICs

2013-06-20 Thread Jake G.
Hi all, I just finished installing Grizzly on one node (CentOS 6.4) via the RDO method.  I have 3 NICs on the single node installation and would like to configure Openstack networking in the following way: NIC1 - Management & Storage Network 192.168.1.0/32 NIC2 - Public Network 45.65.110.0/32 

[Openstack] Download a specific image from Glance to local hard drive

2013-06-20 Thread Narayanan, Krishnaprasad
Hallo All, I am using OpenStack ESSEX and want to download an image from glance to my local hard drive. Can I get to know any commands in glance (in ESSEX) using which I can perform this operation? Thanks Krishnaprasad ___ Mailing list: https://launc

Re: [Openstack] Download a specific image from Glance to local hard drive

2013-06-20 Thread Michael Still
On Thu, Jun 20, 2013 at 7:33 PM, Narayanan, Krishnaprasad wrote: > Hallo All, > > I am using OpenStack ESSEX and want to download an image from glance to my > local hard drive. Can I get to know any commands in glance (in ESSEX) using > which I can perform this operation? Take a look at the image

[Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread Jobin Raju George
Hey, all! I installed ceilometer on Ubuntu 12.04 using the manual installation guide given here. However, I am having trouble getting data from it. When I do a ceilometer meter-list, all I get is a table with 4 rows with the name

Re: [Openstack] Download a specific image from Glance to local hard drive

2013-06-20 Thread Narayanan, Krishnaprasad
Hi Michael, Is this command valid in OpenStack ESSEX? Thanks Krishnaprasad -Original Message- From: mikalst...@gmail.com [mailto:mikalst...@gmail.com] On Behalf Of Michael Still Sent: Donnerstag, 20. Juni 2013 11:46 To: Narayanan, Krishnaprasad Cc: openstack@lists.launchpad.net Subject:

[Openstack] Swift cleaning tenant after deletion on Keystone

2013-06-20 Thread Heiko Krämer
Heyho guys, I've a short question because I can't find anything in the docs. Will Swift cleanup himself if I delete a tenant on Keystone ? Or do I need to ensure that all files and all buckets/containers are deleted on Swift before the tenant will be deleted on Keystone? Greetings and thx Heiko

Re: [Openstack] Download a specific image from Glance to local hard drive

2013-06-20 Thread Michael Still
I'm not sure. Essex is very old now. Try running "glance help" and see what happens? Michael On Thu, Jun 20, 2013 at 7:49 PM, Narayanan, Krishnaprasad wrote: > Hi Michael, > > Is this command valid in OpenStack ESSEX? > > Thanks > Krishnaprasad > > -Original Message- > From: mikalst...@g

Re: [Openstack] Swift cleaning tenant after deletion on Keystone

2013-06-20 Thread Kuo Hugo
Hi Heiko, All objects won't be deleted if the tenant been deleted in Keystone. Hugo +Hugo Kuo+ h...@swiftstack.com tonyt...@gmail.com +886 935004793 2013/6/20 Heiko Krämer > Heyho guys, > > I've a short question because I can't find anything in the docs. > > Will Swift cleanup himself if I d

Re: [Openstack] Swift cleaning tenant after deletion on Keystone

2013-06-20 Thread Heiko Krämer
Hey Hugo, ok, thx for your quick answer! Greetings Heiko On 20.06.2013 11:56, Kuo Hugo wrote: > Hi Heiko, > > All objects won't be deleted if the tenant been deleted in Keystone. > > Hugo > > +Hugo Kuo+ > h...@swiftstack.com > tonyt...@gmail.com >

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread claudio marques
Hi Jobin I think that your Curl command is not right. Look into this page for more info about meters from ceilometer. http://docs.openstack.org/developer/ceilometer/webapi/v2.html#ceilometer.api.controllers.v2.Statistics.max Cheers Date: Thu, 20 Jun 2013 15:19:44 +0530 From: jobin...@gmail.com To

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread Jobin Raju George
Hey, Claudio! The command I executed is the second command in the page that you gave(which is also the one I am referring to). Can you please pin-point what is the mistake in the command or counsel what is the right one to get nova-spe

[Openstack] Ceilometer problem: virDomainLookupByName must not be NULL

2013-06-20 Thread Juha Tynninen
Hello, I get an error "libvir: error : name in virDomainLookupByName must not be NULL" when trying to collect nova compute counters for VMs: Problem seems to occur inside ceilometer/compute/pollsters.py's _instance_name() method where OS-EXT-SRV-ATTR:instance_name can't be retrieved: def _insta

Re: [Openstack] Ceilometer problem: virDomainLookupByName must not be NULL

2013-06-20 Thread Jobin Raju George
I had this exact problem yesterday which, when I restarted the server, seems to have been resolved(I can't see the ERROR message again logged after restarting). You can see the conversation I had about this here. See the

Re: [Openstack] Download a specific image from Glance to local hard drive

2013-06-20 Thread Sylvain Bauza
Hi, While I was working on Essex, I was simply looking at the image UUID and copying it from /var/lib/glance/images, that's it. I was not aware of glance image-download, which is great (same command for all Glance backends). -Sylvain Le 20/06/2013 11:53, Michael Still a écrit : I'm not su

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread claudio marques
Hi Well, i am also trying to decode all the meters that ceilometer can return, and how to do most of the queries, but, to query some specific data, what I am doing is:Firs get the resource id number and then query using parameters in the curl command. This is what I already tested:Get the resour

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread Jobin Raju George
Thanks Claudio for your detailed explanation, but the query returns me an empty list: [] Is something wrong with my nova-* or ceilometer-*? On Thu, Jun 20, 2013 at 4:53 PM, claudio marques wrote: > Hi > > Well, i am also trying to decode all the meters that ceilometer can > return, and how to do

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread Brent Roskos
Jobin, Please ensure that the token you are using was obtained with a user having the admin role. Regards, Brent On Thu, Jun 20, 2013 at 7:29 AM, Jobin Raju George wrote: > Thanks Claudio for your detailed explanation, but the query returns me an > empty list: [] Is something wrong with my nov

Re: [Openstack] Download a specific image from Glance to local hard drive

2013-06-20 Thread Narayanan, Krishnaprasad
Hi, If I get it correctly, the folder /var/lib/glance/images has only the UUID inside it. Where will I able to see the complete image (.img or .tar.gz)? Thanks Krishnaprasad -Original Message- From: Sylvain Bauza [mailto:sylvain.ba...@digimind.com] Sent: Donnerstag, 20. Juni 2013 12:53

Re: [Openstack] Swift cleaning tenant after deletion on Keystone

2013-06-20 Thread Brent Roskos
The account-reaper generally takes care of this. Have you seen this? http://docs.openstack.org/developer/swift/overview_reaper.html Regards, Brent On Thu, Jun 20, 2013 at 6:06 AM, Heiko Krämer wrote: > Hey Hugo, > > ok, thx for your quick answer! > > Greetings > Heiko > > > On 20.06.2013 1

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread Jobin Raju George
Hey, Brent! Yes, I am using admin as the user for querying and keystone user-role-listhas admin as one of its roles. On Thu, Jun 20, 2013 at 5:16 PM, Brent Roskos wrote: > Jobin, > > Please ensure that the token you are using was obtained with a user having > the admin role. > > Regards, > Bren

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread Brent Roskos
Ok - good, sometimes that trips folks up. I think most of the instance specific data, like CPU is accumulated by the ceilometer-agent-compute is this running properly on your compute node(s)? Anything interesting in the logs for that service on the compute node(s)? Brent On Thu, Jun 20, 2013

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread claudio marques
Hi Try to see if your daemons (api, collector, central agent, compute agent) are working without having issues. (see logs)!Have you configured your ceilometer.conf file or is the default one? Are shore that you are filing your data base? Cheers Claudio Marques claudio@onesource.pthttp://www.one

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread Jobin Raju George
Nothing special since I restarted my server this morning. Yesterday I had an ERROR message which said it had a virDomainLookupByName error which must not be NULL. I restarted the machine after which there have not been any errors, thankfully. I raised a question regarding this on ask.openstack.org

Re: [Openstack] Issues with openvswitch agent on Quantum/network node

2013-06-20 Thread Sreerekha Shenoy (sresheno)
Hi, What are the good to know tools and networking concepts for me to be able to debug connectivity issues inside Openstack VLAN mode of OVS? Thanks, Best Regards, Rekha From: Sreerekha Shenoy (sresheno) Sent: Friday, June 14, 2013 2:23 PM To: openstack@lists.launchpad.net Subject: Issues with o

Re: [Openstack] Download a specific image from Glance to local hard drive

2013-06-20 Thread Balamurugan V G
Those are your complete/actual image files. They are named by the UUIDs they use. You can copy these and rename to appropriate name with the suitable extension, .img or .qcow2 etc depending on what format they actually are. Regards, Balu On Thu, Jun 20, 2013 at 5:17 PM, Narayanan, Krishnaprasad

Re: [Openstack] Issues with openvswitch agent on Quantum/network node

2013-06-20 Thread Sreerekha Shenoy (sresheno)
Hi, It's been a week since we are stuck in getting this setup working Any pointers on tools / document to move further would be really appreciated. (currently we are lagging in getting our hands onto tools that can help tracing the packets inside OVS to and from VMs) Thanks, Best Regards, Re

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread claudio marques
Have you have single node, devstack or multi-node openstack architecture ? claudio@onesource.pthttp://www.onesource.pt/Date: Thu, 20 Jun 2013 18:35:49 +0530 From: jobin...@gmail.com To: clau...@onesource.pt CC: openstack@lists.launchpad.net Subject: Re: [Openstack] How to query ceilometer to get

Re: [Openstack] Issues with openvswitch agent on Quantum/network node

2013-06-20 Thread Balamurugan V G
Run a ping in your VM to its network gateway and do the following: root@openstack-network:~# quantum router-list +--+--++ | id | name |

Re: [Openstack] Download a specific image from Glance to local hard drive

2013-06-20 Thread Narayanan, Krishnaprasad
Hi Balu, Thanks for the explanation. Cheers, Krishnaprasad -Original Message- From: Balamurugan V G [mailto:balamuruga...@gmail.com] Sent: Donnerstag, 20. Juni 2013 15:08 To: Narayanan, Krishnaprasad Cc: Sylvain Bauza; openstack@lists.launchpad.net Subject: Re: [Openstack] Download a s

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread Jobin Raju George
It is a single node architecture, installed on Ubuntu 12.04 which is a Virtual Machine. I installed openstack using the manual instructions, not using devstack. I haven't installed quantum, since I don't need networking for the moment. And yes, I see that mongodb has a database ceilometer (size:203

Re: [Openstack] Issues with openvswitch agent on Quantum/network node

2013-06-20 Thread Sreerekha Shenoy (sresheno)
Thanks much Balu. For me currently even the GRE tunnels are amiss from the br-tun. So would just add-port be ok to add them back? Do you mind sharing the guide that you may have followed to setup your multi node Openstack setup? (is it using VLAN mode?) Thanks, Best Regards, Rekha -Origin

[Openstack] Share Storage Statistics

2013-06-20 Thread Ray Sun
This is happend when I use a shared storage for two compute nodes. My purpose is to know how much space I used for my VM root storage and how much I can still use. Unfortunately, when I use nova hypervisor-stats, it returns me the total of two local hard disks. For example, We have compute-node1 w

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread claudio marques
Okay. You don't have your rabbit configuration on your ceilometer.conf file. rabbit_host=localhostrabbit_port=5672rabbit_userid=guestrabbit_password=guestrabbit_retry_backoff=2rabbit_max_retries=0rabbit_use_ssl=False See if this helps claudio@onesource.pthttp://www.onesource.pt/ Date: Thu, 20 Jun 2

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread Jobin Raju George
The logs presently don't have ERROR's or WARNING's, so I presume they are running well and as for the config file, I have customized it a bit. Please have a look at it here . Thank you so much for your patience! :) On Thu, Jun 20, 2013 at 6:17 PM, claudio marq

Re: [Openstack] Issues with openvswitch agent on Quantum/network node

2013-06-20 Thread Maciej Gałkiewicz
On 20 June 2013 15:06, Sreerekha Shenoy (sresheno) wrote: > It’s been a week since we are stuck in getting this setup working > > Any pointers on *tools / document* to move further would be really > appreciated. > > ** ** > > (currently we are lagging in * getting our hands onto tools that

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread Jobin Raju George
Hey, Claudio! That was a nice catch! But I don't know why I ceilometer continues to behave the same way. I have posted the query and the output for your reference here . I am indebted for your patience! :-) On Thu, Jun 20, 2013 at 7:06 PM, claudio marques wr

[Openstack] [Murano] Release 0.1 announcement

2013-06-20 Thread Georgy Okrokvertskhov
Hi Community, The first release of Murano - Windows DataCenter as a Service implementation for OpenStack is published. A distribution package is available on Launchpad. From the functionality standpoint it has all the features targeted for 0.1 version. The key features are: - Active Direc

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread claudio marques
Does this query returns anything? curl -X GET -H 'X-Auth-Token:' "http://localhost:8777/v2/meters ===Just a comment:I notice that you have something wrong to. kvm requires that your CPU supports hardware-assisted virtualization (HVM) such as Intel VT-x or AMD-V. Because you are

[Openstack] [keystone] How to validate token without admin privileges

2013-06-20 Thread Janus Godard
Hi, I'm new to OpenStack. I'm looking at deploying two 3rd party services along OpenStack and would like to use Keystone for they authentication mechanism. Service A will authenticate and get a token from keystone and use it for REST requests to service B. Those two services don't use WSGI, just t

Re: [Openstack] [keystone] How to validate token without admin privileges

2013-06-20 Thread Haitao Jiang
Janus I think you can use curl and Keystone API to validate your token: curl -s -H "X-Auth-Token: " http://:5000/v2.0 | python -mjson.tool I think you can also validate the token against a tenant by using belongsTo. Maybe there are better ways. Best Haitao On Thu, Jun 20, 2013 at 12:36 PM, J

Re: [Openstack] [keystone] How to validate token without admin privileges

2013-06-20 Thread Ravi Chunduru
AFAIK, that is right we need admin privileges to check validity. Other thing which is surprising, if a service creates a token.. it requires admin privileges to delete that token. I would not expect all services to be aware of admin credentials. Thanks, -Ravi. On Thu, Jun 20, 2013 at 12:36 PM, J

Re: [Openstack] [keystone] How to validate token without admin privileges

2013-06-20 Thread Janus Godard
Thanks Ravi and Haitao. The only workaround I found is to create a new token from the one I want to validate with: curl -X POST -d '{ "auth":{ "token":{ "id":"non-admin-token" }, "tenantName":"testproject" }}' -H "Content-Type:application/json" -H "Accept: application/json" http://localhost:5000/

Re: [Openstack] Quantum is changing its name to...

2013-06-20 Thread tudor
Can you give the reasoning behind the name change? It seems strange to make this change now, especially when "quantum" is so well recognised. It's going to create havoc when searching and asking for help, etc, on google. stackexhange, etc, etc, etc. On 2013-06-20 02:13, Mark McClain wrote: >

[Openstack] [Swift] Load Average node storage

2013-06-20 Thread Jose Augusto de Sousa
Dears, i finished installation and configuration of my swift cluster. After all, i used a region with 1 zone and 4 node storage. each node-storage with 24 disks and 32GB ram, in 10Gb network. i notice the load always in 3 of 4 hosts. load average: 24.06, 24.02, 24.00 top - 20:24:29 up 8 days

Re: [Openstack] Quantum is changing its name to...

2013-06-20 Thread Salvatore Orlando
The reason is merely legal. More information are available in this thread: https://lists.launchpad.net/openstack/msg22544.html Salvatore On 21 June 2013 00:38, tudor wrote: > ** > > Can you give the reasoning behind the name change? It seems strange to > make this change now, especially when

Re: [Openstack] [Horizon] UX Discussions - proposal for better organization, rising activity and awareness

2013-06-20 Thread Toshiyuki Hayashi
Hi, I really understand and share Gabriel's concern, but now GitHub has become familiar for web design people as well, at least it is the most popular service in those kind of services. Also G+ community which using now is not suitable for discussions, difficult to track threads, share images or t

Re: [Openstack] [keystone] How to validate token without admin privileges

2013-06-20 Thread Adam Young
We are moving to an RBAC system for enforcing access to the APIs. So, where as in the past we enforced "is admin" when checking a token, in the future, you can specify your own policy rule. PKI based Tokens can be verified without talking to Keystone. See the auth_token middleware and cms.py

Re: [Openstack] [Horizon] UX Discussions - proposal for better organization, rising activity and awareness

2013-06-20 Thread Kyle Kelley
Hi! It's worth pointing out that GitHub's designers jump straight into Pull Requests, designing right alongside developers. Zach Holman gave a great talk about their process which included how everyone works together seamlessly with autonomy. http://www.youtube.com/watch?v=qyz3jkOBbQY -- Kyle

[Openstack] ceilometer not getting nova notifications

2013-06-20 Thread Anshul Gangwar
I am not getting disk.root.size meter notifications from nova to ceilometer. I am getting all ther pollster meters but not notification meters. Do I need to add any cron job like cinder to get notifications? I am using devstack and below are the contents of my nova.conf.  firewall_driver = nova

Re: [Openstack] How to query ceilometer to get nova-specific data

2013-06-20 Thread Jobin Raju George
Extremely sorry for the delayed response, Claudio, but seems like that is an issue for me. I have uploaded the response I get by executing *curl -X GET -H 'X-Auth-Token:' "http://localhost:8777/v2/meters * over here ,please have a look. I have kvm enabled even

Re: [Openstack] ip: SIOCGIFFLAGS: No such device

2013-06-20 Thread tudor
Hello again Hua, and thanks for the help! Firstly, my (2) is identical to yours. According to point (3) the user being used is the default "root", so adding a user to the libvirtd group (1) doesn't seem to make sense. Are you suggesting that something can't run or access something else?  If so, s

Re: [Openstack] ip: SIOCGIFFLAGS: No such device

2013-06-20 Thread tudor
Hi Rob, Thanks for looking at this. My /etc/nova/nova.conf does list the libvirt_vif_driver. I've attached my nova.conf below. I have gone through the installation guides. This is an installation where I followed the Folsom Install Guide and then upgraded it to Grizzly. I don't particularl