Re: [Openstack] Swift3 Github pages

2012-05-21 Thread Greg
[Reposting my original reply at the very bottom of this, since I sent it from the wrong email address last time and it never hit the mailing list -- for those following along there.] And Pete, that PEP isn't exactly great and we all definitely translated it differently before. :) Some parts are

Re: [Openstack] [Swift] Question about cloudfiles API

2012-05-24 Thread Greg
It is mostly the likely the self-signed certificate issue you suspected. Java (and other languages) are pretty notorious for rejecting such unless you configure them just right. I haven't worked with Java in 10 years, so my knowledge of how to fix that is pretty useless, hopefully another will s

Re: [Openstack] [Swift] S3 like ACL for Swift

2012-06-20 Thread Greg
Have you worked with Fujita Tomonori? If not, you might consider collaborating on https://github.com/fujita/swift3 On Jun 20, 2012, at 9:38 AM, Victor Rodionov wrote: > Hello > > I have working implementation of S3 like ACL API for Swift, for this changes > I need to store ACL on object and c

Re: [Openstack] Pondering multi-tenant needs in nova.

2011-02-07 Thread Greg
If it's any help, Swift just uses an opaque account string. With Cloud Files we have several resellers each with their own sets of how accounts and users should be structured. We backed away quickly from all that and went the route of "here's an account identifier value, it must be unique amongs

Re: [Openstack] Pondering multi-tenant needs in nova.

2011-02-07 Thread Greg
On Feb 7, 2011, at 8:30 AM, Jay Pipes wrote: > What Swift APIs are available for a reseller to query which of its > customer accounts have consumed X resources? Or does Swift punt and > make the reseller calculate all those things? A bit of both. You can head an account to get get disk usage, obj

Re: [Openstack] Pondering multi-tenant needs in nova.

2011-02-07 Thread Greg
On Feb 7, 2011, at 9:42 AM, Jay Pipes wrote: > OK, but can you head all the accounts under another account? Or is > that done via log processing? There no concept of accounts under another account with Swift. An external system could do head requests however desired. But yeah, that sort of thing

Re: [Openstack] Pondering multi-tenant needs in nova.

2011-02-07 Thread Greg
Perhaps thought should be given to other services besides Nova. Swift has no central accounts database. For it to gather "all accounts like x" type queries, it'd have to hit up every account node. Probably the same for a queue service. A database service might have a central db, and I guess Nova

Re: [Openstack] Pondering multi-tenant needs in nova.

2011-02-07 Thread Greg
On Feb 7, 2011, at 7:58 PM, Jay Pipes wrote: > I'm not saying the federated auth/CMDB/whatever service is not a good > idea nor that it will not work. I want people to understand and > acknowledge the tradeoffs involved. Acknowledged? :) [Hehe, damned programmers will never agree on nearly anyt

Re: [Openstack] State of OpenStack Auth

2011-03-03 Thread Greg
On Mar 2, 2011, at 8:30 PM, Jesse Andrews wrote: > I would prefer a signature based approach as the default (as signatures > limits replay attacks; tokens allow an eavesdropper to make arbitrary > requests if they obtain a token). On the other hand, signatures make simple things difficult, such

Re: [Openstack] State of OpenStack Auth

2011-03-03 Thread Greg
On Mar 3, 2011, at 7:02 PM, Michael Mayo wrote: >> The problem with this logic is that you are optimizing wrong. In a token >> based auth system, the tokens are valid generally for a period of time (24 >> hours normally with Rackspace auth), and it is a best practice to cache >> this. Saying

Re: [Openstack] State of OpenStack Auth

2011-03-04 Thread Greg
On Mar 4, 2011, at 11:05, Jorge Williams wrote: > > though we removed the details of this part at the request of the swift team. > Khaled implement this code to support both the default auth component and > to integrate the blueprint with swift. The response to our blueprint, from > the

Re: [Openstack] State of OpenStack Auth

2011-03-04 Thread Greg
On Mar 4, 2011, at 1:25 PM, Jorge Williams wrote: > I don't want this to deteriorate into a flame war but let's get our facts > straight: > > 1) It completely integrated with the existing auth system and it integrated > with our default Auth component. > 2) All tests passed. I was looking o

Re: [Openstack] boot from volume use cases

2012-03-25 Thread Greg Cockburn
+1 from me. We are currently investigating how to use OpenStack with a FC SAN. On Sun, Mar 25, 2012 at 8:29 AM, Salman A Baset wrote: > I am sure it has been discussed, but booting an instance from a volume > stored on SAN (similar to EBS) is clearly an important use case for private > clouds..

Re: [Openstack] [swift] Operational knowledge sharing

2012-08-10 Thread Greg Holt
Followup note: Though briefly mentioned by John, I like to emphasize this also affects COPY (or PUT with X-Copy-From) requests, and #1 (upping the lb timeout) is really the only solution unless we go crazy and implement async requests with status checks. Well, another weird solution is to have S

Re: [Openstack] [swift] Operational knowledge sharing

2012-08-13 Thread Greg Holt
On Aug 13, 2012, at 11:36 AM, Caitlin Bestler wrote: > I'm not sure it's worth the compatibility hassles, but why would periodic > "Progress" returns that could be translated into a client status bar be > "useless"? Sorry, poor choice of word I guess. ___

Re: [Openstack] describing APIs for OpenStack consumers

2011-10-26 Thread Greg DeRenne
the proposed API :) > -- > Kevin L. Mitchell > > > ___ > Mailing list: https://launchpad.net/~openstack > Post to : openstack@lists.launchpad.net > Unsubscribe : https://launchpad.net/~openstack > More help : https://help.launchpad.net/ListHelp > -- Regards,

Re: [Openstack] Swift PPA's

2011-05-06 Thread Greg Holt
On May 6, 2011, at 5:06 AM, Soren Hansen wrote: > 2011/5/5 Chuck Thier : >> Hey Soren, >> We've asked similar questions before :) >> Ever since the packaging was pulled out of the source tree, we have been >> mostly out of the packaging loop. Since then most of the packaging details >> have been

Re: [Openstack] Swift PPA's

2011-05-06 Thread Greg Holt
[Removed the previous stuff, it was getting messy. And sorry for this long email, I tried to make it shorter, really.] Okay, cool. Seems we all thought someone else was managing it so nobody really was. A few quick points and maybe we can get this all sorted out: * Most of us (me, chuck, redbo,

Re: [Openstack] Getting pagination right

2011-05-25 Thread Greg Holt
Also, using marker/limit rather than offset/limit makes it much easier to shard for scale if desired. One of the reasons we chose that route with Swift. Regular databases with indexes work better with marker/limit than offset/limit too. On May 25, 2011, at 12:38 PM, Justin Santa Barbara wrote:

Re: [Openstack] Getting pagination right

2011-05-25 Thread Greg Holt
Okay cool. Just stop using the term offset anywhere in your examples then and drop the whole page= thing as well. :) On May 25, 2011, at 1:28 PM, Jay Pipes wrote: > I'm not proposing using marker/limit over offset/limit. I'm proposing > using marker/limit/offset over searching manually through a

Re: [Openstack] Getting pagination right

2011-05-25 Thread Greg Holt
e: > On Wed, May 25, 2011 at 3:10 PM, Greg Holt wrote: >> Okay cool. Just stop using the term offset anywhere in your examples then >> and drop the whole page= thing as well. :) > > Sorry, I'm not understanding what you're getting at here. The offset > is req

Re: [Openstack] Getting pagination right

2011-05-25 Thread Greg Holt
Okay, I give up then. Not sure what's different with what you have vs. Swift dbs. Just trying to offer up what we do and have been doing for a while now. On May 25, 2011, at 2:40 PM, Jay Pipes wrote: > On Wed, May 25, 2011 at 3:32 PM, Greg Holt wrote: >> select w from x where y

Re: [Openstack] suggestion for data backup/recovery in swift

2011-05-31 Thread Greg Holt
On May 31, 2011, at 4:49 PM, Rostyslav Slipetskyy wrote: > I assume that in this scenario there is only one user/file of huge size and > all > the other users/files are much smaller (in other case, there will be not much > difference in distribution among drives). But the suggested backup/reco

Re: [Openstack] Changes-Since

2011-06-02 Thread Greg Holt
On Jun 2, 2011, at 12:39 AM, Jorge Williams wrote: > > How do you guys feel about the changes-since feature? > And if it is in the core shouldn't we support it in all of our APIs (images, > load balancers, etc.)? I don't think it'd be a good idea for Swift. It would require an additional inde

Re: [Openstack] swauth_novaldap released

2011-06-03 Thread Greg Holt
Very, very cool! Just curious, what's the reason for the account, user -> user, account switch in swift3.py? On Jun 3, 2011, at 9:25 AM, Akira YOSHIYAMA wrote: > Hi Stackers, > > I'm pleased to announce swauth_novaldap, an auth-n/z driver for Swift > to use Nova user/profile data in LDAP. > >

Re: [Openstack] Conflicting st binary name

2011-06-10 Thread Greg Holt
On Jun 10, 2011, at 1:50 AM, Thomas Goirand wrote: > There's a bug report in the Debian BTS [1] against Nova in SID > concerning the "st" binary shipped by Swift. Shall we consider renaming > the binary "st" to something else? I know that a window manager has > nothing to do with us, but there mig

Re: [Openstack] Conflicting st binary name

2011-06-11 Thread Greg Holt
On Jun 11, 2011, at 11:15 AM, David Nalley wrote: > On Fri, Jun 10, 2011 at 2:50 AM, Thomas Goirand wrote: >> >> There's a bug report in the Debian BTS [1] against Nova in SID >> concerning the "st" binary shipped by Swift. Shall we consider renaming >> the binary "st" to something else? >> >>

[Openstack] Compute not restarting, qemu-img error?

2012-12-18 Thread Greg C
I suspended instances and rebooted one of my compute nodes, but not compute wont start up. Appears to be the checks of the machine images that fails. Libvirt has found the instances and started them back up, and compute checks them out and gets through 4 of 6 instances, then bombs: >From nova-com

Re: [Openstack] Compute not restarting, qemu-img error?

2012-12-18 Thread Greg C
Yes!, that was it. Had a failed snapshot (zero size, so I assume it failed). Removed it with qemu-img, and now we are back online. Thanks. On Tue, Dec 18, 2012 at 5:03 PM, Pádraig Brady wrote: > On 12/18/2012 09:43 PM, Greg C wrote: > >> I suspended instances and rebooted one o

[Openstack] Wasted Compute node disk space

2013-01-08 Thread Greg Chavez
e KVM host. Has any one else tried this? Is this clearly a bad, bad, bad idea? Thanks. -- \*..+.- --Greg Chavez +//..;}; ___ Mailing list: https://launchpad.net/~openstack Post to : openstack@lists.launchpad.net Unsubscribe : https://launchpad.net/

Re: [Openstack] Wasted Compute node disk space

2013-01-08 Thread Greg Chavez
/sde1 559G 33M 559G 1% /swift4 /dev/sdf1 559G 33M 559G 1% /swift5 /dev/sdg1 559G 33M 559G 1% /swift6 /dev/sdh1 559G 33M 559G 1% /swift7 /dev/sdi1 559G 33M 559G 1% /swift8 What do you think? --Greg On Tue, Jan 8, 20

[Openstack] FixedIpNotFoundForAddress errors in network.log

2013-01-26 Thread Greg Chavez
, ' File "/usr/lib/python2.6/site-packages/nova/db/sqlalchemy/api.py", line 129, in wrapper\nreturn f(*args, **kwargs)\n', ' File "/usr/lib/python2.6/site-packages/nova/db/sqlalchemy/api.py", line 1201, in fixed_ip_get_by_address\nraise exception

Re: [Openstack] Centos : yum install openstack-quantum-openvswitch

2013-01-31 Thread Greg Chavez
rces??? > > > > > ___ > Mailing list: https://launchpad.net/~openstack > Post to : openstack@lists.launchpad.net > Unsubscribe : https://launchpad.net/~openstack > More help : https://help.launchpad.net/ListHelp > > -

Re: [Openstack] Centos : yum install openstack-quantum-openvswitch

2013-01-31 Thread Greg Chavez
actually worse than OpenNMS! On Thu, Jan 31, 2013 at 6:19 PM, Greg Chavez wrote: > Hey guys, I'm having the same problem on RHEL 6.3. Did a search on > openvswitch at RHN and it came up with nothing. Where is it? Fedora's > core repos? > > > On Sun, Nov 18, 20

[Openstack] openvswitch rpm on RHEL 6.3 frustration

2013-01-31 Thread Greg Chavez
ive, by the way. Useless mailing lists. -- \*..+.- --Greg Chavez +//..;}; ___ Mailing list: https://launchpad.net/~openstack Post to : openstack@lists.launchpad.net Unsubscribe : https://launchpad.net/~openstack More help : https://help.launchpad.net/ListHelp

Re: [Openstack] openvswitch rpm on RHEL 6.3 frustration

2013-01-31 Thread Greg Chavez
Ken'ich, Arigato gozaimasu. Where did you get that rpm? On Fri, Feb 1, 2013 at 1:19 AM, Ken'ichi Ohmichi wrote: > > Hi Greg, > > I can install openvswitch-1.7.3-1.x86_64.rpm on CentOS6.3 if specifying > with kmod-openkmod-openvswitch-1.7.3-1.el6.x86_64.rpm: > &g

Re: [Openstack] openvswitch rpm on RHEL 6.3 frustration

2013-02-01 Thread Greg Chavez
dependency checks for the "openvswitch" rpm passes somehow. The vagaries of rpms. If I had time, I'd crack open these rpms and see how this was possible. Clearly it's not as simple as checking the name of the rpm. On Fri, Feb 1, 2013 at 2:53 AM, Ken'ichi Ohmichi wrote:

[Openstack] Nova.Scheduler TypeError: can't compare datetime.datetime to NoneType

2013-02-07 Thread Greg Chavez
a.openstack.common.rpc.amqp if self.updated and self.updated > compute['updated_at']: 2013-02-07 19:21:45 1688 TRACE nova.openstack.common.rpc.amqp TypeError: can't compare datetime.datetime to NoneType -- \*..+.- --Greg Chavez +//..;}; ___ Mail

Re: [Openstack] Nova.Scheduler TypeError: can't compare datetime.datetime to NoneType

2013-02-08 Thread Greg Chavez
13 at 12:49 AM, Unmesh Gurjar wrote: > Greg, > > IMO, this qualifies as a bug. > > To debug what's causing this scenario is your case, I would suggest > checking the database connection setting in nova.conf on your Compute & > Controller host. AFAIK, it either means Comp

[Openstack] Compute Node OSError: [Errno 13] Permission denied: '/run'\n"

2013-02-08 Thread Greg Chavez
, line 157, in makedirs 2013-02-08 11:42:09 40898 TRACE nova.compute.manager [instance: 563385d7-0654-45f0-8c81-8aaa3acdcd65] mkdir(name, mode) 2013-02-08 11:42:09 40898 TRACE nova.compute.manager [instance: 563385d7-0654-45f0-8c81-8aaa3acdcd65] OSError: [Errno 13] Permission den

Re: [Openstack] Compute Node OSError: [Errno 13] Permission denied: '/run'\n"

2013-02-08 Thread Greg Chavez
05 PM, Greg Chavez wrote: > > It's a slog, but I appear to be on the cusp on launching my first VM with > using the 3-NIC network node setup outline by > the OpenStack_Folsom_Install_Guide_WebVersion.rst guide at github. Right > now, I'm getting this error on my compute

Re: [Openstack] Compute Node OSError: [Errno 13] Permission denied: '/run'\n"

2013-02-08 Thread Greg Chavez
guides to fill in the gaps. Very frustrating... but it's gotten me closer than following the Fedora/RHEL guides alone. I'll post other problems as I come across them, believe me! Thanks On Fri, Feb 8, 2013 at 12:44 PM, Anne Gentle wrote: > Good to know, thanks for the follow-u

[Openstack] Network cannot be found

2013-02-10 Thread Greg Chavez
i.log I find this error: Caught error: Network 3de1e780-07d1-42af-89cc-0feaf1ece6e9 could not be found. WHAT! How is it not found? It clearly exists, unless net-id is expecting something else as its value. Argh. Thanks in advance. -- \*..+.- --Greg Chavez +//..;}; ___

Re: [Openstack] Network cannot be found

2013-02-11 Thread Greg Chavez
x27;m telling you, it's like whack-a-mole with thing. I'll kick off a new email with the new problem if I can't fix it soon. Thanks for your help though. On Mon, Feb 11, 2013 at 12:40 AM, Aaron Rosen wrote: > Hi Greg, > > I checked out why this can happen and I think the

[Openstack] brctl meltdown on RHEL 6.3

2013-02-11 Thread Greg Chavez
Interface "int-br-eth1" Port br-int Interface br-int type: internal ovs_version: "1.7.3" Final note, my network node fails the same way, but the controller does not. I hope so m

Re: [Openstack] brctl meltdown on RHEL 6.3

2013-02-11 Thread Greg Chavez
Solution: [root@kvm-cs-sn-10i nova]# modprobe -r brcompat [root@kvm-cs-sn-10i nova]# modprobe bridge [root@kvm-cs-sn-10i nova]# brctl show bridge name bridge id STP enabled interfaces Still can't boot a VM... looking into the reasons now. On Mon, Feb 11, 2013 at 11:33 AM, Greg Chavez

[Openstack] Initial quantum network state broken

2013-02-15 Thread Greg Chavez
please. Thanks. -- \*..+.- --Greg Chavez +//..;}; ___ Mailing list: https://launchpad.net/~openstack Post to : openstack@lists.launchpad.net Unsubscribe : https://launchpad.net/~openstack More help : https://help.launchpad.net/ListHelp

[Openstack] Horizon & Keystone & Nova miscommunication

2013-02-16 Thread Greg Chavez
6947c497df76d2'\G *** 1. row *** id: 9e40d355b49342f8ac6947c497df76d2 type: identity extra: {"description": "OpenStack Identity", "name": "keystone"} 1 row in set (0.00 sec) Please please please help me

Re: [Openstack] Initial quantum network state broken

2013-02-17 Thread Greg Chavez
stly don't know. Thanks. On Fri, Feb 15, 2013 at 6:54 PM, Greg Chavez wrote: > > Sigh. So I abandoned RHEL 6.3, rekicked my systems and set up the > scale-ready installation described in these instructions: > > > https://github.com/mseknibilel/Open

Re: [Openstack] Initial quantum network state broken

2013-02-18 Thread Greg Chavez
Third time I'm replying to my own message. It seems like the initial network state is a problem for many first time openstackers. Surely somewhere would be well to assist me. I'm running out of time to make this work. Thanks. On Sun, Feb 17, 2013 at 3:08 AM, Greg Chavez wro

[Openstack] Fwd: Initial quantum network state broken

2013-02-19 Thread Greg Chavez
he bridges, rebooting the systems, but nothing seems to work. Maybe it's just the right combination of things. I don't know. Help! On Tue, Feb 19, 2013 at 5:23 AM, Sylvain Bauza wrote: > Hi Greg, > > I did have trouble with DHCP assignation (see my previous post in this >

Re: [Openstack] Openstack] Suggestions for shared-storage cluster file system

2013-02-19 Thread Greg Chavez
net/~openstack >>> More help : https://help.launchpad.net/ListHelp >>> >>> >> >> ___ >> Mailing list: https://launchpad.net/~openstack >> Post to : openstack@lists.launchpad.net >> Unsubscribe :

[Openstack] Fwd: Fwd: Initial quantum network state broken

2013-02-20 Thread Greg Chavez
MAL Thanks! I have until tomorrow to get this working, then my boss has mandating that I try Cloudstack. Argh, but I'm so close! On Wed, Feb 20, 2013 at 10:29 AM, Anil Vishnoi wrote: > Hi Greg, > > Can you paste the output of following command from your compute node. > > ov

Re: [Openstack] Fwd: Initial quantum network state broken

2013-02-20 Thread Greg Chavez
ble=0, n_packets=17355, n_bytes=3335788, priority=1 actions=NORMAL On Wed, Feb 20, 2013 at 10:57 AM, Greg Chavez wrote: > > Hey Anil, thanks for responding. Here's the output: > > root@kvm-cs-sn-10i:/var/lib/nova/instances# ovs-vsctl show > 9d9f7949-2b80-40c8-a9e0-6a11620

[Openstack] Agent out of sync with plugin!

2013-03-11 Thread Greg Chavez
hat this is and INFO message, not an error. But I would still like to know what this means. Thanks! -- \*..+.- --Greg Chavez +//..;}; ___ Mailing list: https://launchpad.net/~openstack Post to : openstack@lists.launchpad.net Unsubscribe : https:

Re: [Openstack] Agent out of sync with plugin!

2013-03-12 Thread Greg Chavez
7;re saying is that the ovs plugin/agent - whatever it is - is simply stating that it assumes it's out of sync since it's starting up, and it's going to phone home. Is that right? Thanks! On Tue, Mar 12, 2013 at 3:18 AM, Gary Kotton wrote: > On 03/12/2013 12:13 AM, Greg Chavez wro

[Openstack] br-int not recreated after compute node reboot

2013-03-29 Thread Greg Chavez
fig $IFACE 0.0.0.0 up down ifconfig $IFACE down So when my test vm's come up, they obviously don't get an IP. The bridge-bridge is missing. Thanks in advance for your suggestions. -- \*..+.- --Greg Chavez +//..;}; ___ Mailing list: h

[Openstack] can't get db_sync to work

2013-04-10 Thread Greg Hill
Not that I believe it's relevant, but here's the connection string from the config file (scrubbed). Both the api and registry configs have this set, and it's the only config value I changed from the default. sql_connection = postgr

Re: [Openstack] can't get db_sync to work

2013-04-10 Thread Greg Hill
eparer.quote(self._validate_identifier(index.name, 2013-04-10 22:08:10.019 2966 TRACE glance AttributeError: 'PGSchemaChanger' object has no attribute '_validate_identifier' 2013-04-10 22:08:10.019 2966 TRACE glance I'll keep digging, but any help is appreciated. Gr

Re: [Openstack] can't get db_sync to work

2013-04-10 Thread Greg Hill
event other future adventurers from repeating the same errors I did. Greg On 04/10/2013 03:15 PM, Greg Hill wrote: I made a bad assumption, it is using 0.7.8 and still gets the error: [root@glance site-packages]# glance-manage -v db_sync 2013-04-10 22:08:09.970 2966 INFO glance.db.sqlalchemy.migr

[Openstack] How to decommission a compute node

2013-04-30 Thread Greg Chavez
nova kvm-sn-14i nova My concern is that when I bring kvm-sn-10i back to life, my controller node won't be able to authorize it. So what is the proper way to delete/remove/decommission a compute node? Thanks. -- \*..+.- --Greg Chavez +//..;}; __

[Openstack] [Grizzly] Inbound VM traffic fails at compute node

2013-05-02 Thread Greg Chavez
m 10.21.166.2. Finally, I see no hits on my secgroup rules. Any advice? I have interesting command output here: http://pastebin.com/Cs514mkN Thanks in advance. -- \*..+.- --Greg Chavez +//..;}; ___ Mailing list: https://launchpad.net/~openstack Post to

Re: [Openstack] [Grizzly] Inbound VM traffic fails at compute node

2013-05-02 Thread Greg Chavez
| | +-+---+-+---+--+ Thanks again, George. On Thu, May 2, 2013 at 6:27 PM, Greg Chavez wrote: > > I have Grizzly up and running on Ubuntu 13.04, following the excellent > instructions by Msekni Bilel. I'm using gre tunneling and per-tenant > routers. It looks something like this: > > http://chav

[Openstack] Failure to arp by quantum router

2013-05-07 Thread Greg Chavez
oblem. But when I sniff the tenant network side of the router, I see unanswered arp requests for the VM's local IP. What's failing here? How would you troubleshoot this? Thanks. -- \*..+.- --Greg Chavez +//..;}; ___ Mailing list: https:

[Openstack] A Grizzly arping failure

2013-05-10 Thread Greg Chavez
igured. I assume that's the source of the problem, but I feel a little in over my head. Any suggestions would be great. Thanks in advance! -- \*..+.- --Greg Chavez +//..;}; ___ Mailing list: https://launchpad.net/~openstack Post to : open

Re: [Openstack] Grizzly fails on ubuntu server 13.04

2013-05-10 Thread Greg Chavez
I need is similar to the fix that you need. We shall see. --Greg Chavez On Fri, May 10, 2013 at 12:21 PM, Pranav wrote: > but NAT wont make the VM accessible from outside world ... will it? > > Regards, > Pranav > > > On Fri, May 10, 2013 at 5:16 PM, Nikhil Mittal >

Re: [Openstack] A Grizzly arping failure

2013-05-10 Thread Greg Chavez
o-has 192.168.252.5 tell 192.168.252.1, length 28 Very annoying! On Fri, May 10, 2013 at 12:36 PM, Greg Chavez wrote: > I sent a message about this 3 days ago, but I didn't get a response. > So if at first you don't succeed... > > The symptom is that my VMs only survive on the e

Re: [Openstack] A Grizzly arping failure

2013-05-10 Thread Greg Chavez
from the router to ff:ff:ff:ff:ff:ff that are not getting across in that > direction. You should continue tcpdumping on the devices along the path to > the > instance to see where the arp request (or reply) stops. You do not say which > plugin you are using? Is it multino

Re: [Openstack] A Grizzly arping failure

2013-05-10 Thread Greg Chavez
Fri, May 10, 2013 at 4:28 PM, Darragh O'Reilly wrote: > In my setup I see the arp replies being answered by the instance - not > dnsmasq. -- \*..+.- --Greg Chavez +//..;}; ___ Mailing list: https://launchpad.net/~openstack Post to : openstack@lists.launchpad.net Unsubscribe : https://launchpad.net/~openstack More help : https://help.launchpad.net/ListHelp

[Openstack] A Grizzly GRE failure

2013-05-10 Thread Greg Chavez
nnot create a port named gre-5 because a port named gre-5 already exists on bridge br-tun\n' Could that be because grep-1 is vestigial and possibly fouling up the works by creating two possible paths for VM traffic? Is it as simple as removing it with ovs-vsctl or is something else requ

Re: [Openstack] A Grizzly GRE failure

2013-05-11 Thread Greg Chavez
r does is see all endpoints as the same domain? What happens here? Is this the cause of my network timeouts on external connections to the VMs? Does this also explain the sporadic nature of the timeouts, why they aren't consistent in frequency or duration? Finally, what happens when I rem

Re: [Openstack] A Grizzly GRE failure [SOLVED]

2013-05-12 Thread Greg Chavez
--+-+ 2 rows in set (0.00 sec) mysql> select * from ovs_tunnel_allocations where allocated != 0; +---+---+ | tunnel_id | allocated | +---+---+ | 1 | 1 | | 2 | 1 | +---+---+ 2 rows in set (0.00 sec) Cheers, and happy openstackin

[Openstack] Understanding the metadata service

2013-05-13 Thread Greg Chavez
oxy = True quantum_metadata_proxy_shared_secret = PvUafKreIImX3OePynlc What am I missing here? Thanks in advance. -- \*..+.- --Greg Chavez +//..;}; ___ Mailing list: https://launchpad.net/~openstack Post to : openstack@lists.launchpad.net Unsubscri

[Openstack] volumeId is not in proper format

2013-06-05 Thread Greg Chavez
at's wrong here? Thanks! -- \*..+.- --Greg Chavez +//..;}; ___ Mailing list: https://launchpad.net/~openstack Post to : openstack@lists.launchpad.net Unsubscribe : https://launchpad.net/~openstack More help : https://help.launchpad.net/ListHelp

Re: [Openstack] volumeId is not in proper format

2013-06-05 Thread Greg Chavez
Well that's embarrassing. Thanks. On Wed, Jun 5, 2013 at 11:53 AM, John Griffith wrote: > Not exactly sure what it's tripping up on when using the volume name there, > but I would suggest using the volume-id rather than the name. > > > On Wed, Jun 5, 2013 at 9: