Re: [Openstack] [nova] python-novaclient 2.11.0 release

2013-02-13 Thread Daniel P. Berrange
On Tue, Feb 12, 2013 at 09:41:11PM -0800, Vishvananda Ishaya wrote: Hello Everyone, I just pushed version 2.11.0 of python-novaclient to Pypi. There are a lot of fixes and features in this release. Here is a brief overview: Bug Fixes - simplified keyring support Sigh, this

[Openstack] n-api installation problem with devstack (on Ubuntu )

2013-02-13 Thread swapnil khanapurkar
Hi All, I posted below bug on launchpad, but i didn't get any response from the team, may be its not that active as openstack mailing list. I am facing an issue detailed here [ https://bugs.launchpad.net/devstack/+bug/1122764 ]. Thanks Swapnil ___

Re: [Openstack] n-api installation problem with devstack (on Ubuntu )

2013-02-13 Thread Jean-Baptiste RANSY
Hi Swapnil, Your problem is : Address already in use (Socket already in use) I think you have another process that listening on the same port as nova-api. Try to find the PID of this process. (netstat -tanpe) If it's not a fresh install, did you run unstack.sh before stack.sh ? Regards,

[Openstack] use of internal endpoint url instead of public url

2013-02-13 Thread Patrick Petit
Dear All, How can I direct nova CLI to use the internal service endpoint URL instead of the public one? Same question applies to cinder CLI. I managed to find my way through with glance CLI which supports an OS_IMAGE_URL environment variable whereas OS_COMPUTE_URL and OS_VOLUME_URL seem to

Re: [Openstack] use of internal endpoint url instead of public url

2013-02-13 Thread Sylvain Bauza
--bypass-url bypass-url Use this API endpoint instead of the Service Catalog In client.py : if self.bypass_url: self.set_management_url(self.bypass_url) Is this what you expect ? -Sylvain Le 13/02/2013 12:08, Patrick Petit a écrit : Dear All,

Re: [Openstack] use of internal endpoint url instead of public url

2013-02-13 Thread Sylvain Bauza
I forgot to mention, cinderclient doesn't support this attribute yet, but it's worth to add it. -Sylvain Le 13/02/2013 12:46, Sylvain Bauza a écrit : --bypass-url bypass-url Use this API endpoint instead of the Service Catalog In client.py : if

[Openstack] How to debug a Swift's not found error while downloading a file?

2013-02-13 Thread Giuseppe Civitella
Hi all, I'm receiving an error not found while trying to download a file from a Swift container. This happens even if I can see that file when listing the container's content. I was wondering which is the best way to inspect the problem and manually recover the file when this kind of things

Re: [Openstack] [nova] python-novaclient 2.11.0 release

2013-02-13 Thread vvdbzhi
nice 在 2013-2-13,下午1:41,Vishvananda Ishaya vishvana...@gmail.com 写道: Hello Everyone, I just pushed version 2.11.0 of python-novaclient to Pypi. There are a lot of fixes and features in this release. Here is a brief overview: Bug Fixes - private key files now created with 400

Re: [Openstack] [OpenStack][Swift] Error while starting container, account, object servers.

2013-02-13 Thread Razique Mahroua
I think it's the object-server which cannot bind the IP. Have you updated all the configuration files for it in order not to have the same bidings ports ? Razique Mahroua-Nuage Corazique.mahr...@gmail.comTel: +33 9 72 37 94 15 Le 12 févr. 2013 à 09:42, Sujay M sujay@gmail.com a écrit :My

Re: [Openstack] [nova] python-novaclient 2.11.0 release

2013-02-13 Thread Joshua Harlow
Can't this be fixed by configuring the underlying keyring config file to use a different backing storage? http://pypi.python.org/pypi/keyring#customize-your-keyring-by-config-file Sent from my really tiny device... On Feb 13, 2013, at 2:14 AM, Daniel P. Berrange

Re: [Openstack] metadata issue

2013-02-13 Thread Razique Mahroua
HI :)do you use nova-network or quantum? And according to the model you use, which kind? For instance vlan, flat, flatDHP for nova-network ?thanks, Razique Mahroua-Nuage Corazique.mahr...@gmail.comTel: +33 9 72 37 94 15 Le 12 févr. 2013 à 17:03, Paras pradhan pradhanpa...@gmail.com a écrit :Hi,I

Re: [Openstack] metadata issue

2013-02-13 Thread Paras pradhan
I ran that command on compute node. I am using nova-network and flatdhcpmanager. I have another setup which has quantam . Having difficulties with the same problem in quantam. Paras. On Wed, Feb 13, 2013 at 9:15 AM, Razique Mahroua razique.mahr...@gmail.comwrote: HI :) do you use

Re: [Openstack] metadata issue

2013-02-13 Thread Sylvain Bauza
First of all, make sure metadata is DNAT'd to nova-api on your nova-network node. For that, please issue 'iptables -t nat -S' and look at the corresponding entry : -A nova-network-PREROUTING -d 169.254.169.254/32 -p tcp -m tcp --dport 80 -j DNAT

Re: [Openstack] [OpenStack][Swift] Error while starting container, account, object servers.

2013-02-13 Thread Razique Mahroua
Excellent :) Razique Mahroua-Nuage Corazique.mahr...@gmail.comTel: +33 9 72 37 94 15 Le 13 févr. 2013 à 17:02, Sujay M sujay@gmail.com a écrit :Yes the problem got solved. Thank you for the responses. The problem was in the conf files object-server.conf, container-server.conf,

Re: [Openstack] use of internal endpoint url instead of public url

2013-02-13 Thread Scott Devoid
We're also lacking support for setting --endpoint-type in keystone. In my case, it's trying to use adminURL when publicURL is the only one externally reachable. Are all of these effectively the same? --os-endpoint service-endpoint --endpoint-type xURL --bypass-url url ~ Scott On Wed, Feb 13,

Re: [Openstack] [OpenStack][Swift] Error while starting container, account, object servers.

2013-02-13 Thread Sujay M
Yes the problem got solved. Thank you for the responses. The problem was in the conf files object-server.conf, container-server.conf, account-server.conf i had given incorrect bind_ip of the host machine which gave socket bind error. now i changed those IP address to the correct address of the

Re: [Openstack] metadata issue

2013-02-13 Thread Sylvain Bauza
First of all, make sure metadata is DNAT'd to nova-api on your nova-network node. For that, please issue 'iptables -t nat -S' and look at the corresponding entry : -A nova-network-PREROUTING -d 169.254.169.254/32 -p tcp -m tcp --dport 80 -j DNAT --to-destination ip:8775 If this is correct,

Re: [Openstack] [SWIFT] code reading

2013-02-13 Thread John Dickinson
This part of the code gets the account info, but if the account isn't found and account autocreation is set (eg for tempauth and keystone), then we need to create the account first before returning the info. However, since there are multiple replicas of the account in the cluster, we can't

Re: [Openstack] How to debug a Swift's not found error while downloading a file?

2013-02-13 Thread Chuck Thier
Hi Giuseppe, The first thing you can do is use the swift-get-nodes utility to find out where those objects would normally be located. In your case it will look something like: swift-get-nodes /etc/swift/object.ring.gz AUTH_ACCOUNTHASH images 8ab06434-5152-4563-b122-f293fd9af465 Of course

[Openstack] HA Openstack with Pacemaker

2013-02-13 Thread Samuel Winchenbach
Hi All, I currently have a HA OpenStack cluster running where the OpenStack services are kept alive with a combination of haproxy and keepalived. Is it possible to configure pacemaker so that all the OpenStack services are served by the same IP? With keepalived I have a virtual ip that can

Re: [Openstack] HA Openstack with Pacemaker

2013-02-13 Thread JuanFra Rodriguez Cardoso
Hi Samuel: Yes, it's possible with pacemaker. Look at http://docs.openstack.org/trunk/openstack-ha/content/ch-intro.html. Regards, JuanFra 2013/2/13 Samuel Winchenbach swinc...@gmail.com Hi All, I currently have a HA OpenStack cluster running where the OpenStack services are kept alive

Re: [Openstack] HA Openstack with Pacemaker

2013-02-13 Thread Samuel Winchenbach
In that documentation it looks like each openstack service gets it own IP (keystone is being assigned 192.168.42.103 and glance is getting 192.168.42.104). I might be missing something too because in the section titled Configure the VIP it create a primitive called p_api-ip (or p_ip_api if you

Re: [Openstack] HA Openstack with Pacemaker

2013-02-13 Thread Razique Mahroua
I'm currently updating that part of the documentation - indeed it states that two IPs are used, but in fact, you end up with only one VIP for the API service.I'll send the patch tonight Razique Mahroua-Nuage Corazique.mahr...@gmail.comTel: +33 9 72 37 94 15 Le 13 févr. 2013 à 20:05, Samuel

Re: [Openstack] HA Openstack with Pacemaker

2013-02-13 Thread Razique Mahroua
There we gohttps://review.openstack.org/#/c/21581/ Razique Mahroua-Nuage Corazique.mahr...@gmail.comTel: +33 9 72 37 94 15 Le 13 févr. 2013 à 20:15, Razique Mahroua razique.mahr...@gmail.com a écrit :I'm currently updating that part of the documentation - indeed it states that two IPs are used,

Re: [Openstack] Getting the 2012.2.3 release in Ubuntu

2013-02-13 Thread Martinx - ジェームズ
+10 for 2012.2.3 @ Ubuntu Cloud Archives! On 11 February 2013 18:48, Logan McNaughton lo...@bacoosta.com wrote: Hi, I've added the Ubuntu Cloud Archive to my apt sources, however it looks like the latest release there is 2012.2.1. How can I get the latest 2012.2.3 release in Ubuntu 12.04?

Re: [Openstack] HA Openstack with Pacemaker

2013-02-13 Thread Samuel Winchenbach
What if the VIP is created on a different host than keystone is started on? It seems like you either need to set net.ipv4.ip_nonlocal_bind = 1 or create a colocation in pacemaker (which would either require all services to be on the same host, or have an ip-per-service). On Wed, Feb 13, 2013

Re: [Openstack] Provider networks and manual ip management

2013-02-13 Thread tra26
Alright so the proposed patch (on the abandoned review) doesn't fix the problem either, so I guess I take a look at Grizzly. If I were to want to test this out is Grizzly is the best option to just grab the code from git and deploy it that way or is there a snapshot that passes the tests?

[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_quantum_trunk #298

2013-02-13 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/298/Project:raring_grizzly_quantum_trunkDate of build:Wed, 13 Feb 2013 03:31:08 -0500Build duration:3 min 20 secBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Failure: raring_grizzly_cinder_trunk #143

2013-02-13 Thread openstack-testing-bot
Title: raring_grizzly_cinder_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_cinder_trunk/143/Project:raring_grizzly_cinder_trunkDate of build:Wed, 13 Feb 2013 03:35:20 -0500Build duration:2 min 44 secBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_quantum_trunk #290

2013-02-13 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/290/Project:precise_grizzly_quantum_trunkDate of build:Wed, 13 Feb 2013 03:36:29 -0500Build duration:1 min 57 secBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Fixed: precise_grizzly_python-keystoneclient_trunk #69

2013-02-13 Thread openstack-testing-bot
Title: precise_grizzly_python-keystoneclient_trunk General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_python-keystoneclient_trunk/69/Project:precise_grizzly_python-keystoneclient_trunkDate of build:Wed, 13 Feb 2013 03:36:27 -0500Build duration:3 min 13

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #674

2013-02-13 Thread openstack-testing-bot
text/html; charset=UTF-8: Unrecognized -- Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications More help :

[Openstack-ubuntu-testing-notifications] Build Fixed: raring_grizzly_quantum_trunk #299

2013-02-13 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/299/Project:raring_grizzly_quantum_trunkDate of build:Wed, 13 Feb 2013 06:00:44 -0500Build duration:11 minBuild cause:Started by user Yolanda RoblaBuilt

[Openstack-ubuntu-testing-notifications] Build Fixed: raring_grizzly_cinder_trunk #144

2013-02-13 Thread openstack-testing-bot
Title: raring_grizzly_cinder_trunk General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_cinder_trunk/144/Project:raring_grizzly_cinder_trunkDate of build:Wed, 13 Feb 2013 07:27:11 -0500Build duration:4 min 34 secBuild cause:Started by user Chuck ShortBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #675

2013-02-13 Thread openstack-testing-bot
text/html; charset=UTF-8: Unrecognized -- Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications More help :

[Openstack-ubuntu-testing-notifications] Build Fixed: precise_grizzly_quantum_trunk #291

2013-02-13 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/291/Project:precise_grizzly_quantum_trunkDate of build:Wed, 13 Feb 2013 11:31:09 -0500Build duration:11 minBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #677

2013-02-13 Thread openstack-testing-bot
text/html; charset=UTF-8: Unrecognized -- Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications More help :

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #676

2013-02-13 Thread openstack-testing-bot
text/html; charset=UTF-8: Unrecognized -- Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications More help :

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #678

2013-02-13 Thread openstack-testing-bot
text/html; charset=UTF-8: Unrecognized -- Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications More help :

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #679

2013-02-13 Thread openstack-testing-bot
text/html; charset=UTF-8: Unrecognized -- Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications More help :

[Openstack-ubuntu-testing-notifications] Build Failure: precise_grizzly_glance_trunk #114

2013-02-13 Thread openstack-testing-bot
at 20130213-1940Build needed 00:07:37, 20196k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d

[Openstack-ubuntu-testing-notifications] Build Failure: raring_grizzly_glance_trunk #127

2013-02-13 Thread openstack-testing-bot
at 20130213-1945Build needed 00:11:15, 20196k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'raring-grizzly

[Openstack-ubuntu-testing-notifications] Build Failure: precise_grizzly_ceilometer_trunk #83

2013-02-13 Thread openstack-testing-bot
at 20130213-2033Build needed 00:00:00, 0k disc spaceE: Package build

[Openstack-ubuntu-testing-notifications] Build Failure: raring_grizzly_quantum_trunk #302

2013-02-13 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/302/Project:raring_grizzly_quantum_trunkDate of build:Wed, 13 Feb 2013 21:36:56 -0500Build duration:1 min 54 secBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #680

2013-02-13 Thread openstack-testing-bot
text/html; charset=UTF-8: Unrecognized -- Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications More help :

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_glance_trunk #115

2013-02-13 Thread openstack-testing-bot
at 20130213-2310Build needed 00:07:34, 20180k disc spaceERROR:root:Error occurred during package creation/build

[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_glance_trunk #128

2013-02-13 Thread openstack-testing-bot
at 20130213-2314Build needed 00:11:04, 20176k disc spaceERROR:root:Error occurred during package creation/build: Command

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #681

2013-02-13 Thread openstack-testing-bot
text/html; charset=UTF-8: Unrecognized -- Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications More help :

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #682

2013-02-13 Thread openstack-testing-bot
text/html; charset=UTF-8: Unrecognized -- Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications More help :

[Openstack-ubuntu-testing-notifications] Build Fixed: raring_grizzly_quantum_trunk #303

2013-02-13 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/303/Project:raring_grizzly_quantum_trunkDate of build:Thu, 14 Feb 2013 01:31:09 -0500Build duration:12 minBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_glance_trunk #116

2013-02-13 Thread openstack-testing-bot
Title: precise_grizzly_glance_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_glance_trunk/116/Project:precise_grizzly_glance_trunkDate of build:Thu, 14 Feb 2013 02:31:10 -0500Build duration:9 min 20 secBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Fixed: raring_grizzly_glance_trunk #129

2013-02-13 Thread openstack-testing-bot
Title: raring_grizzly_glance_trunk General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_glance_trunk/129/Project:raring_grizzly_glance_trunkDate of build:Thu, 14 Feb 2013 02:31:10 -0500Build duration:14 minBuild cause:Started by an SCM changeBuilt