*** fperetti has quit IRC | 00:00 | |
orzel | Isotopp: something like iptables -t nat -A POSTROUTING -o $EXTERNAL_IF -j MASQUERADE / | 00:00 |
---|---|---|
orzel | ? | 00:00 |
orzel | nope :) | 00:00 |
orzel | not said anywhere in the doc | 00:00 |
*** Sir_Desi has joined #openstack | 00:01 | |
*** a_le has quit IRC | 00:01 | |
orzel | lsoares: what should i use for EXTERNAL_IF ? the bridge ? | 00:01 |
lsoares | I'm assuming you want to access an "outside" server, like google.com | 00:01 |
*** a_le has joined #openstack | 00:01 | |
orzel | yes, or even my physical gateway | 00:02 |
lsoares | hold on, your setup might be correct, it's just a matter of configuring your gateway (the host) to forward your stuff outside | 00:02 |
lsoares | oh | 00:02 |
*** Aimon has quit IRC | 00:02 | |
lsoares | well | 00:02 |
*** zerick has quit IRC | 00:02 | |
orzel | the compute node has a classical config (dhcp with another computer on my subnet acting as dhcp server / gateway) | 00:02 |
lsoares | show me a pastebin of your ip ad sh and ip ro sh | 00:02 |
lsoares | and iptables -L -n -v -t nat for good measure | 00:03 |
*** jsidhu has quit IRC | 00:03 | |
lsoares | all three commands on the host | 00:03 |
*** jsidhu has joined #openstack | 00:03 | |
orzel | that's a lot :) | 00:03 |
orzel | http://pastebin.com/gWBhSGcN | 00:03 |
orzel | vnet0 is an openstack vm | 00:04 |
Apsu | lsoares: For reference, you can simplify those a bit. ip a, ip r, iptables -t nat -nvL | 00:04 |
orzel | virbr0 /docker0 are irrelevant here i guess | 00:04 |
*** eghobo has quit IRC | 00:04 | |
orzel | lsoares: br100 links enp2s0 and vnet0 | 00:05 |
*** signed8bit has quit IRC | 00:05 | |
*** eghobo has joined #openstack | 00:05 | |
orzel | (and promisc is there, it seems important) | 00:05 |
*** Sir_Desi has quit IRC | 00:05 | |
Apsu | Also, though it's more terse, iptables [-t $table] -S [$chain] or iptables-save -c [-t $table], both provide the same syntax rules are added with as output. | 00:05 |
*** Trixboxer has quit IRC | 00:06 | |
*** a_le has quit IRC | 00:06 | |
*** mdavidson has quit IRC | 00:06 | |
*** elo1 has quit IRC | 00:06 | |
*** jsidhu_ has joined #openstack | 00:06 | |
lsoares | orzel: can you, from a vm, do ping 10.11.3.3 and 10.11.3.1? | 00:07 |
*** crandquist has joined #openstack | 00:07 | |
orzel | i can ping 10.11.3.3 (host main ip), and 192.168.0.3 (gateway/dhcp server for the vm) | 00:08 |
*** jsidhu has quit IRC | 00:08 | |
orzel | i can't ping 10.11.3.1 | 00:08 |
Apsu | orzel: Btw, you can disable the virbr0 bridge and associated iptables rules (which are just noise) with two commands: virsh net-destroy default; virsh net-autostart --disable default | 00:08 |
orzel | not anything else behind | 00:08 |
*** aimon has joined #openstack | 00:08 | |
lsoares | interesting. Please show me the contents of your FORWARD chain in the filter table | 00:08 |
orzel | lsoares: i'm not as familiar with iptables | 00:09 |
Apsu | Might be useful also to show "sysctl -a | grep forward" just in case a per-interface forwarding flag was disabled even though the global ip_forward flag was enabled. | 00:09 |
orzel | lsoares: this ? http://pastebin.com/fayMQYPB | 00:09 |
*** signed8bit has joined #openstack | 00:09 | |
lsoares | Apsu: ip a and ip r! NICE | 00:10 |
Apsu | orzel: Did you setup those rules yourself? | 00:10 |
orzel | Apsu, lsoares : http://pastebin.com/W98YzRdx | 00:10 |
Apsu | Oh, wait, that's just virbr0 | 00:10 |
Apsu | And docker0 | 00:10 |
*** signed8bit has quit IRC | 00:10 | |
orzel | Apsu: nope | 00:10 |
Apsu | So pretty much all noise. | 00:10 |
Apsu | lsoares: "ip l" too :) | 00:10 |
*** angryjesters has joined #openstack | 00:10 | |
*** fidevo has quit IRC | 00:11 | |
*** jsidhu_ has quit IRC | 00:11 | |
*** signed8bit has joined #openstack | 00:11 | |
orzel | mm.. at least i'll have learnt some ip commands :) | 00:11 |
*** signed8bit has quit IRC | 00:11 | |
lsoares | check if nova-filter-top nova-network-FORWARD and nova-compute-FORWARD are empty. if so, rules 4 and 5 ensure you get your packet through. | 00:12 |
*** dims__ has joined #openstack | 00:12 | |
*** stanchan has quit IRC | 00:12 | |
*** signed8bit has joined #openstack | 00:12 | |
lsoares | you can also try to do a tcpdump -i virbr0 while trying to ping something from the vm | 00:13 |
Apsu | You can also just paste iptables-save -c -t filter, which will help you see the packet counts | 00:13 |
*** claudiub has quit IRC | 00:13 | |
orzel | lsoares: this ? http://pastebin.com/DVdmChe5 | 00:13 |
*** jaypipes has joined #openstack | 00:13 | |
Apsu | Not virbr0, that's the default libvirt network, unrelated to openstack. | 00:13 |
*** dtx00ff has quit IRC | 00:13 | |
Apsu | br100 :) | 00:13 |
lsoares | ohhhh | 00:13 |
lsoares | OHHHH | 00:13 |
lsoares | so | 00:13 |
orzel | (ouch?) | 00:13 |
orzel | i did not do those | 00:13 |
orzel | i swear :) | 00:13 |
Apsu | I know. | 00:13 |
*** dims_ has quit IRC | 00:14 | |
Apsu | orzel: You can disable the virbr0 bridge and associated iptables rules (which are just noise) with two commands: virsh net-destroy default; virsh net-autostart --disable default | 00:14 |
orzel | it's not .... dangerous, promessed ? | 00:14 |
Apsu | Nope. | 00:14 |
orzel | done | 00:14 |
lsoares | hm... default policy is still accept, so we're going to need to see those nova-filter, nova-network and nova-compute from the filter table | 00:14 |
lsoares | oh | 00:14 |
Apsu | orzel: Show me "ip a" and "brctl show" | 00:14 |
lsoares | you pasted it already | 00:14 |
lsoares | yea pretty much a blank accept | 00:15 |
orzel | http://pastebin.com/kQQJE153 | 00:15 |
lsoares | ip a is here: http://pastebin.com/gWBhSGcN | 00:15 |
*** dims__ is now known as dims | 00:15 | |
orzel | i can post the whole iptables-save at this point.. | 00:15 |
*** WackoRobie has joined #openstack | 00:15 | |
lsoares | no need I got what I needed | 00:15 |
lsoares | also | 00:16 |
lsoares | your vm ip is 192.168.0.3 ? | 00:16 |
Apsu | orzel: Which IP range is the VM on, and which IP range is the public access? | 00:16 |
orzel | nope the vm ip is 0.2 | 00:16 |
lsoares | because you only have masquerade for 192.168.122.x | 00:16 |
Apsu | No, that's their bridge IP, which means it's the DHCP server | 00:16 |
Apsu | orzel: Which IP range is the VM on, and which IP range is the public access? | 00:16 |
lsoares | he needs masquerade for 192.168.0.0/24 | 00:16 |
orzel | vm stuff is 192.168. and my physical network is 10.11.3.* | 00:16 |
orzel | and yes 192.168.0.3 is the dhcp server | 00:17 |
lsoares | right now you only have masquerade for 192.168.122.0/24, which is the libvirt default stuff | 00:17 |
lsoares | so you can try something like iptables -t nat -A POSTROUTING -s 192.168.0.0/24 \! -d 192.168.122.0/24 -j MASQUERADE | 00:18 |
Apsu | It's not going to do what you want exactly like this. Your default gateway for your VM is going to be 192.168.0.3 | 00:18 |
lsoares | or -d \!, not sure. | 00:18 |
Apsu | Which will hit the bridge, and pop into the host's routing table | 00:18 |
Apsu | Presumably the 10.x gateway is the default route | 00:19 |
orzel | yes gateway for vm is 192.168.0.3 | 00:19 |
Apsu | So it will then get routed back into the bridge interface -- but that won't work. | 00:19 |
orzel | 10.11.3.1 is the physical gateway on my network | 00:19 |
*** fnaval has quit IRC | 00:19 | |
Apsu | Because that's a split-horizon or hairpin routing setup. | 00:19 |
orzel | ouch, you really want to loose me! | 00:19 |
Apsu | Basically, what you need to do is not have enp2s0 in this bridge, and have the 10.x IP directly on enp2s0 | 00:20 |
lsoares | 49 2534 ACCEPT all -- * * 192.168.0.0/20 10.11.3.1 | 00:20 |
lsoares | this is the problem | 00:20 |
*** achampion has joined #openstack | 00:20 | |
Apsu | So that your VM will go -> (routing) br100 -> host -> enp2s0 -> (routing) upstream gateway | 00:20 |
orzel | before playing with openstack enp2s0 was using dhcp and would got 10.11.3.3 | 00:20 |
lsoares | I'm not even sure how you got 49 packets hitting this rule | 00:20 |
*** signed8bit has quit IRC | 00:21 | |
Apsu | orzel: Did you put enp2s0 in br100 and move the IP or did openstack do it for you? | 00:21 |
orzel | i think i did | 00:21 |
Apsu | orzel: Show your nova.conf | 00:21 |
orzel | was specified in doc | 00:21 |
*** mattgriffin has quit IRC | 00:21 | |
Apsu | Well, at least the flat_interface and public_interface and other networking parts | 00:21 |
Apsu | If you've got sensitive bits in there, you can censor or leave them out | 00:22 |
Apsu | Because we can totally fix this :P | 00:22 |
orzel | Apsu: you mean i would need a bridge with only one interface (vnet0) ? | 00:22 |
Apsu | Yep. And the masquerade iptables rule for traffic leaving enp2s0 | 00:22 |
*** ahasenack has quit IRC | 00:22 | |
Apsu | You can't in normal circumstances route out the same interface you routed in from. | 00:22 |
*** rturk|afk is now known as rturk | 00:22 | |
Apsu | Which is what you're trying to do with br100 here. | 00:22 |
Apsu | You can Bridge back into the same port (known as hairpinning), but to route back in requires hairpinning and disabling split-horizon protection | 00:23 |
*** koolhead17 has joined #openstack | 00:23 | |
Apsu | Which is just a bad idea in 99% of cases | 00:23 |
Apsu | Now, you can DNAT reflect off the same interface, but that happens in prerouting | 00:24 |
Apsu | Which is why it works. | 00:24 |
Apsu | What you're attempting to do happens in routing and postrouting, though, which is a no good :) | 00:24 |
orzel | here's 'abridged' nova.conf. I removed few passwed (db,rabbit) and removed all comments http://pastebin.com/EeEWmGMi | 00:24 |
*** andreaturli has quit IRC | 00:25 | |
orzel | Apsu: does the original problem come from the fact that i have only one nic on the host ? | 00:25 |
orzel | it kinda make it harder, right ? | 00:25 |
*** rushiagr has quit IRC | 00:25 | |
Apsu | Ah yes. FlatDHCPManager. Been a few years now.... but iirc, your public_interface=enp2s0 is the issue. Think you'll need it to be public_interface=br100 | 00:25 |
Apsu | Let me go look it up | 00:26 |
orzel | i'm surprised by nework_size=254 | 00:26 |
orzel | ah, no, ok, "private subnet" | 00:27 |
*** xmltok has quit IRC | 00:27 | |
*** xmltok has joined #openstack | 00:27 | |
orzel | actually, i would feel more comfortable having back my original setup, with enps0 getting an ip from dhcp | 00:28 |
orzel | but all doc say not to assign it any ip, only to the bridge | 00:28 |
Apsu | Try setting public_interface=br100, and move the 10.x IP off br100 back onto enp2s0 | 00:28 |
*** katmandoo has quit IRC | 00:29 | |
Apsu | Then make sure you have an iptables rule in the nat table, postrouting chain, with -o enp2s0 -j MASQUERADE | 00:29 |
Apsu | I.e., iptables -t nat -I POSTROUTING -o enp2s0 -j MASQUERADE | 00:29 |
Apsu | After you modify the nova.conf, remove enp2s0 from br100 (brctl delif br100 enp2s0), and move the IP off br100 and onto enp2s0, restart nova-network | 00:30 |
orzel | that means i should add some iptables magic outside from nova ? | 00:30 |
Apsu | iptables -t nat -I POSTROUTING -o enp2s0 -j MASQUERADE, outside of nova, yes. | 00:30 |
*** tbarron has joined #openstack | 00:30 | |
*** yamahata has joined #openstack | 00:30 | |
*** crandquist has quit IRC | 00:30 | |
*** OutBackDingo has joined #openstack | 00:31 | |
*** rmoe has quit IRC | 00:31 | |
*** jsidhu has joined #openstack | 00:31 | |
*** eghobo has quit IRC | 00:31 | |
*** rushiagr has joined #openstack | 00:32 | |
*** orzel has quit IRC | 00:35 | |
*** fnaval has joined #openstack | 00:35 | |
*** syslink has joined #openstack | 00:36 | |
*** gildub has quit IRC | 00:37 | |
*** gildub has joined #openstack | 00:37 | |
*** kitp has quit IRC | 00:37 | |
*** rbak has quit IRC | 00:39 | |
*** leeantho has quit IRC | 00:39 | |
*** annegentle has quit IRC | 00:40 | |
*** mwagner_lap has joined #openstack | 00:40 | |
*** glenc has quit IRC | 00:41 | |
*** jhesketh has quit IRC | 00:41 | |
*** orzel has joined #openstack | 00:41 | |
orzel | oops. sorry. | 00:41 |
orzel | i needed to reconfigure my route too, previous was through br100, not working anymore | 00:42 |
*** rbak has joined #openstack | 00:42 | |
*** glenc has joined #openstack | 00:42 | |
orzel | and i was preempted by baby crying :) | 00:42 |
orzel | back to work | 00:42 |
*** xmltok_ has quit IRC | 00:43 | |
*** xmltok_ has joined #openstack | 00:44 | |
orzel | Apsu: i did what you say. nova.conf changed, enp2s0 out of bridge and has an ip on its own, nova-network restarted | 00:44 |
orzel | and iptable rule added | 00:44 |
Apsu | orzel: See if you can ping the 10.x on enp2s0 from the VM | 00:45 |
Apsu | Then the 10.x upstream gateway | 00:45 |
orzel | i can ping 10.11.3.3 (host) and not 10.11.3.1 (gateway) | 00:45 |
orzel | as before | 00:45 |
orzel | it's slightly worse even : from the vm, i can still ping 192.168.0.3, which is in /etc/resolv.conf | 00:45 |
orzel | but i can't actually resolve | 00:45 |
Apsu | Show me "iptables -t nat -nvL POSTROUTING" | 00:46 |
*** t-nakajima has joined #openstack | 00:46 | |
orzel | ouch, i can't resolve from my own pc :) | 00:46 |
orzel | fixed | 00:46 |
orzel | Apsu: http://pastebin.com/3aY9ZmA0 | 00:46 |
*** Raymii has quit IRC | 00:46 | |
*** lyxus has quit IRC | 00:47 | |
orzel | Apsu: wait, now i can ping google from vm | 00:47 |
orzel | but i got each line twice ("dup") | 00:47 |
Apsu | You've got promiscuous mode on something. Presumably your bridge. | 00:47 |
orzel | i still can't ping 10.11.3.1 | 00:47 |
orzel | though. weird | 00:47 |
*** rmoe has joined #openstack | 00:47 | |
orzel | bridge has promiscuous, yes | 00:47 |
Apsu | Yep, disable it | 00:47 |
orzel | it's asked everywhere | 00:47 |
*** jsidhu has quit IRC | 00:47 | |
*** rodrigods_ has joined #openstack | 00:48 | |
*** t-nakajima has quit IRC | 00:48 | |
*** mgiampapa has quit IRC | 00:48 | |
Apsu | ip l s dev br100 promisc off | 00:48 |
Apsu | Make sure it's not on enp2s0 either | 00:48 |
orzel | i was googling :) | 00:48 |
orzel | done. | 00:48 |
*** katmandoo has joined #openstack | 00:49 | |
orzel | ip a | grep prom -i -> returns nothing | 00:49 |
*** yano has quit IRC | 00:49 | |
orzel | ping google now perfect | 00:49 |
Apsu | There we go. | 00:49 |
Apsu | :D | 00:49 |
*** balajiiyer has joined #openstack | 00:49 | |
orzel | it's still weird somehow. i can't ping 10.11.3.1 form the vm | 00:49 |
orzel | i can from the host | 00:49 |
*** balajiiyer has quit IRC | 00:50 | |
orzel | ah, there's some weird route though | 00:50 |
Apsu | On the host? | 00:50 |
*** Raymii has joined #openstack | 00:50 | |
*** rwsu has quit IRC | 00:51 | |
Apsu | orzel: Show me "ip a; ip r; brctl show", now :) | 00:51 |
*** kordless_ has quit IRC | 00:51 | |
orzel | the famous one | 00:51 |
*** kordless has joined #openstack | 00:52 | |
orzel | http://pastebin.com/dBCsrDXy | 00:52 |
*** pheadron has quit IRC | 00:52 | |
orzel | er, wait | 00:52 |
orzel | nova-network shuffled it all no ? | 00:52 |
*** rbak has quit IRC | 00:52 | |
*** farsonic has joined #openstack | 00:53 | |
Apsu | Apparently it did shuffle it all again. | 00:53 |
Apsu | There's another option, with this config, that might work. | 00:53 |
Apsu | Can try it | 00:54 |
*** pheadron has joined #openstack | 00:54 | |
*** AnilV4 has quit IRC | 00:54 | |
farsonic | anyone able to assist with how I access nova API from external hosts | 00:54 |
Apsu | orzel: Add an iptables postrouting masquerade rule, but this time instead of -o enp2s0, use -m physdev --physdev-out enp2s0 | 00:55 |
farsonic | when I communicate to my openstack server through an external NAT device I can authenticate to Keystone but the subsequent requests from nova come from the internal address | 00:55 |
farsonic | which isn't routable | 00:55 |
*** kordless has quit IRC | 00:55 | |
*** kordless has joined #openstack | 00:55 | |
Apsu | orzel: i.e., iptables -t nat -I POSTROUTING -m physdev --physdev-out enp2s0 -j MASQUERADE | 00:55 |
*** rodrigods_ has quit IRC | 00:55 | |
orzel | Apsu: i delete the previous one ? | 00:56 |
Apsu | orzel: You can, doesn't matter, so long as the new rule is above the old one, just to test it out | 00:56 |
*** rturk is now known as rturk|afk | 00:56 | |
orzel | done | 00:56 |
*** ajc_ has joined #openstack | 00:57 | |
orzel | doesn't change much. i can still ping google but not my gateway | 00:57 |
*** kordless has quit IRC | 00:57 | |
*** AnilV4 has joined #openstack | 00:57 | |
Apsu | orzel: Did you set physical_interface=br100 in nova.conf on this node before you restarted nova-network? | 00:57 |
orzel | Apsu: it feels strange to have an iptable. My setup is supposed to be ... common, no ? nova-network should manage to handle it... nope ? | 00:57 |
Apsu | Rather, public_interface= | 00:58 |
orzel | Apsu: public_interface=br100 yes, before restarting | 00:58 |
Apsu | Wait... I forgot... nova-network lets you specify information about interfaces when you create the network | 00:58 |
Apsu | Uhm... nova network-show $networkname? | 00:58 |
*** starmer has joined #openstack | 00:58 | |
Apsu | (network-list to list 'em) | 00:59 |
orzel | "Woah, you have reached your paste limit of 10 pastes per 24 hours. Either wait a litte or sign up for a free account to get higher limits." | 01:00 |
orzel | :) | 01:00 |
*** jhesketh_ has joined #openstack | 01:00 | |
orzel | http://dpaste.com/3554W3D/ | 01:00 |
Apsu | There it is. bridge_interface=enp2s0 | 01:01 |
*** jhesketh_ has quit IRC | 01:01 | |
*** jhesketh has joined #openstack | 01:01 | |
*** pheadron has quit IRC | 01:01 | |
*** cjellick has quit IRC | 01:02 | |
*** cjellick has joined #openstack | 01:03 | |
orzel | there's also flat_interface=enp2s0 | 01:03 |
orzel | in nova.conf | 01:03 |
farsonic | ok, looks like I need to define public_url | 01:03 |
*** crandquist has joined #openstack | 01:03 | |
Apsu | orzel: Yeah, I think that needs to be br100 too, to do things a bit differently. But on the other hand... your setup seems to work at present, minus not talking to the gateway. *can* you ping the gateway from the host, even? | 01:04 |
*** tomoe_ has quit IRC | 01:04 | |
Apsu | orzel: It's possible ICMP is just blocked on your gateway :P | 01:04 |
orzel | i can from the host, yes | 01:04 |
orzel | (first thing i tried) | 01:04 |
Apsu | Fun | 01:04 |
Apsu | Uhm... | 01:04 |
*** ericReeves has quit IRC | 01:04 | |
*** sputnik13 has quit IRC | 01:05 | |
*** fnaval has quit IRC | 01:05 | |
Apsu | What's sysctl -a | grep call, show? There should be three nf_call_iptables type flags, are they 0 or 1? | 01:05 |
*** fnaval has joined #openstack | 01:05 | |
orzel | all three are set to '1' | 01:05 |
Apsu | Alrighty | 01:06 |
*** crandquist is now known as kobier | 01:06 | |
*** amcrn has quit IRC | 01:07 | |
*** cjellick has quit IRC | 01:07 | |
*** pheadron has joined #openstack | 01:08 | |
*** rmoe has quit IRC | 01:08 | |
*** loki27_ has quit IRC | 01:08 | |
orzel | Apsu: pff.. i got another huge problem. I kinda started to config neutron. Didn't go much after declaring the service in keystone | 01:08 |
orzel | but now horizon is all fool about network, even though i've removed the service since | 01:09 |
orzel | ouch, i can't connect to horizon anymore | 01:09 |
orzel | !# | 01:09 |
openstack | orzel: Error: "#" is not a valid command. | 01:09 |
orzel | hi bot | 01:10 |
*** rbak has joined #openstack | 01:10 | |
*** _cjones_ has quit IRC | 01:10 | |
*** bfschott has joined #openstack | 01:10 | |
*** _cjones_ has joined #openstack | 01:11 | |
*** gildub has quit IRC | 01:11 | |
*** froes has joined #openstack | 01:12 | |
*** gildub has joined #openstack | 01:12 | |
*** gildub has quit IRC | 01:13 | |
*** jareddlc has quit IRC | 01:13 | |
*** pheadron has quit IRC | 01:14 | |
*** lborda has quit IRC | 01:14 | |
*** pheadron has joined #openstack | 01:15 | |
*** _cjones_ has quit IRC | 01:15 | |
*** rturk|afk is now known as rturk | 01:16 | |
*** rbak has quit IRC | 01:16 | |
*** galstrom_zzz is now known as galstrom | 01:16 | |
*** yaguang has joined #openstack | 01:19 | |
*** rwatsh has quit IRC | 01:19 | |
*** rmoe has joined #openstack | 01:20 | |
*** a_le has joined #openstack | 01:22 | |
*** shibby has quit IRC | 01:22 | |
*** loki27_ has joined #openstack | 01:23 | |
*** badiane_ka has quit IRC | 01:24 | |
*** morazi has quit IRC | 01:25 | |
*** yamahata has quit IRC | 01:26 | |
*** yamahata has joined #openstack | 01:27 | |
*** angdraug has quit IRC | 01:27 | |
*** vfiduccia has quit IRC | 01:31 | |
*** rosmaita has quit IRC | 01:34 | |
*** toanster has quit IRC | 01:34 | |
*** nikhil__ has quit IRC | 01:34 | |
*** Guest4637 has quit IRC | 01:34 | |
*** toanster has joined #openstack | 01:35 | |
*** nikhil__ has joined #openstack | 01:35 | |
*** rfolco has quit IRC | 01:36 | |
*** esheffie1d has joined #openstack | 01:36 | |
orzel | Apsu: fixed. the bad bits were stored in the cookies... :/ | 01:36 |
*** andrew has joined #openstack | 01:36 | |
*** fbo_away is now known as fbo | 01:37 | |
*** andrew has left #openstack | 01:37 | |
*** engkur has joined #openstack | 01:37 | |
*** rturk is now known as rturk|afk | 01:37 | |
*** ajc_ has quit IRC | 01:38 | |
*** coolsvap is now known as coolsvap|afk | 01:38 | |
*** vicky has joined #openstack | 01:38 | |
*** kitp has joined #openstack | 01:38 | |
orzel | apsu : according to https://wiki.openstack.org/wiki/UnderstandingFlatNetworking | 01:38 |
*** vicky has quit IRC | 01:38 | |
orzel | it's supposed to work with only one nic on compute node | 01:38 |
*** kobier has quit IRC | 01:38 | |
*** froes has quit IRC | 01:39 | |
orzel | Apsu: i removed the masquerading rules (both -o enp2s0 and -m physdev) | 01:40 |
orzel | and my vm can still ping | 01:40 |
*** caleb_ has joined #openstack | 01:40 | |
orzel | (google, that is) | 01:40 |
*** toanster has quit IRC | 01:40 | |
*** rosmaita has joined #openstack | 01:41 | |
*** toanster has joined #openstack | 01:41 | |
*** vkmc has joined #openstack | 01:42 | |
*** _cjones_ has joined #openstack | 01:42 | |
orzel | could it be than only changing the nova.conf:public_interface did it ? | 01:42 |
*** victor_lowther has quit IRC | 01:42 | |
*** kitp has quit IRC | 01:42 | |
*** gildub has joined #openstack | 01:44 | |
*** victor_lowther has joined #openstack | 01:45 | |
*** nosnos has joined #openstack | 01:46 | |
*** ajc_ has joined #openstack | 01:46 | |
*** tomoe_ has joined #openstack | 01:48 | |
*** balajiiyer has joined #openstack | 01:48 | |
*** neoXsys has quit IRC | 01:49 | |
*** drankis has joined #openstack | 01:49 | |
*** _cjones_ has quit IRC | 01:50 | |
*** erkules has quit IRC | 01:51 | |
*** vicky has joined #openstack | 01:52 | |
*** blomquisg has quit IRC | 01:52 | |
orzel | Apsu, lsoares : gotta go. Thanks a lot for your help and your time ! | 01:53 |
*** samchoi has quit IRC | 01:54 | |
*** Aimon_ has quit IRC | 01:55 | |
*** mwichmann has joined #openstack | 01:55 | |
*** Aimon_ has joined #openstack | 01:56 | |
*** melwitt has quit IRC | 01:57 | |
*** drankis has quit IRC | 01:58 | |
monotreme_man | i'm installing icehouse and am up to testing the glance installation. when i try to do a "glance image-create", it fails with a "2014-06-04 16:09:24.498 3790 WARNING keystone.common.wsgi [-] Authorization failed. The request you have made requires authentication. from 10.0.20.11" (from the keystone.log). i've checked the glance .conf files (for keystone_authtoken) and they seem correct. any suggestions on what to do next? | 01:58 |
*** bmurt has quit IRC | 02:01 | |
*** kitp has joined #openstack | 02:02 | |
*** pheadron has quit IRC | 02:02 | |
*** neoXsys has joined #openstack | 02:03 | |
*** troya has joined #openstack | 02:04 | |
troya | anyone have experience in copy cinde storage service ? | 02:05 |
*** jmckind has quit IRC | 02:05 | |
*** farsonic has quit IRC | 02:06 | |
*** puzzled has quit IRC | 02:07 | |
*** jcook has joined #openstack | 02:07 | |
*** ashwini_ has quit IRC | 02:09 | |
*** ashwini has joined #openstack | 02:09 | |
*** shibby has joined #openstack | 02:09 | |
*** AnilV4 has quit IRC | 02:09 | |
*** orzel has quit IRC | 02:13 | |
*** thangp has joined #openstack | 02:14 | |
*** AnilV4 has joined #openstack | 02:15 | |
*** Yorkfly has joined #openstack | 02:16 | |
*** fbo is now known as fbo_away | 02:16 | |
*** devlaps has quit IRC | 02:17 | |
*** ammini has quit IRC | 02:17 | |
*** balajiiyer has quit IRC | 02:18 | |
*** a_le has quit IRC | 02:19 | |
*** zz_gondoi is now known as gondoi | 02:19 | |
*** jlsheehan has joined #openstack | 02:20 | |
*** mwichmann has quit IRC | 02:21 | |
*** penguinRaider has quit IRC | 02:21 | |
*** penguinRaider has joined #openstack | 02:23 | |
*** spandhe has quit IRC | 02:25 | |
*** monotreme_man has quit IRC | 02:25 | |
*** jlsheehan has quit IRC | 02:25 | |
*** baprath has joined #openstack | 02:28 | |
*** galstrom is now known as galstrom_zzz | 02:28 | |
*** gondoi is now known as zz_gondoi | 02:30 | |
*** penguinRaider has quit IRC | 02:31 | |
*** WackoRobie has quit IRC | 02:32 | |
*** jguthrie_ has quit IRC | 02:32 | |
*** yano has joined #openstack | 02:32 | |
*** WackoRobie has joined #openstack | 02:33 | |
*** xianghui has joined #openstack | 02:33 | |
*** bsdgeek has quit IRC | 02:35 | |
*** drussell has joined #openstack | 02:36 | |
*** Zack_Deee has joined #openstack | 02:37 | |
*** bsdgeek has joined #openstack | 02:37 | |
*** jguthrie has joined #openstack | 02:37 | |
*** achampion has quit IRC | 02:37 | |
*** Zack_Deee has quit IRC | 02:37 | |
*** signed8bit has joined #openstack | 02:37 | |
*** WackoRobie has quit IRC | 02:37 | |
*** Zack_Deee has joined #openstack | 02:37 | |
*** katmandoo has quit IRC | 02:39 | |
*** galstrom_zzz is now known as galstrom | 02:40 | |
*** gkeller2 has quit IRC | 02:43 | |
*** jguthrie has quit IRC | 02:43 | |
*** signed8bit has quit IRC | 02:45 | |
*** mattgriffin has joined #openstack | 02:46 | |
*** _cjones_ has joined #openstack | 02:47 | |
*** bmurt has joined #openstack | 02:48 | |
*** mattgriffin has quit IRC | 02:50 | |
*** mattgriffin has joined #openstack | 02:50 | |
*** mberlin has joined #openstack | 02:51 | |
*** drussell has quit IRC | 02:51 | |
*** badiane_ka has joined #openstack | 02:51 | |
*** aveek has joined #openstack | 02:51 | |
*** _cjones_ has quit IRC | 02:52 | |
*** Zack_Deee has quit IRC | 02:52 | |
*** mberlin1 has quit IRC | 02:52 | |
*** achampion has joined #openstack | 02:52 | |
*** Warped has quit IRC | 02:52 | |
*** ramishra has joined #openstack | 02:53 | |
*** dims has quit IRC | 02:53 | |
*** drussell has joined #openstack | 02:54 | |
*** brutal_lobster has quit IRC | 02:54 | |
*** hs634 has quit IRC | 02:54 | |
*** baprath has quit IRC | 02:54 | |
*** dims has joined #openstack | 02:55 | |
*** brutal_lobster has joined #openstack | 02:56 | |
*** katmandoo has joined #openstack | 02:56 | |
*** Abhijeet has joined #openstack | 02:56 | |
*** matiu has joined #openstack | 03:01 | |
*** matiu has quit IRC | 03:01 | |
*** matiu has joined #openstack | 03:01 | |
*** dtx00ff has joined #openstack | 03:01 | |
*** pballand has joined #openstack | 03:02 | |
*** suresh12 has quit IRC | 03:02 | |
*** blackboxsw has quit IRC | 03:02 | |
*** suresh12 has joined #openstack | 03:03 | |
*** Sir_Desi has joined #openstack | 03:03 | |
*** paragan has joined #openstack | 03:04 | |
*** paragan has quit IRC | 03:04 | |
*** paragan has joined #openstack | 03:04 | |
*** yocum has quit IRC | 03:06 | |
*** Zack_Deee has joined #openstack | 03:07 | |
*** Sir_Desi has quit IRC | 03:08 | |
*** arnaud has quit IRC | 03:10 | |
*** kitp has quit IRC | 03:11 | |
*** mmichie has joined #openstack | 03:11 | |
*** sballe has joined #openstack | 03:11 | |
*** bmurt has quit IRC | 03:13 | |
*** coolsvap|afk is now known as coolsvap | 03:13 | |
*** cannonball has quit IRC | 03:15 | |
*** ayoung has quit IRC | 03:16 | |
*** crandquist has joined #openstack | 03:16 | |
*** thangp has quit IRC | 03:17 | |
*** lori|away is now known as lori | 03:18 | |
*** gcheng has quit IRC | 03:18 | |
*** ajc_ has quit IRC | 03:22 | |
*** sballe has quit IRC | 03:26 | |
*** vkmc has quit IRC | 03:26 | |
*** sballe has joined #openstack | 03:27 | |
*** fnaval has quit IRC | 03:28 | |
*** achampio1 has joined #openstack | 03:29 | |
*** bfschott has quit IRC | 03:30 | |
*** achampion has quit IRC | 03:32 | |
*** kushal has joined #openstack | 03:32 | |
*** ranger81 has quit IRC | 03:32 | |
*** talluri has joined #openstack | 03:33 | |
*** jaypipes has quit IRC | 03:33 | |
*** dtx00ff has quit IRC | 03:34 | |
*** n0n3 has quit IRC | 03:34 | |
*** jcook has quit IRC | 03:36 | |
*** a_le has joined #openstack | 03:36 | |
*** a_le has quit IRC | 03:36 | |
*** a_le has joined #openstack | 03:36 | |
*** theRealGent has joined #openstack | 03:38 | |
*** kenhui has joined #openstack | 03:38 | |
*** dims_ has joined #openstack | 03:39 | |
*** dims has quit IRC | 03:39 | |
*** Sri_Designer has quit IRC | 03:40 | |
*** Sri_Designer has joined #openstack | 03:41 | |
*** gigawhat has joined #openstack | 03:41 | |
*** eYAsv has joined #openstack | 03:41 | |
*** kitp has joined #openstack | 03:41 | |
*** cody-somerville has quit IRC | 03:42 | |
*** nosnos has quit IRC | 03:43 | |
*** sballe has quit IRC | 03:43 | |
*** kenhui has quit IRC | 03:44 | |
*** OutBackDingo has quit IRC | 03:44 | |
*** eghobo has joined #openstack | 03:45 | |
*** jcook has joined #openstack | 03:46 | |
*** kitp has quit IRC | 03:46 | |
*** StarBeast has joined #openstack | 03:46 | |
*** dooks has joined #openstack | 03:46 | |
*** reed has quit IRC | 03:47 | |
*** dooks has left #openstack | 03:48 | |
*** stanchan has joined #openstack | 03:48 | |
*** spandhe has joined #openstack | 03:49 | |
*** galstrom is now known as galstrom_zzz | 03:53 | |
*** gigawhat has quit IRC | 03:53 | |
*** kbrierly has quit IRC | 03:53 | |
*** crandquist is now known as kobier | 03:54 | |
*** mmichie has quit IRC | 03:54 | |
*** kbrierly has joined #openstack | 03:55 | |
*** pballand has quit IRC | 03:55 | |
*** _cjones_ has joined #openstack | 03:55 | |
*** jcook has quit IRC | 03:55 | |
*** ArcTanSusan has quit IRC | 03:56 | |
troya | anyone know about cinder ? | 03:56 |
*** pballand has joined #openstack | 03:56 | |
*** whenry has quit IRC | 03:57 | |
*** theRealGent has quit IRC | 03:57 | |
*** Zack_Deee has quit IRC | 03:58 | |
*** erkules has joined #openstack | 03:58 | |
*** Zack_Deee has joined #openstack | 03:59 | |
*** _cjones_ has quit IRC | 04:00 | |
*** kobier has quit IRC | 04:02 | |
*** eharney has quit IRC | 04:04 | |
*** neeta has quit IRC | 04:06 | |
*** mandira has quit IRC | 04:06 | |
*** harlowja is now known as harlowja_away | 04:07 | |
*** suresh12 has quit IRC | 04:13 | |
*** r3pl4y has quit IRC | 04:15 | |
*** renlt has joined #openstack | 04:15 | |
*** mgiampapa has joined #openstack | 04:15 | |
*** gigawhat has joined #openstack | 04:18 | |
*** aniket has joined #openstack | 04:19 | |
*** StarBeast has quit IRC | 04:20 | |
*** dims_ has quit IRC | 04:20 | |
*** bocaneri has joined #openstack | 04:21 | |
*** engkur has quit IRC | 04:21 | |
*** sumanth has joined #openstack | 04:22 | |
*** dguitarbite has joined #openstack | 04:25 | |
*** sballe has joined #openstack | 04:25 | |
*** dguitarbite_ has joined #openstack | 04:26 | |
*** mikeoutland has quit IRC | 04:26 | |
*** anand_ts has joined #openstack | 04:28 | |
*** gigawhat has quit IRC | 04:28 | |
*** Longgeek has joined #openstack | 04:28 | |
*** eghobo has quit IRC | 04:30 | |
*** eghobo has joined #openstack | 04:31 | |
*** sballe has quit IRC | 04:32 | |
*** comptona has quit IRC | 04:34 | |
*** cody-somerville has joined #openstack | 04:35 | |
*** krypto has joined #openstack | 04:35 | |
*** jcoufal has joined #openstack | 04:36 | |
*** engkur has joined #openstack | 04:36 | |
*** TnG has joined #openstack | 04:37 | |
*** matsuhashi has joined #openstack | 04:39 | |
*** psharma has joined #openstack | 04:41 | |
*** nosnos has joined #openstack | 04:41 | |
*** kitp has joined #openstack | 04:42 | |
*** n0n3 has joined #openstack | 04:43 | |
*** dtx00ff has joined #openstack | 04:43 | |
*** ajc_ has joined #openstack | 04:44 | |
*** pballand has quit IRC | 04:45 | |
*** Zack_Deee has quit IRC | 04:45 | |
*** engkur has quit IRC | 04:45 | |
*** rmartinelli has quit IRC | 04:46 | |
*** renlt has quit IRC | 04:46 | |
*** kitp has quit IRC | 04:47 | |
*** engkur has joined #openstack | 04:49 | |
*** Zack_Deee has joined #openstack | 04:49 | |
*** ranger81 has joined #openstack | 04:50 | |
*** troya has quit IRC | 04:50 | |
*** troya has joined #openstack | 04:50 | |
*** rmartinelli has joined #openstack | 04:51 | |
*** mdim has joined #openstack | 04:52 | |
mdim | Hi all! I'm trying to follow instructions from http://docs.openstack.org/icehouse/install-guide/install/apt-debian/content/ch_glance.html to set up Glance. I have Keystone, and during installation of Glance, I've selected Keystone as a caching type | 04:53 |
mdim | however, when I run "glance image-list", I get: "Request returned failure status. Invalid OpenStack Identity credentials." | 04:54 |
mdim | any clue why? | 04:54 |
mdim | Keystone works normally | 04:54 |
*** vijaykakkar has quit IRC | 04:54 | |
*** eguz has joined #openstack | 04:55 | |
*** kashyapk has joined #openstack | 04:56 | |
*** engkur has quit IRC | 04:56 | |
*** kashyapk_ has joined #openstack | 04:57 | |
*** eghobo has quit IRC | 04:58 | |
*** dtx00ff_ has joined #openstack | 04:59 | |
*** yamamoto_ has joined #openstack | 05:00 | |
*** kashyapk has quit IRC | 05:00 | |
*** k4n0 has joined #openstack | 05:02 | |
*** dtx00ff has quit IRC | 05:03 | |
*** gildub has quit IRC | 05:03 | |
*** mgiampapa has quit IRC | 05:03 | |
*** gildub has joined #openstack | 05:03 | |
*** eghobo has joined #openstack | 05:04 | |
*** engkur has joined #openstack | 05:04 | |
*** jlsheehan has joined #openstack | 05:04 | |
*** eguz has quit IRC | 05:04 | |
*** eghobo has quit IRC | 05:04 | |
*** eghobo has joined #openstack | 05:05 | |
*** Longgeek has quit IRC | 05:06 | |
*** Longgeek has joined #openstack | 05:07 | |
*** aeperezt has quit IRC | 05:07 | |
*** n0n3 has quit IRC | 05:08 | |
*** fester05 has quit IRC | 05:09 | |
*** sam__ has joined #openstack | 05:10 | |
*** eguz has joined #openstack | 05:10 | |
*** eguz has quit IRC | 05:10 | |
*** eguz has joined #openstack | 05:11 | |
*** neeti has joined #openstack | 05:11 | |
*** eghobo has quit IRC | 05:11 | |
*** Abhijeet has quit IRC | 05:13 | |
*** Abhijeet has joined #openstack | 05:13 | |
*** Yorkfly has quit IRC | 05:14 | |
*** bdpayne has joined #openstack | 05:15 | |
*** jlsheehan has quit IRC | 05:16 | |
*** StarBeast has joined #openstack | 05:16 | |
*** dguitarbite has quit IRC | 05:20 | |
*** dguitarbite_ has quit IRC | 05:20 | |
*** StarBeast has quit IRC | 05:21 | |
*** Kbee has joined #openstack | 05:21 | |
*** caleb_ has quit IRC | 05:22 | |
*** jtomasek has joined #openstack | 05:23 | |
*** katmandoo has quit IRC | 05:23 | |
*** amit_ has joined #openstack | 05:24 | |
*** suresh12 has joined #openstack | 05:24 | |
*** Warped has joined #openstack | 05:25 | |
*** Aimon_ has quit IRC | 05:26 | |
*** Aimon_ has joined #openstack | 05:26 | |
*** Kbee has quit IRC | 05:27 | |
*** suresh12 has quit IRC | 05:29 | |
*** marun_afk is now known as marun | 05:29 | |
*** jlsheehan has joined #openstack | 05:30 | |
*** Aimon_ has quit IRC | 05:30 | |
*** Aimon_ has joined #openstack | 05:31 | |
*** bfschott has joined #openstack | 05:31 | |
*** Aimon_ has quit IRC | 05:32 | |
*** Aimon__ has joined #openstack | 05:32 | |
*** Aimon__ has quit IRC | 05:33 | |
*** Aimon_ has joined #openstack | 05:33 | |
*** melmoth has joined #openstack | 05:34 | |
*** Aimon_ has quit IRC | 05:34 | |
*** Aimon_ has joined #openstack | 05:34 | |
*** Aimon_ has quit IRC | 05:35 | |
*** Aimon__ has joined #openstack | 05:35 | |
*** bfschott has quit IRC | 05:35 | |
*** Aimon_ has joined #openstack | 05:36 | |
*** jeffrey4l has joined #openstack | 05:36 | |
*** eskp has left #openstack | 05:36 | |
*** Thumper650 has joined #openstack | 05:36 | |
*** Aimon_ has quit IRC | 05:36 | |
*** simon-AS559 has joined #openstack | 05:36 | |
*** Aimon_ has joined #openstack | 05:37 | |
*** n0n3 has joined #openstack | 05:37 | |
*** a_le has quit IRC | 05:37 | |
*** coolsvap is now known as coolsvap|afk | 05:38 | |
*** Aimon_ has quit IRC | 05:38 | |
*** simon-AS5591 has joined #openstack | 05:38 | |
*** Aimon_ has joined #openstack | 05:38 | |
*** nkhare has joined #openstack | 05:39 | |
*** Aimon__ has quit IRC | 05:39 | |
*** Aimon_ has quit IRC | 05:39 | |
*** Aimon_ has joined #openstack | 05:40 | |
*** jlsheehan has quit IRC | 05:40 | |
*** fester05 has joined #openstack | 05:40 | |
*** simon-AS559 has quit IRC | 05:41 | |
*** Aimon_ has quit IRC | 05:42 | |
*** Aimon_ has joined #openstack | 05:42 | |
*** mdim has quit IRC | 05:43 | |
*** Aimon_ has quit IRC | 05:43 | |
*** a_le has joined #openstack | 05:43 | |
*** Aimon__ has joined #openstack | 05:43 | |
*** kitp has joined #openstack | 05:43 | |
*** jlsheehan has joined #openstack | 05:44 | |
*** Aimon_ has joined #openstack | 05:44 | |
*** mischief has quit IRC | 05:44 | |
*** Aimon_ has quit IRC | 05:44 | |
*** fester05 has quit IRC | 05:44 | |
*** Aimon_ has joined #openstack | 05:45 | |
*** n0n3 has quit IRC | 05:45 | |
*** n0n3 has joined #openstack | 05:45 | |
*** sam__ has quit IRC | 05:45 | |
*** mrunge has joined #openstack | 05:46 | |
*** Aimon___ has joined #openstack | 05:46 | |
*** mrunge has quit IRC | 05:47 | |
*** Aimon__ has quit IRC | 05:47 | |
*** Aimon____ has joined #openstack | 05:47 | |
*** sam__ has joined #openstack | 05:47 | |
*** Aimon____ has quit IRC | 05:48 | |
*** kitp has quit IRC | 05:48 | |
*** Aimon__ has joined #openstack | 05:48 | |
*** Thumper650 has left #openstack | 05:48 | |
*** Aimon__ has quit IRC | 05:49 | |
*** Aimon_ has quit IRC | 05:49 | |
*** Aimon_ has joined #openstack | 05:49 | |
*** dexter_morgan has joined #openstack | 05:50 | |
*** Aimon_ has quit IRC | 05:50 | |
dexter_morgan | hi all | 05:50 |
dexter_morgan | i have created two network and each network has an instance | 05:50 |
*** nshaikh has joined #openstack | 05:50 | |
dexter_morgan | but instance is not not able to ping its gateway | 05:50 |
*** Aimon___ has quit IRC | 05:50 | |
*** gugl has quit IRC | 05:51 | |
*** mdenny has quit IRC | 05:51 | |
dexter_morgan | i have installed ciorros os on each instances | 05:51 |
dexter_morgan | but the are not communicating | 05:51 |
dexter_morgan | please suggest | 05:51 |
*** gugl has joined #openstack | 05:51 | |
*** arnaud has joined #openstack | 05:51 | |
*** mdenny has joined #openstack | 05:51 | |
*** nlevinki has joined #openstack | 05:51 | |
*** coolsvap|afk is now known as coolsvap | 05:52 | |
*** shibby has quit IRC | 05:52 | |
*** sam___ has joined #openstack | 05:52 | |
*** sam__ has quit IRC | 05:53 | |
*** jsidhu has joined #openstack | 05:54 | |
*** simon-AS5591 has quit IRC | 05:55 | |
*** ranger81 has quit IRC | 05:55 | |
*** jcoufal has quit IRC | 05:56 | |
*** jlsheehan has quit IRC | 05:57 | |
*** a_le has quit IRC | 05:57 | |
*** StarBeast has joined #openstack | 05:58 | |
*** epcim has joined #openstack | 05:58 | |
*** deepakcs has joined #openstack | 06:02 | |
*** evanz has quit IRC | 06:02 | |
*** D30 has joined #openstack | 06:04 | |
*** gyee has quit IRC | 06:04 | |
*** CaptTofu has quit IRC | 06:04 | |
*** mehdi has quit IRC | 06:05 | |
*** comay has quit IRC | 06:05 | |
*** mrunge has joined #openstack | 06:06 | |
*** mancdaz has quit IRC | 06:06 | |
*** soosfarm has quit IRC | 06:06 | |
*** harmw has quit IRC | 06:06 | |
*** shengyao has quit IRC | 06:06 | |
*** Svedrin has quit IRC | 06:06 | |
*** CaptTofu has joined #openstack | 06:06 | |
*** amit_ has quit IRC | 06:06 | |
*** shengyao has joined #openstack | 06:07 | |
*** pravins has joined #openstack | 06:07 | |
*** harmw has joined #openstack | 06:07 | |
*** mehdi has joined #openstack | 06:07 | |
*** soosfarm has joined #openstack | 06:07 | |
*** mancdaz has joined #openstack | 06:08 | |
*** flaper87|afk is now known as flaper87 | 06:08 | |
*** sayan has joined #openstack | 06:09 | |
*** Svedrin has joined #openstack | 06:10 | |
troya | anyone know about cinder ? | 06:13 |
*** peret has joined #openstack | 06:13 | |
*** dtx00ff has joined #openstack | 06:13 | |
dexter_morgan | cinder is basically help to create secondary storage | 06:14 |
*** marun is now known as marun_afk | 06:14 | |
deepakcs | Anyone has any tips on how to troubeshoot when nova boot... gets stuck in 'spawning' state forever ? | 06:14 |
deepakcs | I am in a devstack setup, and I don't see any errors in n-cpu screen/log | 06:14 |
deepakcs | Is it possible to get stuck if disk space is low (I have around 4.5G free) | 06:15 |
*** dtx00ff_ has quit IRC | 06:16 | |
*** Zack_Dee_ has joined #openstack | 06:16 | |
deepakcs | troya, Cinder is block storage as a service component of openstack. Check http://docs.openstack.org/user-guide/content/ for more details | 06:16 |
*** renlt has joined #openstack | 06:16 | |
deepakcs | troya, https://wiki.openstack.org/wiki/Cinder would be good place to begin with too | 06:17 |
*** giorgiodinapoli has quit IRC | 06:17 | |
*** Zack_Deee has quit IRC | 06:17 | |
troya | deepakcs: is it need specify partition to create it ? | 06:17 |
*** nacer has joined #openstack | 06:18 | |
troya | is possible to create it with partioion which same with system ? | 06:18 |
deepakcs | troya, it depends on what storage backend (LVM is default) u want to use with cinder. You can specify the backend using /etc/cinder/cinder.conf file. | 06:19 |
deepakcs | troya, you don't create Cinder, you use it, with the different storage backends it supports | 06:19 |
troya | yes, i want to use LVM | 06:19 |
troya | so i need different partioion. not same on system partiotion, right ? | 06:19 |
*** dguitarbite has joined #openstack | 06:19 | |
*** jsidhu_ has joined #openstack | 06:19 | |
*** jsidhu has quit IRC | 06:20 | |
*** paraa has joined #openstack | 06:21 | |
dexter_morgan | instances can not ping their gateway ip?? please help | 06:21 |
*** tomoe_ has quit IRC | 06:22 | |
*** jsidhu_ has quit IRC | 06:24 | |
*** simon-AS559 has joined #openstack | 06:25 | |
troya | deepakcs: is in cinder also store vm and data inside it ? | 06:25 |
*** jsidhu has joined #openstack | 06:26 | |
deepakcs | troya, per openstack rules, cinder volumes is used to store data. VM image is taken from glance service | 06:26 |
troya | i mean instance | 06:26 |
*** harlowja_at_home has joined #openstack | 06:27 | |
troya | is if i created instance, then it will store on cinder incude the data inside instance too ? | 06:27 |
*** Zack_Deee has joined #openstack | 06:27 | |
*** Longgeek has quit IRC | 06:27 | |
*** Zack_Dee_ has quit IRC | 06:27 | |
*** kashyapk_ has quit IRC | 06:28 | |
*** jprovazn has joined #openstack | 06:29 | |
*** kashyapk has joined #openstack | 06:29 | |
*** sputnik13 has joined #openstack | 06:29 | |
*** paraa has quit IRC | 06:31 | |
*** tshefi has joined #openstack | 06:32 | |
*** ttrumm has joined #openstack | 06:32 | |
*** omachace has joined #openstack | 06:32 | |
*** kashyapk has quit IRC | 06:33 | |
*** jsidhu_ has joined #openstack | 06:33 | |
*** anande has joined #openstack | 06:34 | |
*** peret has quit IRC | 06:34 | |
*** jsidhu has quit IRC | 06:35 | |
*** achampio1 has quit IRC | 06:35 | |
*** sudhi_murthy has joined #openstack | 06:37 | |
*** sam___ has quit IRC | 06:37 | |
*** jrussell has quit IRC | 06:38 | |
*** lsmola_ has joined #openstack | 06:38 | |
*** nacer has quit IRC | 06:39 | |
*** lsmola has quit IRC | 06:39 | |
*** nacim has joined #openstack | 06:42 | |
yiipi | any idea how to solve problem with dnsmasq on debian 7 and havana ? cannot read /var/lib/neutron/dhcp/... | 06:43 |
*** kitp has joined #openstack | 06:44 | |
*** jsidhu has joined #openstack | 06:44 | |
*** janslow has joined #openstack | 06:46 | |
*** jsidhu_ has quit IRC | 06:47 | |
*** yrabl has joined #openstack | 06:47 | |
*** peret has joined #openstack | 06:47 | |
*** jsidhu_ has joined #openstack | 06:47 | |
*** pravins has quit IRC | 06:48 | |
*** kitp has quit IRC | 06:48 | |
*** r3pl4y has joined #openstack | 06:49 | |
*** suhit_csharp has joined #openstack | 06:49 | |
*** suhit_csharp has left #openstack | 06:50 | |
*** janslow has quit IRC | 06:50 | |
*** jsullivandigs has quit IRC | 06:50 | |
*** jsidhu has quit IRC | 06:50 | |
*** bdpayne has quit IRC | 06:52 | |
*** kossy has joined #openstack | 06:53 | |
*** naveen_ has joined #openstack | 06:56 | |
*** artem_panchenko has joined #openstack | 06:56 | |
*** Longgeek has joined #openstack | 06:58 | |
*** ongolaBoy has joined #openstack | 06:59 | |
*** Underyx|off is now known as underyx | 06:59 | |
*** scheuran has joined #openstack | 06:59 | |
*** nstrug has joined #openstack | 07:01 | |
*** jamie_h has joined #openstack | 07:01 | |
*** sudhi_murthy has quit IRC | 07:01 | |
*** Longgeek has quit IRC | 07:02 | |
*** sudhi_murthy has joined #openstack | 07:02 | |
*** jsidhu_ has quit IRC | 07:02 | |
*** sudhi_murthy has quit IRC | 07:03 | |
*** sudhi_murthy has joined #openstack | 07:03 | |
*** Albert_13 has joined #openstack | 07:04 | |
*** AaronGr has quit IRC | 07:06 | |
*** taj has joined #openstack | 07:07 | |
*** bradm has quit IRC | 07:07 | |
*** syslink has quit IRC | 07:07 | |
*** sudhi_murthy has quit IRC | 07:08 | |
*** sudhi_murthy has joined #openstack | 07:08 | |
*** pantea has joined #openstack | 07:08 | |
*** reidrac has joined #openstack | 07:08 | |
*** enarciso has quit IRC | 07:08 | |
*** msgodf has joined #openstack | 07:08 | |
*** xgsa has joined #openstack | 07:08 | |
*** engkur has quit IRC | 07:09 | |
*** paraa has joined #openstack | 07:11 | |
*** kong has joined #openstack | 07:11 | |
*** mattgriffin has quit IRC | 07:11 | |
*** pravins has joined #openstack | 07:11 | |
*** tomoe_ has joined #openstack | 07:11 | |
*** engkur has joined #openstack | 07:12 | |
*** ndipanov has joined #openstack | 07:12 | |
*** Mixostuff has joined #openstack | 07:12 | |
*** AaronGr has joined #openstack | 07:13 | |
*** harlowja_at_home has quit IRC | 07:15 | |
*** BAKfr has joined #openstack | 07:15 | |
*** jasonni has joined #openstack | 07:16 | |
*** lcavassa has joined #openstack | 07:16 | |
*** brokencycle has joined #openstack | 07:16 | |
*** Infitialis has joined #openstack | 07:16 | |
*** vpanizo_ has joined #openstack | 07:16 | |
*** vpanizo has quit IRC | 07:17 | |
*** sudhi_murthy has quit IRC | 07:17 | |
*** berendt has joined #openstack | 07:17 | |
*** naveen_ has quit IRC | 07:17 | |
*** sudhi_murthy has joined #openstack | 07:17 | |
*** egallen has joined #openstack | 07:19 | |
*** yiipi has quit IRC | 07:21 | |
*** sudhi_murthy has quit IRC | 07:21 | |
*** bradm has joined #openstack | 07:22 | |
*** jeffrey4l has quit IRC | 07:23 | |
*** cedrics has joined #openstack | 07:23 | |
*** janslow has joined #openstack | 07:24 | |
*** janslow has quit IRC | 07:24 | |
*** Albert_13 has quit IRC | 07:25 | |
*** jlibosva has joined #openstack | 07:25 | |
*** jp_at_hp has joined #openstack | 07:25 | |
*** rotbeard has joined #openstack | 07:27 | |
*** bilco105_ is now known as bilco105 | 07:28 | |
*** Albert_13 has joined #openstack | 07:28 | |
*** sayan has quit IRC | 07:29 | |
*** ttrifonov_zZzz is now known as ttrifonov | 07:29 | |
*** vpanizo has joined #openstack | 07:29 | |
*** cedrics has quit IRC | 07:30 | |
*** moha_hunt has joined #openstack | 07:30 | |
*** vpanizo_ has quit IRC | 07:31 | |
*** kushal has quit IRC | 07:32 | |
*** bkopilov has joined #openstack | 07:32 | |
*** bfschott has joined #openstack | 07:32 | |
*** Albert_13 has quit IRC | 07:32 | |
*** janslow has joined #openstack | 07:32 | |
*** mischief_ has joined #openstack | 07:33 | |
mischief_ | hi | 07:33 |
mischief_ | was it a bad idea to upgrade from ubuntu 12.04 lts server to 14.04 before upgrading openstack havana? | 07:33 |
*** gildub has quit IRC | 07:34 | |
*** arezmerita has joined #openstack | 07:35 | |
*** nacer has joined #openstack | 07:35 | |
*** eYAsv has quit IRC | 07:36 | |
*** jamie_h has quit IRC | 07:36 | |
*** bfschott has quit IRC | 07:37 | |
*** jamie_h has joined #openstack | 07:37 | |
*** Zack_Dee_ has joined #openstack | 07:38 | |
*** Zack_Deee has quit IRC | 07:38 | |
*** sudhi_murthy has joined #openstack | 07:39 | |
*** janslow has quit IRC | 07:39 | |
*** flaper87 is now known as flaper87|afk | 07:39 | |
*** sverrest has quit IRC | 07:40 | |
*** fsimonce has joined #openstack | 07:40 | |
*** janslow has joined #openstack | 07:40 | |
*** odyssey4me has joined #openstack | 07:40 | |
*** sverrest has joined #openstack | 07:40 | |
*** halbert has joined #openstack | 07:41 | |
*** MaxV has joined #openstack | 07:41 | |
halbert | hey, anyone up? I've been messing with this stupid neutron-server error for over a week | 07:41 |
halbert | neutron.plugins.ml2.managers [req-836c4246-ca1a-44d2-8e95-06fad72da1ef None] Failed to bind port b88fede0-43ac-45a8-9ffc-2fafe02f49f4 on host nova03 | 07:41 |
*** ade_b has joined #openstack | 07:41 | |
halbert | I've checked and rechecked and rechecked the install guide and this is really frigging frustrating | 07:41 |
halbert | I need this lab up or I can't continue with my work, anyone? | 07:42 |
*** sudhi_murthy has quit IRC | 07:42 | |
*** sayan has joined #openstack | 07:42 | |
halbert | Is there a bug or some additional configs that I have to be aware of ? | 07:42 |
*** fester05 has joined #openstack | 07:42 | |
halbert | Does the official install guide actually work? | 07:42 |
*** sudhi_murthy has joined #openstack | 07:42 | |
*** arnaud has quit IRC | 07:42 | |
*** bvandenh has joined #openstack | 07:43 | |
*** xianghui has quit IRC | 07:43 | |
*** julianwa has joined #openstack | 07:44 | |
*** Albert_13 has joined #openstack | 07:44 | |
*** Zack_Dee_ has quit IRC | 07:44 | |
*** kitp has joined #openstack | 07:45 | |
*** kushal has joined #openstack | 07:45 | |
*** xianghui has joined #openstack | 07:46 | |
*** aburan28 has joined #openstack | 07:46 | |
*** dtx00ff_ has joined #openstack | 07:47 | |
*** sudhi_murthy has quit IRC | 07:47 | |
*** fester05 has quit IRC | 07:47 | |
*** neoXsys has quit IRC | 07:48 | |
*** vdo has joined #openstack | 07:48 | |
*** jeffrey4l has joined #openstack | 07:49 | |
*** kitp has quit IRC | 07:49 | |
*** dtx00ff has quit IRC | 07:50 | |
*** andreaturli has joined #openstack | 07:51 | |
*** giorgiodinapoli has joined #openstack | 07:52 | |
*** gszasz_ has joined #openstack | 07:52 | |
*** mmagr has joined #openstack | 07:52 | |
*** CASP3R has quit IRC | 07:52 | |
*** Zack_Deee has joined #openstack | 07:52 | |
*** tim|mint has joined #openstack | 07:53 | |
*** jistr has joined #openstack | 07:53 | |
*** devnull1 has joined #openstack | 07:54 | |
*** noobtube has joined #openstack | 07:55 | |
*** pixelb has joined #openstack | 07:55 | |
*** Longgeek has joined #openstack | 07:55 | |
*** kashyapk has joined #openstack | 07:56 | |
*** giorgiodinapoli has quit IRC | 07:57 | |
*** noobtube has quit IRC | 07:57 | |
*** pbrooko has joined #openstack | 07:57 | |
*** noobtube has joined #openstack | 07:57 | |
*** janslow has quit IRC | 07:57 | |
*** orzel has joined #openstack | 07:59 | |
*** sep has quit IRC | 07:59 | |
*** spandhe has quit IRC | 07:59 | |
*** dtx00ff_ has quit IRC | 08:00 | |
*** pelix has joined #openstack | 08:01 | |
*** r0j4z0 has quit IRC | 08:03 | |
*** mindpixel has joined #openstack | 08:04 | |
*** Thumper650 has joined #openstack | 08:05 | |
*** noobtube has quit IRC | 08:05 | |
Thumper650 | Greets all, I was wondering which of the openstack #'s would be the best place to discus a slightly unconventional console configuration | 08:06 |
*** engkur has quit IRC | 08:06 | |
odyssey4me | halbert - generally speaking, I think so - I haven't personally done any ml2 implementations. My last implementation from the docs was on Grizzly. | 08:06 |
*** sep has joined #openstack | 08:06 | |
odyssey4me | halbert - I take it that you have the neutron agent on your compute node? perhaps you can pastein the full trace? | 08:07 |
odyssey4me | Thumper650 - this is the usage channel, so if it's a usage/operations discussion, then this would be the right channel. | 08:07 |
odyssey4me | ie this would be a good starting point - we can always refer you elsewhere | 08:08 |
Thumper650 | cool... | 08:08 |
*** pixelb has quit IRC | 08:09 | |
troya | is possible to move my cinder to another openstack machine ? | 08:09 |
*** janslow has joined #openstack | 08:09 | |
odyssey4me | troya - do you mean the cinder service? or do you mean something else? | 08:10 |
troya | yes, cinder service | 08:10 |
troya | is it possible to move to another openstack machine ? | 08:10 |
*** Longgeek has quit IRC | 08:10 | |
Thumper650 | I'm working on rolling out a redunant OS environemnt with most services being reachable via a HA'd floating IP address and a loadbalancer. Pretty much everything is working well, but I'm fighting with Console. If I 'down' one track of the HA (controller-01 and compute-01) I can get console just fine, but if I enable all controllers and compute nodes, console breaks, probably because I've set novncproxy_base_url to a balanced virtual IP. | 08:11 |
*** Longgeek has joined #openstack | 08:11 | |
odyssey4me | troya - you can run multiple cinder services on multiple servers, each service is stateless. The only trouble may be with currently mounted volumes. I'm not sure if you can just switch off the previous service without affecting currently mounted volumes. | 08:11 |
odyssey4me | I think that may be something to determine on a driver by driver basis. | 08:12 |
*** syslink has joined #openstack | 08:12 | |
*** dizquierdo has joined #openstack | 08:13 | |
*** janslow has quit IRC | 08:13 | |
odyssey4me | Thumper650 - if you have multiple nova-consoleauth services running, then the scheduler allocates them on a round robin basis... resulting in a successful connection once for every n agents | 08:13 |
odyssey4me | So if you have two agents, you may find that you're successfully connecting every two attempts? | 08:13 |
troya | odyssey4me: is not possible to just a copy ? not replicate | 08:14 |
*** toddnni_ has joined #openstack | 08:14 | |
odyssey4me | The way to get it successful every time is to ensure that you implement memcached on the hosts running nova-consoleauth, and to configure nova-consoleauth to refer to all instances of memcached. This way the tokens are referrable on all of them. | 08:14 |
*** eglynn_ has joined #openstack | 08:15 | |
*** Longgeek has quit IRC | 08:16 | |
*** toddnni has quit IRC | 08:16 | |
odyssey4me | Thumper650 - another way is to disable the service through the cli/API on the consoleauth agents you're not using at the time (ie implement active/passive HA). You can then script the enable/disable when the VIP transitions. | 08:16 |
*** engkur has joined #openstack | 08:16 | |
*** sushils has joined #openstack | 08:17 | |
*** Longgeek has joined #openstack | 08:19 | |
odyssey4me | troya - you can run as many cinder-api/cinder-volume processes as you want, and the config for cinder-volume would be for each back-end. If the back-end interacts with a storage API (eg: NetApp/IBM/etc) then instance volume connections shouldn't be interrupted if one of the cinder-volume services go down. | 08:19 |
*** enarciso has joined #openstack | 08:19 | |
odyssey4me | (this is because the actual connection from the hypervisor goes directly to the storage, cinder-volume simply facilitates it) | 08:20 |
*** syslink has quit IRC | 08:20 | |
*** aniket has quit IRC | 08:20 | |
*** toddnni_ has quit IRC | 08:21 | |
*** jeffrey4l has quit IRC | 08:21 | |
odyssey4me | troya - a pretty good overview of the above is here: http://www.slideshare.net/avishaytraeger/cinder-havana | 08:22 |
Thumper650 | Thanks Od, will get back to you with how it goes | 08:22 |
odyssey4me | (dunno if that helps) | 08:22 |
odyssey4me | Thumper650 - sure, no problem. Hope that helps. | 08:23 |
*** enarciso has quit IRC | 08:23 | |
*** toddnni has joined #openstack | 08:24 | |
troya | odyssey4me: so i can't do backup and restore, right ? just can replicate | 08:24 |
*** yamamoto_ has quit IRC | 08:25 | |
odyssey4me | troya - if by replicate you mean run multiple agents, that's an option. You can backup/restore too if you don't want to do an HA implementation. | 08:25 |
odyssey4me | (why choose when you can do both?) | 08:26 |
troya | cod: i just want to backup/restore | 08:26 |
troya | any reference for that ? | 08:26 |
odyssey4me | troya - alright. reference in terms of what's important to backup? | 08:26 |
*** ramishra has quit IRC | 08:26 | |
*** jcoufal has joined #openstack | 08:27 | |
troya | just reference about step by step to do that | 08:27 |
*** jcoufal has quit IRC | 08:27 | |
*** jcoufal has joined #openstack | 08:28 | |
troya | but in my case, i backup on openstack on machine1, then can i restore to openstack on machine2 ? | 08:28 |
*** bbart has quit IRC | 08:28 | |
odyssey4me | troya - step by step, not really. The Operations Guide gives you guidance, but step-by-step would be too deployment specific. | 08:28 |
*** ramishra has joined #openstack | 08:28 | |
odyssey4me | Ops Docs: http://docs.openstack.org/trunk/openstack-ops/content/backup_and_recovery.html | 08:28 |
*** bbart has joined #openstack | 08:30 | |
*** goodes has joined #openstack | 08:30 | |
odyssey4me | troya - you don't really need to back things up, except the configs, logs and /var/lib/cinder.... to restore, simply implement the packages, restore the configs and /var/lib/cinder, then start the service | 08:30 |
odyssey4me | that's covered in general in the docs | 08:30 |
*** D30 has quit IRC | 08:31 | |
odyssey4me | note that this is just the service backup/restore - not instance/volume data backup/restore | 08:31 |
*** D30 has joined #openstack | 08:31 | |
*** masahito has joined #openstack | 08:31 | |
*** Thumper650 has quit IRC | 08:32 | |
*** kushal has quit IRC | 08:32 | |
*** syslink has joined #openstack | 08:32 | |
*** mkoderer has quit IRC | 08:32 | |
*** Thumper650 has joined #openstack | 08:33 | |
*** bilco105 is now known as bilco105_ | 08:34 | |
troya | is possible to backup and restore volume data ? | 08:34 |
*** jeffrey4l has joined #openstack | 08:35 | |
*** kossy has quit IRC | 08:39 | |
*** Thumper650 has left #openstack | 08:39 | |
*** vicky has quit IRC | 08:40 | |
*** vicky has joined #openstack | 08:40 | |
odyssey4me | troya - sure, you can use any standard backup tooling and method for that | 08:41 |
*** kossy has joined #openstack | 08:41 | |
odyssey4me | you can either do it from inside the instances, or you can do it on the back-end if your block storage subsystem supports a method to do so | 08:41 |
*** maxdml has joined #openstack | 08:42 | |
*** jeffrey4l has quit IRC | 08:43 | |
*** prad has quit IRC | 08:44 | |
*** kitp has joined #openstack | 08:45 | |
*** bbart has quit IRC | 08:46 | |
*** cdent has joined #openstack | 08:47 | |
*** alekibango_ has quit IRC | 08:47 | |
*** bbart has joined #openstack | 08:47 | |
*** RoozbehShafiee has joined #openstack | 08:48 | |
*** jamie_h has quit IRC | 08:48 | |
*** kitp has quit IRC | 08:50 | |
*** nacim has quit IRC | 08:55 | |
*** MarcMorata has joined #openstack | 08:55 | |
*** amarao has joined #openstack | 08:56 | |
*** pberis has quit IRC | 08:57 | |
*** bbcmicrocomputer has joined #openstack | 08:58 | |
*** bbcmicrocomputer has joined #openstack | 08:58 | |
*** _cjones_ has joined #openstack | 08:59 | |
*** anish_ has joined #openstack | 09:00 | |
*** pberis has joined #openstack | 09:00 | |
*** karimb has joined #openstack | 09:00 | |
*** devnull1_ has joined #openstack | 09:02 | |
*** _cjones_ has quit IRC | 09:03 | |
*** cedrics has joined #openstack | 09:04 | |
*** egallen has quit IRC | 09:04 | |
*** mbernacc has joined #openstack | 09:05 | |
*** salgado has joined #openstack | 09:05 | |
*** D30 has quit IRC | 09:05 | |
*** devnull1 has quit IRC | 09:05 | |
*** D30 has joined #openstack | 09:06 | |
*** f13o has joined #openstack | 09:06 | |
*** MaxV has quit IRC | 09:06 | |
*** MaxV has joined #openstack | 09:06 | |
*** bbart has quit IRC | 09:07 | |
*** tvb has joined #openstack | 09:07 | |
*** bbart has joined #openstack | 09:07 | |
tvb | hi how can I see the actual quota of my tenant? | 09:07 |
tvb | ram quota | 09:08 |
*** f13o has quit IRC | 09:08 | |
tvb | quota-show shows me a number which does not add up to the actual quota for all the instances combined. | 09:08 |
*** moha_hunt has quit IRC | 09:10 | |
*** jasonni has quit IRC | 09:11 | |
halbert | odyssey4me: I can pastebin the full debug output, do you want the neutron-agent or do you want the nova-compute ? I have the debug output but I don't think that's exactly what you want | 09:11 |
odyssey4me | halbert - do both, try to capture the time from launching the instance through to the error for both agents | 09:12 |
halbert | I can do that. | 09:12 |
*** m_j_h_away has quit IRC | 09:13 | |
*** egallen has joined #openstack | 09:13 | |
*** nsquare has quit IRC | 09:14 | |
*** RoozbehShafiee has quit IRC | 09:15 | |
*** m_j_h has joined #openstack | 09:15 | |
*** jaosorior has joined #openstack | 09:15 | |
*** m_j_h has quit IRC | 09:16 | |
*** m_j_h has joined #openstack | 09:17 | |
*** devnull1_ has quit IRC | 09:17 | |
*** ahale has joined #openstack | 09:18 | |
*** devnull1 has joined #openstack | 09:18 | |
*** jasonni has joined #openstack | 09:18 | |
*** D30_ has joined #openstack | 09:19 | |
*** D30 has quit IRC | 09:19 | |
*** D30_ is now known as D30 | 09:19 | |
*** flaper87|afk is now known as flaper87 | 09:19 | |
*** kashyapk has quit IRC | 09:19 | |
halbert | odyssey4me: nova debug logs: http://pastebin.com/ZgGmURBQ | 09:20 |
*** kashyapk has joined #openstack | 09:20 | |
*** todayman has quit IRC | 09:20 | |
*** todayman_ has joined #openstack | 09:20 | |
*** dizquierdo is now known as dizquierdo_out | 09:21 | |
halbert | http://pastebin.com/PzRYuunH | 09:22 |
halbert | neutron server debug logs | 09:22 |
*** aburan28 has quit IRC | 09:22 | |
*** arezmerita has quit IRC | 09:22 | |
*** ramishra has quit IRC | 09:23 | |
*** kashyapk has quit IRC | 09:24 | |
*** furybeat has joined #openstack | 09:25 | |
*** arezmerita has joined #openstack | 09:25 | |
*** snowboarder04 is now known as snowboardr04|afk | 09:25 | |
*** nj3ma_Zzz has quit IRC | 09:25 | |
*** mkollaro has joined #openstack | 09:26 | |
*** kashyapk has joined #openstack | 09:27 | |
*** igordcard has joined #openstack | 09:27 | |
tvb | it seems I am having an issue with 'reserved' ram quota_usage. what does the reserved quota_usage mean? | 09:27 |
*** aburan28 has joined #openstack | 09:29 | |
*** nj3ma_Zzz has joined #openstack | 09:29 | |
*** julianwa has quit IRC | 09:33 | |
*** bfschott has joined #openstack | 09:33 | |
*** vicky has quit IRC | 09:36 | |
halbert | odyssey4me: sorry about the spam, this is a more complete set: | 09:37 |
*** syslink has quit IRC | 09:37 | |
*** bfschott has quit IRC | 09:37 | |
*** syslink has joined #openstack | 09:37 | |
halbert | http://pastebin.com/ArgGjFbq neutron-server log | 09:37 |
*** derekh_ has joined #openstack | 09:37 | |
*** Zack_Deee has quit IRC | 09:37 | |
halbert | http://pastebin.com/Mf0eKku5 nova-compute log | 09:37 |
halbert | http://pastebin.com/5hBX98Aa neutron-agent log | 09:38 |
halbert | just reams and reams of this crap | 09:38 |
*** flaper87 is now known as flaper87|afk | 09:38 | |
*** egallen has quit IRC | 09:38 | |
*** julianwa has joined #openstack | 09:39 | |
*** kolesovdv has joined #openstack | 09:39 | |
odyssey4me | halbert - will check it now, just finishing something else up | 09:42 |
halbert | thanks man | 09:42 |
*** D30 has quit IRC | 09:42 | |
*** syslink has quit IRC | 09:43 | |
*** jtomasek has quit IRC | 09:43 | |
*** RoozbehShafiee has joined #openstack | 09:44 | |
*** fester05 has joined #openstack | 09:44 | |
*** janslow has joined #openstack | 09:45 | |
*** sputnik13 has quit IRC | 09:45 | |
*** Ange7 has joined #openstack | 09:45 | |
halbert | tvb: you said your resources defined and used don't add up, what do you mean? | 09:45 |
Ange7 | hey all | 09:45 |
halbert | do you have vms using more or less than what you thought you could ? | 09:45 |
tvb | halbert: so I am getting this error | 09:45 |
tvb | ERROR: Quota exceeded for ram: Requested 64512, but already used 139264 of 153600 ram (HTTP 413) (Request-ID: req-03b0d044-040b-4f20-87fb-5a046a31bd25) | 09:45 |
tvb | however | 09:45 |
Ange7 | someone can explain how type of request that i need to do to store one picture with swift ? | 09:46 |
tvb | when I calculate the actual usage of my instances it does not add up | 09:46 |
*** kitp has joined #openstack | 09:46 | |
halbert | ahhh okay. how far are you short ? | 09:46 |
tvb | I am using 9126 mb | 09:47 |
tvb | in real | 09:47 |
mAniAk-_- | Ange7: you put your fingers on the keyboard and push them down | 09:47 |
tvb | but found the following | 09:47 |
mAniAk-_- | e | 09:47 |
tvb | halbert: https://gist.github.com/anonymous/967f5ce1fb0b6a3cbaf4 | 09:47 |
*** janslow has quit IRC | 09:47 | |
halbert | Ange7: assuming you have your openstack credentials, you can just check source your openstackrc file, do a swift stat, and see if you can log in | 09:47 |
*** julianwa has quit IRC | 09:48 | |
tvb | when you add up the in-usage and reserved column it will give you the 139264 value. | 09:48 |
tvb | so where does the reserved values are coming from? | 09:48 |
*** djalil has joined #openstack | 09:48 | |
halbert | Ange7: once you can do that, you should refer to here as your reference for pushing and pulling to swift via the swift cli tool: http://docs.openstack.org/user-guide/content/swift_commands.html | 09:48 |
halbert | aight tvb, I'll check | 09:48 |
*** fester05 has quit IRC | 09:49 | |
Ange7 | thank halbert | 09:49 |
*** syslink has joined #openstack | 09:49 | |
djalil | someone can help me | 09:49 |
djalil | ? | 09:49 |
*** egallen has joined #openstack | 09:50 | |
odyssey4me | halbert - odd, I don't see anything in the nova log instructing the actual build... all I see is the one ERROR log line indicating that the instance disappeared before it finished building | 09:50 |
djalil | i got a problem on rabbitmq | 09:50 |
*** aburan28 has quit IRC | 09:50 | |
odyssey4me | djalil - ask your question, it generally gets no response if you ask if you can ask :) | 09:50 |
*** kitp has quit IRC | 09:51 | |
odyssey4me | halbert - just a question though, which ml2 plugin are you using? openvswitch? | 09:51 |
*** jasonni has quit IRC | 09:51 | |
halbert | odyssey4me: it errors out as it tries to spawn the build, and it errors consistently when it asks for the network | 09:51 |
halbert | yeah man | 09:51 |
halbert | I use openvswitch... | 09:51 |
odyssey4me | and you have nova.conf configured to tell it to use neutron? | 09:52 |
halbert | yeah odyssey4me | 09:52 |
halbert | I can paste you the config files if you want. | 09:52 |
halbert | s/paste/pastebin | 09:52 |
halbert | /g | 09:52 |
djalil | i'm installing openstack ice single node on debian without debconf and until a configure nova rabbitmq was working but now when i try to do nova list th server responding connection refused | 09:52 |
*** mkoderer has joined #openstack | 09:53 | |
*** Abhijeet has quit IRC | 09:53 | |
*** troya has quit IRC | 09:53 | |
*** pixelb has joined #openstack | 09:53 | |
halbert | tvb: I'm perplexed. I've never seen that shit before in grizzly or in folsom | 09:53 |
halbert | I'm looking at the api page for the reserved quotas here: http://docs.openstack.org/developer/nova/api/nova.quota.html | 09:54 |
tvb | halbert: I am using icehouse | 09:54 |
halbert | tvb: I have a fresh but borked icehouse install | 09:54 |
halbert | which table is this at ? | 09:55 |
*** Ange7 has quit IRC | 09:55 | |
*** farsonic has joined #openstack | 09:55 | |
*** starmer has quit IRC | 09:55 | |
farsonic | evening all | 09:55 |
tvb | mysql> select * from quota_usages where project_id = 'xxx' and resource = 'ram'; | 09:55 |
farsonic | wondering if anyone can help me with API access | 09:56 |
*** spandhe has joined #openstack | 09:56 | |
farsonic | specifically looking to be able to access my openstack server from the local LAN and also from an external public IP address through NAT | 09:56 |
odyssey4me | djalil - you'll need to be clearer. I don't understand the situation and the problem. | 09:57 |
farsonic | the problem is, if I reconfigure the public_url etc it breaks all my internal LAN access | 09:57 |
halbert | tvb: all my reserved as 0s | 09:57 |
halbert | have you been doing migrations from host to host ? | 09:57 |
*** janslow has joined #openstack | 09:57 | |
tvb | halbert: I have had 2 resizes stuck in resize_prep state which eventually were being manually terminated by me. | 09:58 |
odyssey4me | farsonic - you could use a split horizon dns to solve that. public endpoints are configured with DNS names, external DNS points to the pubilc IP and internal DNS points to the private IP | 09:58 |
tvb | guess, those could be causing the issue. | 09:58 |
odyssey4me | farsonic - or you could use a reverse proxy which rewrites the endpoint's for the public exposure | 09:58 |
halbert | tvb: were you resizing them to be larger ? | 09:59 |
tvb | larger, yes. | 09:59 |
odyssey4me | farsonic - or you could configure all the services to use the internal endpoints only, and then the public endpoints can be configured to have the public addresses | 09:59 |
*** starmer has joined #openstack | 09:59 | |
*** xianghui has quit IRC | 09:59 | |
*** janslow has quit IRC | 10:00 | |
halbert | tvb: when you resize, what you are actually doing is a migration. Consider the reservation for clearing a space for you to migrate to, and if your quotas weren't roomy enough, then you couldn't migrate | 10:00 |
farsonic | ok, so I have an internal IP address of 192.168.1.25 (for example) | 10:00 |
*** geekyogi has joined #openstack | 10:00 | |
*** xmltok_ has quit IRC | 10:00 | |
farsonic | and a public Ip address of 200.0.0.10 (for example) | 10:00 |
*** spandhe has quit IRC | 10:00 | |
*** xmltok_ has joined #openstack | 10:00 | |
halbert | in this case, you borked the migrate in a manner where the middle ware never went back to the table to clear up the mess | 10:00 |
halbert | so you have stuff reserved, for nothing | 10:00 |
tvb | halbert: I do think the quota's were roomy enough. | 10:00 |
farsonic | so, reconfigure everthing for a hostname.... | 10:00 |
halbert | well, what did you opt to resize to? | 10:00 |
*** nlevinki_ has joined #openstack | 10:00 | |
farsonic | configure external DNS and internal DNS or static host entires? | 10:01 |
farsonic | I've reconfigured public endpoints (public_url) to be the public address, but it totally broke internal access | 10:01 |
*** corXi has joined #openstack | 10:01 | |
farsonic | not sure if that is correct | 10:01 |
halbert | It's 5 in the morning over here, and it's been a terribly long night tvb so forgive me if I am not understanding you properly. | 10:02 |
tvb | halbert: no worries. go to bed then. | 10:02 |
*** pradipta_away is now known as pradipta | 10:02 | |
tvb | halbert: if I run quota-show | 10:03 |
*** djalil has quit IRC | 10:03 | |
tvb | it will show me the current quota of RAM in mb's right? | 10:03 |
halbert | I believe so. | 10:03 |
*** nlevinki has quit IRC | 10:03 | |
*** nshaikh has quit IRC | 10:03 | |
tvb | hmm so when it says 153600 it would mean I have a quota of 153GB? | 10:03 |
halbert | I think the unit is in ram | 10:04 |
farsonic | halbert - I'm updating the public/admin/internal URL's directly in the mysql DB | 10:04 |
farsonic | shoudl I be doing this some other way | 10:04 |
halbert | farsonic: golly NO | 10:04 |
farsonic | difficult to find good references to how to this | 10:04 |
farsonic | :) | 10:04 |
halbert | use keystone endpoint-related commands | 10:04 |
farsonic | so, just chante the public_url to a DNS entry then? | 10:05 |
halbert | You could do it in mysql, I think it's normally faster if you know exactly what you are doing, but you can associate more than one endpoint to a service | 10:05 |
*** xianghui has joined #openstack | 10:05 | |
halbert | keystone endpoint-create the new one and blow away the old one after you are done by keystone endpoint-delete is also a perfectly appropriate way | 10:06 |
farsonic | I have all the mysql commands all ready to go…..but I'm still learning here | 10:06 |
farsonic | last time I created a new one it basically locked me out | 10:06 |
farsonic | as I had two overlapping entries | 10:06 |
farsonic | ok | 10:06 |
*** ramishra has joined #openstack | 10:06 | |
farsonic | so, should I just change the public_url entry to a public DNS nam | 10:07 |
farsonic | e | 10:07 |
halbert | tvb: yeah, the ram unit seems to be in megs | 10:07 |
tvb | halbert: ok. So I have a quota of 153GB | 10:08 |
tvb | did an resize to a flavor of 64GB. | 10:08 |
*** mbernacc has quit IRC | 10:08 | |
tvb | two times | 10:08 |
halbert | I think that's what it says... | 10:08 |
halbert | Ahh hah | 10:08 |
halbert | so that's 128 declared | 10:08 |
tvb | jep | 10:08 |
tvb | apperanlty | 10:08 |
halbert | and you had 25 left | 10:08 |
*** r0j4z0 has joined #openstack | 10:09 | |
tvb | it does not release the reserved mem when you terminate an instance which has state resize_prep | 10:09 |
halbert | yeah it does that. | 10:09 |
halbert | you're gonna find that stopping most actions midway manually might leave the tables in a funky state | 10:10 |
halbert | like snapshotting | 10:10 |
tvb | wouldn't this be a bug? | 10:10 |
*** yamahata has quit IRC | 10:10 | |
halbert | well, I consider it a feature if you enjoy punching yourself in the nuts | 10:10 |
tvb | hah | 10:10 |
*** penguinRaider has joined #openstack | 10:11 | |
halbert | But I'm just a user of free shit, so there needs to be some sort of 'garbage collection', and I'm not smart enough to implement it. | 10:11 |
halbert | gzuz look at that grammar | 10:11 |
halbert | I gotta bounce, odyssey4me, who is a good point of contact in the morning where I can plead for someone to go over my neutron configs | 10:12 |
*** michaelneale has quit IRC | 10:12 | |
tvb | halbert: thanks. | 10:12 |
halbert | tvb: np | 10:12 |
*** lcavassa has quit IRC | 10:13 | |
odyssey4me | farsonic - yeah, use the keystone cli to change the public endpoint to the dns name that resolves both externally and internally - just ensure that internal and external resolution go to different IP's and that the services are listening on both IP's (or use a NAT from the public to the internal) | 10:14 |
farsonic | yep, using NAT for external access | 10:14 |
odyssey4me | halbert - take a break, then work back through the installation steps again to confirm your nova and neutron configs on your controllers and computes | 10:14 |
*** egallen has quit IRC | 10:14 | |
odyssey4me | halbert - otherwise, not sure... I've used config mgmt tooling (Chef) to do my configs for ages, doing it manually is the 'hard way' ;) | 10:15 |
*** Shmouel`away has quit IRC | 10:16 | |
odyssey4me | farsonic - you could use hosts entries for the internal resolution, yeah | 10:16 |
halbert | aight, I'll come back... this is so hilarious. I got a full ceph install going, quad bond nics going and everything except for this took me 2 days. I've been stuck with the vm spawning and erroring out for over a week. I'm not sure what the fuck I'm doing wrong :) | 10:16 |
halbert | good night | 10:16 |
*** egallen has joined #openstack | 10:16 | |
farsonic | thansk | 10:16 |
*** halbert is now known as halbert-away | 10:16 | |
farsonic | see ya | 10:17 |
*** bilco105_ is now known as bilco105 | 10:17 | |
*** tvb has left #openstack | 10:17 | |
odyssey4me | farsonic - generally, with grizzly or above, you don't need to dig in the DB to change/fix things.... rather use the cli tools to enact changes | 10:18 |
*** Albert_13 has left #openstack | 10:18 | |
farsonic | yeah | 10:18 |
farsonic | I need a crash course on this stuff | 10:18 |
farsonic | this is running grizzly | 10:18 |
farsonic | I'll work out the corresponding changes using the keystone app now | 10:19 |
odyssey4me | farsonic - the safest would be to register the new endpoints, confirm they're working, then remove the old ones | 10:20 |
farsonic | yep | 10:20 |
farsonic | thanks | 10:20 |
farsonic | will do | 10:20 |
odyssey4me | you can also actually just have two sets of endpoints :) | 10:20 |
*** underyx is now known as Underyx|off | 10:21 | |
farsonic | yeah | 10:21 |
farsonic | I tried that and it ended up locking me out of logging in to the system | 10:21 |
*** cedrics has quit IRC | 10:21 | |
farsonic | well, authenticating against keystone | 10:22 |
farsonic | but, I'm learning | 10:22 |
*** goodes has quit IRC | 10:22 | |
*** aldavud has joined #openstack | 10:22 | |
farsonic | I'm sure your right as thats the first thing I tried - as it looked obvious | 10:22 |
*** pbrooko has quit IRC | 10:22 | |
odyssey4me | farsonic - if you have two endpoints for each service you may need to specify which one you want to use when you auth... | 10:22 |
*** maxdml has quit IRC | 10:22 | |
odyssey4me | when changing the endpoints you can choose to use the service token and the service endpoint, that'll allow you to speak through the back-end | 10:23 |
*** renlt has quit IRC | 10:24 | |
*** kashyapk has quit IRC | 10:24 | |
*** giorgis has joined #openstack | 10:24 | |
*** Zack_Deee has joined #openstack | 10:25 | |
*** kashyapk has joined #openstack | 10:25 | |
*** naveen has joined #openstack | 10:25 | |
*** acathrow has joined #openstack | 10:26 | |
*** xianghui has quit IRC | 10:26 | |
*** bilco105 is now known as bilco105_ | 10:26 | |
*** amuller has joined #openstack | 10:27 | |
*** bilco105_ is now known as bilco105 | 10:27 | |
*** pantea has quit IRC | 10:28 | |
*** kong has quit IRC | 10:28 | |
*** matsuhashi has quit IRC | 10:31 | |
*** kashyapk has quit IRC | 10:32 | |
*** matsuhashi has joined #openstack | 10:34 | |
*** ProT-0-TypE has joined #openstack | 10:35 | |
*** tomoe_ has quit IRC | 10:36 | |
*** paragan has quit IRC | 10:38 | |
*** naveen has quit IRC | 10:38 | |
*** fritzroy15 has joined #openstack | 10:40 | |
*** rotbeard has quit IRC | 10:40 | |
*** xianghui has joined #openstack | 10:43 | |
fritzroy15 | hello, I'm running into the "Could not find service or region in service catalog". I've set the region to RegionOne, and here is my keystone service-list, endpoint-list and nova.conf: http://pastebin.com/YseyUH0f | 10:43 |
*** salgado has quit IRC | 10:44 | |
*** nlevinki has joined #openstack | 10:44 | |
fritzroy15 | can anyone provide a pointer in the right direction? :) | 10:44 |
fritzroy15 | anand_ts you around? :D | 10:45 |
*** aveek has quit IRC | 10:45 | |
*** nlevinki_ has quit IRC | 10:45 | |
*** OffTheRails has joined #openstack | 10:45 | |
anand_ts | fritzroy15, hello, yes | 10:46 |
fritzroy15 | anand_ts can you cast your wise gaze into what my newbishness is doing wrong? ^_^ | 10:47 |
*** kitp has joined #openstack | 10:47 | |
*** egallen has quit IRC | 10:48 | |
*** rotbeard has joined #openstack | 10:49 | |
*** drussell has quit IRC | 10:49 | |
*** gildub has joined #openstack | 10:50 | |
anand_ts | fritzroy15: what issue you are facing exactly? | 10:50 |
fritzroy15 | anand_ts in my nova.log file I get Could not find service or region in service catalog | 10:51 |
*** kitp has quit IRC | 10:51 | |
*** vkmc has joined #openstack | 10:51 | |
*** vkmc has quit IRC | 10:51 | |
*** vkmc has joined #openstack | 10:51 | |
*** naveen has joined #openstack | 10:52 | |
*** lcavassa has joined #openstack | 10:53 | |
*** neeti has quit IRC | 10:54 | |
*** talluri has quit IRC | 10:55 | |
*** talluri has joined #openstack | 10:56 | |
*** talluri has quit IRC | 10:56 | |
*** talluri has joined #openstack | 10:56 | |
*** jamie_h has joined #openstack | 10:56 | |
*** bmurt has joined #openstack | 10:58 | |
*** fester05 has joined #openstack | 11:00 | |
*** _cjones_ has joined #openstack | 11:00 | |
*** simon-AS559 has quit IRC | 11:01 | |
*** drussell has joined #openstack | 11:02 | |
*** jtomasek has joined #openstack | 11:02 | |
*** kashyapk has joined #openstack | 11:03 | |
*** deepakcs has quit IRC | 11:04 | |
*** matsuhashi has quit IRC | 11:06 | |
*** r3pl4y has quit IRC | 11:06 | |
*** palar has joined #openstack | 11:06 | |
*** matsuhashi has joined #openstack | 11:06 | |
*** _cjones_ has quit IRC | 11:07 | |
*** aparna_ has joined #openstack | 11:08 | |
*** kashyapk has quit IRC | 11:08 | |
*** r3pl4y has joined #openstack | 11:08 | |
*** janslow has joined #openstack | 11:09 | |
*** Supriya_ has joined #openstack | 11:09 | |
*** Zack_Deee has quit IRC | 11:10 | |
*** Zack_Dee_ has joined #openstack | 11:10 | |
*** matsuhashi has quit IRC | 11:10 | |
*** Supriya_ has quit IRC | 11:10 | |
*** rbak has joined #openstack | 11:11 | |
*** janslow has quit IRC | 11:12 | |
*** krypto has quit IRC | 11:12 | |
*** dfarrell-41678 has joined #openstack | 11:14 | |
*** rbak has quit IRC | 11:14 | |
*** yamahata has joined #openstack | 11:15 | |
*** goodes has joined #openstack | 11:15 | |
*** Harry51S has joined #openstack | 11:15 | |
*** slogan has joined #openstack | 11:16 | |
*** pantea has joined #openstack | 11:18 | |
*** aparna_ has quit IRC | 11:19 | |
*** simon-AS559 has joined #openstack | 11:19 | |
*** rdas has joined #openstack | 11:19 | |
*** aniket has joined #openstack | 11:19 | |
*** dizquierdo_out is now known as dizquierdo | 11:19 | |
*** nosnos has quit IRC | 11:20 | |
*** aniket has quit IRC | 11:21 | |
*** aparna_ has joined #openstack | 11:21 | |
*** IanGovett has joined #openstack | 11:22 | |
*** Zack_Dee_ has quit IRC | 11:22 | |
*** r3pl4y has quit IRC | 11:22 | |
*** talluri has quit IRC | 11:22 | |
*** r3pl4y has joined #openstack | 11:22 | |
*** simon-AS559 has quit IRC | 11:23 | |
*** FunnyLookinHat has joined #openstack | 11:23 | |
*** matsuhashi has joined #openstack | 11:24 | |
*** matsuhashi has quit IRC | 11:24 | |
*** matsuhashi has joined #openstack | 11:24 | |
*** simon-AS559 has joined #openstack | 11:26 | |
*** slogan has quit IRC | 11:26 | |
*** dgrig has joined #openstack | 11:27 | |
*** starmer has quit IRC | 11:28 | |
*** ajc_ has quit IRC | 11:28 | |
*** dgrig has left #openstack | 11:28 | |
*** naveen has quit IRC | 11:28 | |
*** vpanizo has quit IRC | 11:29 | |
*** dgrig has joined #openstack | 11:29 | |
*** kashyapk has joined #openstack | 11:29 | |
*** matsuhashi has quit IRC | 11:29 | |
*** jamie_h has quit IRC | 11:29 | |
*** atraylen has joined #openstack | 11:30 | |
*** aparna_ has quit IRC | 11:30 | |
*** aniket has joined #openstack | 11:30 | |
*** starmer has joined #openstack | 11:30 | |
*** arezmerita has quit IRC | 11:32 | |
*** HenryG has joined #openstack | 11:32 | |
*** salgado has joined #openstack | 11:32 | |
*** mwichmann has joined #openstack | 11:32 | |
*** cedrics has joined #openstack | 11:33 | |
*** devnull1 has quit IRC | 11:33 | |
*** bmurt has quit IRC | 11:33 | |
*** bfschott has joined #openstack | 11:34 | |
*** talluri has joined #openstack | 11:35 | |
*** simon-AS559 has quit IRC | 11:36 | |
*** starmer has quit IRC | 11:37 | |
*** bfschott has quit IRC | 11:38 | |
*** RoozbehShafiee has quit IRC | 11:40 | |
*** drussell has quit IRC | 11:41 | |
*** sumanth has quit IRC | 11:43 | |
*** rfolco has joined #openstack | 11:44 | |
*** starmer has joined #openstack | 11:44 | |
*** ttrumm has quit IRC | 11:45 | |
*** rtheis has joined #openstack | 11:46 | |
*** sgordon has joined #openstack | 11:46 | |
*** kitp has joined #openstack | 11:48 | |
*** kolesovdv has quit IRC | 11:48 | |
*** nkhare has quit IRC | 11:48 | |
*** afazekas has joined #openstack | 11:49 | |
*** furybeat has quit IRC | 11:50 | |
*** nshaikh has joined #openstack | 11:50 | |
*** ramishra has quit IRC | 11:51 | |
*** kitp has quit IRC | 11:52 | |
*** julim has joined #openstack | 11:52 | |
*** ramishra_ has joined #openstack | 11:53 | |
*** yocum has joined #openstack | 11:54 | |
*** k4n0 has quit IRC | 11:54 | |
*** morazi has joined #openstack | 11:58 | |
*** jamie_h has joined #openstack | 11:59 | |
*** egallen has joined #openstack | 11:59 | |
*** mbernacc has joined #openstack | 11:59 | |
*** cdent_ has joined #openstack | 11:59 | |
*** mindpixel has quit IRC | 11:59 | |
*** paragan has joined #openstack | 11:59 | |
*** Infitialis has quit IRC | 12:00 | |
*** cdent has quit IRC | 12:00 | |
*** cdent_ is now known as cdent | 12:00 | |
*** mindpixel has joined #openstack | 12:01 | |
*** flaper87|afk is now known as flaper87 | 12:02 | |
*** devnull1 has joined #openstack | 12:02 | |
*** kolesovdv has joined #openstack | 12:02 | |
*** arezmerita has joined #openstack | 12:03 | |
*** koolhead17 has quit IRC | 12:03 | |
*** simon-AS559 has joined #openstack | 12:03 | |
*** omachace has quit IRC | 12:04 | |
*** lblanchard has joined #openstack | 12:04 | |
*** jmh has joined #openstack | 12:08 | |
*** tan has quit IRC | 12:08 | |
*** jmh is now known as Guest73881 | 12:08 | |
*** simon-AS559 has quit IRC | 12:08 | |
*** bilco105 is now known as bilco105_ | 12:08 | |
*** r3pl4y has quit IRC | 12:09 | |
*** egallen has quit IRC | 12:09 | |
*** ahasenack has joined #openstack | 12:10 | |
*** jamie_h has quit IRC | 12:10 | |
*** egallen has joined #openstack | 12:10 | |
*** r3pl4y has joined #openstack | 12:10 | |
*** aveek has joined #openstack | 12:10 | |
*** Underyx|off is now known as underyx | 12:11 | |
*** tkramer has joined #openstack | 12:12 | |
*** Longgeek has quit IRC | 12:12 | |
*** Longgeek has joined #openstack | 12:12 | |
*** rmartinelli_ has joined #openstack | 12:13 | |
*** coolsvap is now known as coolsvap|afk | 12:15 | |
*** pravins has quit IRC | 12:17 | |
*** galstrom_zzz is now known as galstrom | 12:17 | |
*** koolhead17 has joined #openstack | 12:18 | |
*** mindpixel has quit IRC | 12:18 | |
*** rdas has quit IRC | 12:18 | |
*** santanu has joined #openstack | 12:18 | |
*** tan has joined #openstack | 12:19 | |
*** mindpixel has joined #openstack | 12:19 | |
*** lborda has joined #openstack | 12:20 | |
*** moha_hunt has joined #openstack | 12:21 | |
*** santanu has quit IRC | 12:21 | |
*** furybeat has joined #openstack | 12:22 | |
*** blomquisg has joined #openstack | 12:23 | |
*** rbak has joined #openstack | 12:24 | |
*** tomoe_ has joined #openstack | 12:24 | |
*** stronghere has joined #openstack | 12:25 | |
*** corXi has quit IRC | 12:25 | |
*** naveen has joined #openstack | 12:26 | |
*** pantea has quit IRC | 12:27 | |
*** l_a_m has quit IRC | 12:29 | |
*** jamie_h has joined #openstack | 12:29 | |
*** palar has quit IRC | 12:30 | |
*** ahasenack has quit IRC | 12:30 | |
*** HenryG has quit IRC | 12:31 | |
*** corXi has joined #openstack | 12:31 | |
*** hdd_ has joined #openstack | 12:31 | |
*** WackoRobie has joined #openstack | 12:32 | |
*** ahasenack has joined #openstack | 12:32 | |
*** kashyapk has quit IRC | 12:33 | |
*** WackoRob_ has joined #openstack | 12:33 | |
*** yfauser has joined #openstack | 12:33 | |
*** yfauser has left #openstack | 12:33 | |
*** psharma has quit IRC | 12:33 | |
*** aveek has quit IRC | 12:33 | |
*** kashyapk has joined #openstack | 12:34 | |
*** ircuser-1 has quit IRC | 12:34 | |
*** achampion has joined #openstack | 12:34 | |
*** bilco105_ is now known as bilco105 | 12:35 | |
*** Barker has joined #openstack | 12:36 | |
*** talluri has quit IRC | 12:36 | |
*** anande has quit IRC | 12:36 | |
*** talluri has joined #openstack | 12:36 | |
*** Ile has quit IRC | 12:37 | |
*** WackoRobie has quit IRC | 12:37 | |
*** weshay has joined #openstack | 12:37 | |
*** kashyapk has quit IRC | 12:38 | |
*** WackoRob_ has quit IRC | 12:38 | |
*** cedrics has quit IRC | 12:38 | |
*** WackoRobie has joined #openstack | 12:39 | |
*** FunnyLookinHat has quit IRC | 12:39 | |
*** aniket has quit IRC | 12:39 | |
*** aveek has joined #openstack | 12:40 | |
*** WackoRobie has quit IRC | 12:41 | |
*** WackoRob_ has joined #openstack | 12:41 | |
*** talluri has quit IRC | 12:41 | |
*** pantea has joined #openstack | 12:42 | |
*** dfarrell has quit IRC | 12:42 | |
*** dfarrell-41678 has quit IRC | 12:43 | |
*** Infitialis has joined #openstack | 12:43 | |
*** FunnyLookinHat has joined #openstack | 12:43 | |
*** mtrisoline1 has quit IRC | 12:43 | |
*** madjar has joined #openstack | 12:43 | |
*** nstrug has quit IRC | 12:44 | |
*** HenryG has joined #openstack | 12:44 | |
*** amitpp has joined #openstack | 12:45 | |
*** ircuser-1 has joined #openstack | 12:45 | |
*** adalbas has joined #openstack | 12:45 | |
*** epcim has quit IRC | 12:46 | |
*** amitpp has left #openstack | 12:47 | |
*** jamie_h has quit IRC | 12:47 | |
*** amitpp has joined #openstack | 12:47 | |
*** naveen has quit IRC | 12:47 | |
*** amitpp has left #openstack | 12:48 | |
*** kitp has joined #openstack | 12:48 | |
*** amitry has joined #openstack | 12:49 | |
*** farsonic has quit IRC | 12:49 | |
*** amitpp has joined #openstack | 12:49 | |
*** l_a_m has joined #openstack | 12:49 | |
*** goodes has quit IRC | 12:50 | |
*** cedrics has joined #openstack | 12:50 | |
*** wink has joined #openstack | 12:50 | |
*** crandquist has joined #openstack | 12:50 | |
|splat| | fixed my novnc issue. had to add iptables rules to allow the nodes to talk over their internal subnet. | 12:51 |
wink | Hey, can I just add a logical volume for something else to the cinder-volumes VG or will cinder tamper with it? | 12:51 |
|splat| | I used packstack to install which only used the headnode external IP | 12:51 |
*** stronghere has quit IRC | 12:51 | |
*** jamie_h has joined #openstack | 12:51 | |
*** crandquist has quit IRC | 12:52 | |
larsks | wink: I think you should be able to add an lv to the cinder vg without ill effect. | 12:52 |
larsks | |splat|: yay! | 12:52 |
*** kitp has quit IRC | 12:53 | |
*** radez_g0n3 is now known as radez | 12:53 | |
*** coredump has quit IRC | 12:54 | |
*** amitry has quit IRC | 12:54 | |
*** itarchitectkev has joined #openstack | 12:54 | |
*** tomoe_ has quit IRC | 12:55 | |
wink | larsks: thanks. | 12:56 |
*** amitpp has left #openstack | 12:56 | |
*** anish_ has quit IRC | 12:57 | |
Infitialis | what kind of monitoring tools do you guys use for Openstack? | 12:59 |
*** dguitarbite has quit IRC | 12:59 | |
*** ramishra_ has quit IRC | 12:59 | |
*** bmurt has joined #openstack | 13:00 | |
*** simon-AS559 has joined #openstack | 13:00 | |
*** neeti has joined #openstack | 13:00 | |
*** andreas__ has joined #openstack | 13:00 | |
*** IanGovett has quit IRC | 13:00 | |
*** IanGovett1 has joined #openstack | 13:00 | |
*** ramishra has joined #openstack | 13:01 | |
*** flaper87 is now known as flaper87|afk | 13:02 | |
*** liam__ has joined #openstack | 13:02 | |
*** liam__ has quit IRC | 13:02 | |
*** jamespage_ has joined #openstack | 13:03 | |
*** engkur has quit IRC | 13:04 | |
*** jamespage_ has quit IRC | 13:04 | |
*** _cjones_ has joined #openstack | 13:04 | |
*** simon-AS559 has quit IRC | 13:04 | |
*** ahasenack has quit IRC | 13:05 | |
*** scuttlemonkey has quit IRC | 13:05 | |
*** noslzzp has joined #openstack | 13:06 | |
*** zz_gondoi is now known as gondoi | 13:07 | |
*** jmckind has joined #openstack | 13:07 | |
*** jergerber has joined #openstack | 13:07 | |
|splat| | hmm. fedora, centos, and cirros have no issue using both the internal network and external network. but the windows vm i made with cloudbase-init seems to only be working on the internal network. and strangely, i can't ping it using ip netns | 13:08 |
*** HenryG has quit IRC | 13:08 | |
*** caleb_ has joined #openstack | 13:08 | |
|splat| | by external i mean a floating ip | 13:08 |
*** _cjones_ has quit IRC | 13:09 | |
*** stronghere has joined #openstack | 13:10 | |
*** TnG has quit IRC | 13:11 | |
*** sroy_ has joined #openstack | 13:12 | |
*** georgem2 has joined #openstack | 13:13 | |
*** egallen has quit IRC | 13:13 | |
*** dizquierdo is now known as dizquierdo_afk | 13:14 | |
*** Sivan has joined #openstack | 13:14 | |
*** ramishra has quit IRC | 13:14 | |
*** galstrom is now known as galstrom_zzz | 13:14 | |
*** fnaval has joined #openstack | 13:15 | |
*** Sivan has quit IRC | 13:15 | |
*** ramishra has joined #openstack | 13:15 | |
*** mattgriffin has joined #openstack | 13:16 | |
*** nkhare has joined #openstack | 13:16 | |
*** ajc_ has joined #openstack | 13:17 | |
*** kaizer has joined #openstack | 13:17 | |
*** marcusvrn has joined #openstack | 13:18 | |
*** aeperezt has joined #openstack | 13:19 | |
kaizer | Hi, does anyone knows if its legal or not to run OSX VM on non Apple machines? My first tought would be to say its not legal, but im not sure.. | 13:19 |
*** meylor has joined #openstack | 13:19 | |
*** mostly_d34dh0r53 is now known as d34dh0r53 | 13:20 | |
meylor | when starting an instance; is there a way to pass in the hostname info other than through a user-data script? | 13:20 |
mat128 | ianal, but iirc you could legally run OSX vms on Apple machines but not anywhere else. | 13:20 |
mat128 | meylor: cloudinit should take the instance name and set it as your hostname | 13:20 |
*** egallen has joined #openstack | 13:21 | |
*** kashyapk has joined #openstack | 13:21 | |
*** ayoung has joined #openstack | 13:21 | |
meylor | mat128: my hostname is being set as the {instance_name}.{region_name} | 13:21 |
*** nschroeder has joined #openstack | 13:21 | |
meylor | so the only option is to set the region_name to be the domain? | 13:21 |
*** ivan`` has quit IRC | 13:21 | |
*** jpomero has quit IRC | 13:22 | |
mat128 | meylor: I usually spin up vms with a fqdn such as web1.example.com | 13:22 |
*** thehybridtech has joined #openstack | 13:22 | |
mat128 | and this gets set as my hostname | 13:22 |
*** thehybridtech has quit IRC | 13:22 | |
mat128 | what are you using to configure cloudinit? metadata api? config drive? | 13:22 |
*** jergerber has quit IRC | 13:22 | |
meylor | metadata api i believe | 13:22 |
mat128 | I suggest looking at what the data is | 13:23 |
*** katmandoo has joined #openstack | 13:23 | |
*** bfschott has joined #openstack | 13:23 | |
*** rkdemon has joined #openstack | 13:23 | |
mat128 | try a curl to http://169.254.169.254/ | 13:23 |
*** shibby has joined #openstack | 13:24 | |
*** choirboy has joined #openstack | 13:24 | |
*** ivan`` has joined #openstack | 13:25 | |
kaizer | mat128: so for this post http://blog.definedcode.com/osx-qemu-kvm, it would be only possible to do it on Apple machine right? | 13:26 |
nschroeder | Hello, i am new to openstack and triing a setup following the debian install guide. I am at a point where I can run my first vm. When i boot a vm it goes to error state with "The request you have made requires authentication.". I think this comes from compute node. Is there a way to track down my mistake? To my knowlege I entered a correct keystone account for nova compute. | 13:26 |
*** mdim has joined #openstack | 13:26 | |
*** rkdemon2 has joined #openstack | 13:27 | |
*** bknudson has joined #openstack | 13:27 | |
*** ahasenack has joined #openstack | 13:28 | |
*** rkdemon has quit IRC | 13:28 | |
*** epcim has joined #openstack | 13:28 | |
*** aveek has quit IRC | 13:29 | |
*** andreas__ has quit IRC | 13:29 | |
*** doug-fish has joined #openstack | 13:29 | |
*** cedrics has quit IRC | 13:29 | |
*** HenryG has joined #openstack | 13:29 | |
*** gregmark has joined #openstack | 13:30 | |
georgem2 | nschroeder:check the keystone logs, if the error is caused by failed authentication you should see it in there | 13:30 |
*** abbrown has joined #openstack | 13:31 | |
*** danielbruno has quit IRC | 13:32 | |
nschroeder | georgem2: Thank you for answering. Yes I can see it in the keystone logs: "Authorization failed. The request you have made requires authentication. from 10.150.20.21". But it is not clear to me which user is used (I think the one in /etc/nova/nova.conf on the compute node). Also I do not know what to do to allow the user the request. | 13:33 |
*** srlang has joined #openstack | 13:33 | |
*** jagee has joined #openstack | 13:33 | |
*** rbowen has joined #openstack | 13:34 | |
*** yfauser has joined #openstack | 13:34 | |
*** rotbeard has quit IRC | 13:34 | |
*** wcomartin has quit IRC | 13:35 | |
*** balajiiyer has joined #openstack | 13:36 | |
*** sayan has quit IRC | 13:36 | |
*** goodes has joined #openstack | 13:36 | |
*** FunnyLookinHat has quit IRC | 13:37 | |
*** devnull1_ has joined #openstack | 13:38 | |
*** salgado has quit IRC | 13:38 | |
*** devnull1_ has quit IRC | 13:39 | |
*** itarchitectkev_ has joined #openstack | 13:39 | |
*** devnull1_ has joined #openstack | 13:39 | |
*** devnull1 has quit IRC | 13:40 | |
*** cbader has joined #openstack | 13:40 | |
*** kaizer has quit IRC | 13:41 | |
*** signed8bit has joined #openstack | 13:41 | |
*** jobewan has joined #openstack | 13:41 | |
georgem2 | nschroeder:that sounds to me more like a mysql auth error | 13:42 |
*** itarchitectkev has quit IRC | 13:42 | |
georgem2 | nschroeder:make sure the mysql user you created for keystone is allowed to connect to mysql from that IP address | 13:42 |
|splat| | do i need to do anything special to get windows to recognize the floating ip? | 13:43 |
*** dangers_away is now known as dangers | 13:43 | |
nschroeder | georgem2: I am pretty sure that works. I connected to the mysql and can see a database named kexstone. Also I can create new users without problems | 13:44 |
*** pberis has quit IRC | 13:44 | |
*** starmer_ has joined #openstack | 13:44 | |
georgem2 | nschroeder:try to connect to mysql as user keystone from the keystone node | 13:44 |
*** pradipta is now known as pradipta_away | 13:44 | |
nschroeder | georgem2: ok thank you I will check that | 13:45 |
*** anand_ts has quit IRC | 13:45 | |
*** starmer has quit IRC | 13:45 | |
*** kitp has joined #openstack | 13:45 | |
*** ericgoncz_ has joined #openstack | 13:47 | |
*** habib has joined #openstack | 13:47 | |
*** sandywalsh_ has joined #openstack | 13:48 | |
*** kolesovdv has quit IRC | 13:48 | |
*** kashyapk_ has joined #openstack | 13:48 | |
*** thangp has joined #openstack | 13:49 | |
*** kashyapk has quit IRC | 13:49 | |
*** fnaval has quit IRC | 13:49 | |
nschroeder | georgem2: I checked it, the db credentials from keystone are correct. I think this can not be the problem because I can add new users to keystone and all other authentification works fine. | 13:50 |
*** kbringard has joined #openstack | 13:50 | |
*** katmandoo has quit IRC | 13:50 | |
*** kashyapk_ has quit IRC | 13:50 | |
*** prad has joined #openstack | 13:50 | |
*** meylor has quit IRC | 13:51 | |
*** kashyapk has joined #openstack | 13:51 | |
georgem2 | nschroeder:ok, then enable debug and verbose in nova.conf on the compute node and keystone.conf on the controller and try again, then paste the logs in pastebin | 13:51 |
*** salgado has joined #openstack | 13:51 | |
*** salgado has joined #openstack | 13:51 | |
*** hrybacki has joined #openstack | 13:51 | |
nschroeder | georgem2: I think my nova admin_user or admin_tenant_name has no right to execute the the stuff, keystone denies that. But I am not sure how to allow this operation. How can I allow nova user to start vms? Do I have to add him to the admin role? | 13:51 |
*** pberis has joined #openstack | 13:51 | |
nschroeder | georgem2: ok I will do that | 13:52 |
*** xianghui has quit IRC | 13:53 | |
*** meylor has joined #openstack | 13:53 | |
*** goodes has left #openstack | 13:54 | |
*** goodes has joined #openstack | 13:54 | |
*** kashyapk has quit IRC | 13:55 | |
*** eghobo has joined #openstack | 13:55 | |
*** yaguang has quit IRC | 13:55 | |
*** sballe has joined #openstack | 13:55 | |
*** eguz has quit IRC | 13:56 | |
*** eghobo has quit IRC | 13:56 | |
*** arnaud__ has joined #openstack | 13:57 | |
*** kashyapk has joined #openstack | 13:57 | |
giorgis | iptables -t nat -I POSTROUTING -o eth1 -j MASQUERADE | 13:57 |
giorgis | has to be inserted every time I start an instance! Any ideas how to resolve this? | 13:57 |
*** jpomero has joined #openstack | 13:58 | |
*** sigint88 has joined #openstack | 13:58 | |
georgem2 | nschroeder:the installation doc should mention that you have to create a user for nova that has the admin role in the "services" tenant (step 8 in here http://docs.openstack.org/icehouse/install-guide/install/apt/content/nova-controller.html) | 13:58 |
*** sigint88 has joined #openstack | 13:59 | |
*** spzala has joined #openstack | 14:00 | |
*** jasonni has joined #openstack | 14:00 | |
*** caleb_ has quit IRC | 14:00 | |
*** sigint88 has joined #openstack | 14:00 | |
*** ramki has quit IRC | 14:02 | |
*** ericReeves has joined #openstack | 14:03 | |
*** nacim has joined #openstack | 14:03 | |
*** mmagr has quit IRC | 14:05 | |
*** rkdemon2 has quit IRC | 14:06 | |
*** goodes has quit IRC | 14:06 | |
*** goodes has joined #openstack | 14:07 | |
*** joesavak has joined #openstack | 14:07 | |
*** mu5k17u has joined #openstack | 14:07 | |
*** arezmerita has quit IRC | 14:07 | |
*** ajc_ has quit IRC | 14:07 | |
*** paraa has quit IRC | 14:07 | |
*** balajiiyer has quit IRC | 14:08 | |
*** tsekiyama has joined #openstack | 14:08 | |
*** grfisher has joined #openstack | 14:09 | |
*** nshaikh has quit IRC | 14:09 | |
*** jsavak has joined #openstack | 14:09 | |
*** rkdemon has joined #openstack | 14:09 | |
*** ramishra has quit IRC | 14:09 | |
*** vpanizo has joined #openstack | 14:09 | |
*** vpanizo has quit IRC | 14:09 | |
*** joesavak has quit IRC | 14:12 | |
*** balajiiyer has joined #openstack | 14:12 | |
*** rsmitty has joined #openstack | 14:12 | |
*** fnaval has joined #openstack | 14:14 | |
*** jasonni has quit IRC | 14:14 | |
*** syslink has quit IRC | 14:14 | |
*** troytoman has quit IRC | 14:15 | |
rsmitty | hi all - quick question. I hot-attached a second nic to a guest instance using nova interface-attach. now they are both visible, both have IPs, but I can't SSH into the instance from both interfaces, only the second one works | 14:15 |
*** itarchitectkev_ has quit IRC | 14:15 | |
*** syslink has joined #openstack | 14:15 | |
rsmitty | both nics are on the same network btw | 14:15 |
*** mattgriffin has quit IRC | 14:15 | |
*** jwalcik has joined #openstack | 14:16 | |
*** sigint88 has quit IRC | 14:16 | |
|splat| | giorgis: service iptables save | 14:17 |
*** jamie_h has quit IRC | 14:17 | |
*** FunnyLookinHat has joined #openstack | 14:18 | |
giorgis | splat it doesn't make any difference | 14:18 |
giorgis | I have even put it in the rc.local file | 14:19 |
*** jckasper has joined #openstack | 14:19 | |
giorgis | but every time I start an instance I have to put it again | 14:19 |
*** cedrics has joined #openstack | 14:19 | |
nschroeder | georgem2: I think my problem is that nova has not the admin role, please have a look: http://pastebin.com/uu4cHUgB But I did the user-role-add you mentioned... | 14:19 |
*** itarchitectkev_ has joined #openstack | 14:19 | |
|splat| | giorgis: you have to reinsert that on the baremetal? | 14:19 |
giorgis | splat: yes! | 14:19 |
*** mmagr has joined #openstack | 14:19 | |
*** tmclaugh[work] has joined #openstack | 14:20 | |
*** syslink has quit IRC | 14:20 | |
*** diegows has joined #openstack | 14:20 | |
|splat| | sounds to me like it's getting inserted at the bottom of the iptables chain and every time you start a new instance they insert rules above it | 14:20 |
*** jckasper has quit IRC | 14:20 | |
dmitryme | rsmitty: while poking around wiki I’ve stumbled upon the following blueprint: https://blueprints.launchpad.net/nova/+spec/2-if-1-net | 14:20 |
|splat| | manually edit /etc/sysconfig/iptables, add your line to the top of the chain, restart iptables? | 14:21 |
*** jckasper has joined #openstack | 14:21 | |
_nick | token_flush should work with keystone-manage in havana, correct? | 14:21 |
_nick | if so, anyone know why i'm seeing a NotImplemented exception? | 14:21 |
giorgis | splat: I have done that! | 14:21 |
*** achampio1 has joined #openstack | 14:21 | |
giorgis | splat: I have even put it | 14:21 |
giorgis | in the /etc/rc.local file | 14:21 |
dmitryme | rsmitty: so I guess the answer is, currently it is not possible to have to nics in a single net for a single VM | 14:21 |
dmitryme | s/to/two/ | 14:21 |
*** janslow has joined #openstack | 14:21 | |
rsmitty | hmm, okay weird. guess I'll have to figure something else out for now. Thanks for the help! | 14:22 |
|splat| | then i'm out of ideas. sorry. | 14:22 |
*** badiane_ka has quit IRC | 14:22 | |
giorgis | splat: thanks for your help | 14:23 |
*** primemin1sterp is now known as primeministerp | 14:23 | |
georgem2 | nschroeder:the role assignment looks good, anything useful in the keystone logs with debug enabled? | 14:23 |
*** primeministerp has quit IRC | 14:24 | |
*** primeministerp has joined #openstack | 14:24 | |
*** achampion has quit IRC | 14:24 | |
georgem2 | giorgis:I think you mentioned that you're running nova-network with icehouse...not a very well tested combination probably | 14:24 |
*** sigint88 has joined #openstack | 14:24 | |
*** marcelodieder has quit IRC | 14:24 | |
*** jkienitz has quit IRC | 14:25 | |
giorgis | georgem2: I am back to havana it has the same behavior | 14:25 |
georgem2 | giorgis: but you said that Havana was working fine | 14:25 |
giorgis | georgem2: In a previous installation of Havana | 14:25 |
*** sigint88 has joined #openstack | 14:25 | |
*** jckasper has quit IRC | 14:25 | |
giorgis | now I have the latest Havana and latest CentOS release (in terms of kernel etc.) | 14:26 |
*** r3pl4y has quit IRC | 14:26 | |
|splat| | giorgis: have you tried doing the initial install using RDO since you are on centos? | 14:26 |
nschroeder | georgem2: sorry I am such a noob. For some reason the output did not change but I think I have set the logging level to debug, here is my /etc/keystone/logging.conf : http://pastebin.com/qSzRSRTX | 14:26 |
*** yfauser has joined #openstack | 14:26 | |
*** balajiiyer has left #openstack | 14:26 | |
*** FunnyLookinHat has quit IRC | 14:27 | |
*** jsullivandigs has joined #openstack | 14:27 | |
*** troytoman has joined #openstack | 14:28 | |
*** yfauser has left #openstack | 14:28 | |
*** esheffield has quit IRC | 14:28 | |
georgem2 | nschroeder:enable debug in keystone.conf and restart the keystone service | 14:29 |
giorgis | splat: no! I haven't...but why this would make any difference? | 14:29 |
nschroeder | georgem2: You said my role assignment looks good. Just to clarify: I am using the nova user and service tenant _not_ admin. Does he really have the rights? I think my user-role-list (see http://pastebin.com/uu4cHUgB) implies that only the user with id ...b0a7 has admin role. As far as I understand nova user has no role ... | 14:30 |
*** jtomasek has quit IRC | 14:30 | |
georgem2 | nschroeder: you have to run "keystone user-role-list --user XX --tenant XXX" as admin if you want to see role assignments for other users, by default it shows your own user's roles | 14:31 |
*** blackboxsw has joined #openstack | 14:31 | |
*** FunnyLookinHat has joined #openstack | 14:31 | |
*** rmoe has quit IRC | 14:31 | |
*** choirboy has quit IRC | 14:32 | |
*** Longgeek has quit IRC | 14:33 | |
georgem2 | giorgis:it's been a few release since I deployed with nova-network, but no manual iptables changes should be required, so it's very possible is a configuration issue somewhere | 14:33 |
giorgis | georgem2: I am trying to resolve this with wireshark now | 14:33 |
*** djalil has joined #openstack | 14:34 | |
giorgis | what I am seeing is that if I don't put the NAT rule then the source IP is the 192.* which is the internal IP of the FlatDHCP bridge interface | 14:34 |
*** janslow has quit IRC | 14:34 | |
giorgis | when I insert the rule the source IP is getting to be 153.* (an external IP address of the external ethernet) | 14:34 |
*** zerick has joined #openstack | 14:34 | |
*** aspiers_ has joined #openstack | 14:34 | |
*** paraa has joined #openstack | 14:35 | |
*** troytoman has quit IRC | 14:35 | |
giorgis | so my guess is that without that rule the packets are not routed from the 192.* internal to the 153.* external nic | 14:35 |
*** jgrimm has joined #openstack | 14:35 | |
giorgis | I would go with neutron but I need auto assign of floating IPs when an instance is started | 14:36 |
_nick | can anyone shed any light on why i'm seeing a NotImplemented error with keystone-manage token_flush on havana? | 14:36 |
giorgis | something that to my knowledge is still a blueprint for neutron | 14:36 |
giorgis | am I right? | 14:36 |
*** choirboy has joined #openstack | 14:36 | |
djalil | hy everybody i have a little question with openstack ice house there is no need of multiple rabbitmq account ? | 14:36 |
*** rbowen has quit IRC | 14:37 | |
nschroeder | georgem2: ah ok thank you. I managed to enable debug. Here is the keystone output after a nova delete $instancename: http://pastebin.com/eRu9rPM1 I think i found the problem on my own: The error is my neutron user settings. There is no user called neutron. I will create one and tell you if it works .... | 14:37 |
*** koolhead17 has quit IRC | 14:37 | |
*** mmagr has quit IRC | 14:37 | |
djalil | hy everybody i have a little question with openstack ice house there is no need of multiple rabbitmq account ? | 14:38 |
*** ramishra has joined #openstack | 14:39 | |
*** ktaube has joined #openstack | 14:40 | |
*** goodes has quit IRC | 14:41 | |
georgem2 | giorgis:I don't think there is auto assign floating IPs in Neutron now, but maybe you can change the way you do things to fit in the more mainstream Openstack networking options | 14:41 |
*** pmathews has joined #openstack | 14:41 | |
georgem2 | nschroeder:cool, I guess you rushed to start the first instance before setting up all components :) | 14:41 |
*** janslow has joined #openstack | 14:41 | |
*** troytoman has joined #openstack | 14:41 | |
*** goodes has joined #openstack | 14:42 | |
giorgis | georgem2: I am afraid that this is not an option at the moment! I would like to keep in pace with the recent developments | 14:42 |
*** egallen has quit IRC | 14:42 | |
giorgis | but not right now...and I am still wondering why the Havana version is not working either :( | 14:42 |
*** egallen has joined #openstack | 14:42 | |
*** pballand has joined #openstack | 14:43 | |
georgem2 | rsmitty: about the second NICs connected to the same subnet, check the routing table inside the instance | 14:43 |
*** danwest has quit IRC | 14:43 | |
*** dims_ has joined #openstack | 14:44 | |
*** janslow has quit IRC | 14:44 | |
*** aspiers_ has quit IRC | 14:44 | |
*** deepakcs has joined #openstack | 14:44 | |
rsmitty | georgem2 - yeah, I think that's what's happening. default gw is using the eth1 interface (the one I can SSH into). So it seems like maybe I'm not getting traffic back when I try to SSH into eth0? | 14:44 |
*** djalil has quit IRC | 14:44 | |
*** ramishra has quit IRC | 14:45 | |
*** jaypipes has joined #openstack | 14:45 | |
*** rmoe has joined #openstack | 14:45 | |
*** jsullivandigs has quit IRC | 14:45 | |
*** achampion has joined #openstack | 14:45 | |
rsmitty | that may be okay. I can just set the gateway to the eth0 interface in its ifcfg file. | 14:46 |
*** achampio1 has quit IRC | 14:46 | |
*** jamesa has joined #openstack | 14:47 | |
*** jamesa is now known as janslow | 14:47 | |
georgem2 | rsmitty:you have a default gw set for the subnet in the dhcp settings of the subnet, so the second interface will win | 14:47 |
*** sayan has joined #openstack | 14:47 | |
*** kashyapk has quit IRC | 14:48 | |
*** jprovazn has quit IRC | 14:48 | |
georgem2 | djalil:there is no need for multiple rabbitmq accounts, but you can create them for security purposes | 14:48 |
*** jckasper has joined #openstack | 14:48 | |
*** IanGovett1 has quit IRC | 14:48 | |
rsmitty | ah bummer. okay thanks | 14:48 |
*** jsullivandigs has joined #openstack | 14:49 | |
*** galstrom_zzz is now known as galstrom | 14:49 | |
*** janslow has quit IRC | 14:50 | |
*** vdo has quit IRC | 14:50 | |
*** janslow has joined #openstack | 14:51 | |
*** mikeoutland has joined #openstack | 14:51 | |
*** mdomsch has joined #openstack | 14:51 | |
*** yamamoto has joined #openstack | 14:52 | |
*** ktaube has quit IRC | 14:52 | |
*** mmagr has joined #openstack | 14:52 | |
*** coolsvap|afk is now known as coolsvap | 14:53 | |
*** jecarey has joined #openstack | 14:53 | |
*** nvmme has joined #openstack | 14:53 | |
*** jgrimm has quit IRC | 14:53 | |
*** goodes has quit IRC | 14:54 | |
*** ericgoncz_ has quit IRC | 14:54 | |
*** odyssey4me_ has joined #openstack | 14:55 | |
*** gildub has quit IRC | 14:55 | |
*** esheffield has joined #openstack | 14:55 | |
*** jthorne has joined #openstack | 14:56 | |
giorgis | georgem2 + splat: It seems that without that rule the packets are not going from the flat dhcp interface to the external interface | 14:56 |
*** nvmme has quit IRC | 14:56 | |
giorgis | any reason why this might be blocked?? | 14:56 |
*** jues has joined #openstack | 14:56 | |
*** r3pl4y has joined #openstack | 14:56 | |
*** nileshb has joined #openstack | 14:57 | |
*** fritzroy15 has quit IRC | 14:57 | |
*** lcavassa has quit IRC | 14:58 | |
*** odyssey4me has quit IRC | 14:58 | |
*** jistr has quit IRC | 14:58 | |
*** mrjazzcat has joined #openstack | 14:58 | |
*** ramishra has joined #openstack | 14:59 | |
*** jistr has joined #openstack | 15:00 | |
*** salgado has quit IRC | 15:00 | |
*** furybeat has quit IRC | 15:00 | |
*** hdd_ has quit IRC | 15:01 | |
*** nacim has quit IRC | 15:01 | |
*** sudhi_murthy has joined #openstack | 15:01 | |
*** goodes has joined #openstack | 15:01 | |
*** dschultz has joined #openstack | 15:02 | |
nschroeder | georgem2: Thank you very much, the error is gone now. I learned a lot today, so really thanks. | 15:02 |
*** WackoRob_ has quit IRC | 15:02 | |
*** bkopilov has quit IRC | 15:02 | |
*** WackoRobie has joined #openstack | 15:02 | |
*** enarciso has joined #openstack | 15:03 | |
*** vt102 has quit IRC | 15:03 | |
*** uksysadmin has joined #openstack | 15:04 | |
*** kbringard has quit IRC | 15:04 | |
*** melmoth has quit IRC | 15:04 | |
*** joesavak has joined #openstack | 15:05 | |
drankis_off | Hello. Where I can find list of available keys for commands like "cinder type-key" or "cinder qos-key"? | 15:05 |
*** itarchitectkev_ has quit IRC | 15:05 | |
*** sayan has quit IRC | 15:06 | |
*** anish_ has joined #openstack | 15:06 | |
*** rbak has quit IRC | 15:06 | |
*** koolhead17 has joined #openstack | 15:07 | |
*** jsavak has quit IRC | 15:07 | |
georgem2 | nschroeder:welcome | 15:07 |
*** mrjazzcat has quit IRC | 15:08 | |
*** nkhare has quit IRC | 15:08 | |
*** sayan has joined #openstack | 15:08 | |
*** sudhi_murthy has quit IRC | 15:08 | |
*** atiwari has joined #openstack | 15:08 | |
*** sudhi_murthy has joined #openstack | 15:08 | |
*** eharney has joined #openstack | 15:09 | |
*** r3pl4y has quit IRC | 15:09 | |
*** nvmme has joined #openstack | 15:09 | |
*** coredump has joined #openstack | 15:10 | |
*** jamie_h has joined #openstack | 15:10 | |
georgem2 | giorgis:I don't know, but maybe larsks can help :) | 15:10 |
larsks | georgem2: giorgis: help with what now? | 15:11 |
*** cjellick has joined #openstack | 15:11 | |
*** cjellick has quit IRC | 15:11 | |
giorgis | hi larsks! | 15:11 |
larsks | o/ | 15:11 |
*** cjellick has joined #openstack | 15:11 | |
*** berendt has quit IRC | 15:11 | |
giorgis | I have a very weird problem! My instances cannot get internet access unless I put the iptables -t nat -I POSTROUTING -o eth1 -j MASQUERADE rule | 15:11 |
giorgis | the problem is that this is needed every time an instance is started | 15:12 |
larsks | giorgis: is eth1 part of your external bridge? | 15:12 |
*** uksysadmin has quit IRC | 15:12 | |
*** nvmme has quit IRC | 15:12 | |
*** ericgoncz has joined #openstack | 15:12 | |
giorgis | larsks: eth1 is the external interface (no bridge) | 15:12 |
giorgis | eth0 is the internal bridged with br100 | 15:12 |
*** radez is now known as radez_g0n3 | 15:13 | |
larsks | giorgis: oh, you're using nova-network. I'm much less familar with that; I've been working primarily with neutron. | 15:13 |
*** sudhi_murthy has quit IRC | 15:13 | |
larsks | You shouldn't need to add that rule every time an instance is started -- is it disappearing when you start a new instance? | 15:13 |
*** kevinc_ has joined #openstack | 15:13 | |
giorgis | larsks: yes it's nova :( I wish neutron had the auto-assing ip functionality :) | 15:13 |
*** Infitial_ has joined #openstack | 15:14 | |
giorgis | larsks: is going below the new rules in the nat tables | 15:14 |
*** pck has quit IRC | 15:14 | |
georgem2 | giorgis: I grepped for MASQUERADE in a centos with the openstack-nova-network rpm installed, and the only mention I found is in /usr/lib/python2.6/site-packages/packstack/puppet/templates/provision.pp | 15:15 |
*** starmer_ has quit IRC | 15:15 | |
*** jsavak has joined #openstack | 15:15 | |
georgem2 | giorgis: and it looks like the puppet manifest used by packstack actually adds that rule | 15:15 |
giorgis | larsks: I have tried putting it in the top of /etc/sysconfig/iptables | 15:15 |
*** amuller has quit IRC | 15:15 | |
giorgis | larsks: and also in the /etc/rc.local but nothing worked :( | 15:15 |
*** uksysadmin has joined #openstack | 15:16 | |
*** mmichie has joined #openstack | 15:16 | |
larsks | giorgis: so when that rule is, say, the first rule in the POSTROUTING chain, what happens when you create a new instance? | 15:16 |
giorgis | larsks: both the old and the new instance don't have external network connectivity until I re-insert it | 15:16 |
larsks | giorgis: Can you show me what your POSTROUTING chain looks like (a) after booting a new instance but before fixing things and (b) after fixing things? | 15:17 |
giorgis | sure! | 15:17 |
giorgis | just give me a second | 15:17 |
*** sumanth has joined #openstack | 15:17 | |
*** Infitialis has quit IRC | 15:17 | |
*** dspano has joined #openstack | 15:18 | |
*** achampio1 has joined #openstack | 15:18 | |
*** Infitial_ has quit IRC | 15:18 | |
giorgis | any idea how to paste the lines one below the other directly here? | 15:18 |
giorgis | Chain POSTROUTING (policy ACCEPT) | 15:19 |
*** joesavak has quit IRC | 15:19 | |
giorgis | target prot opt source destination | 15:19 |
giorgis | nova-compute-POSTROUTING all -- anywhere anywhere | 15:19 |
giorgis | nova-network-POSTROUTING all -- anywhere anywhere | 15:19 |
larsks | giorgis: please use pastebin or similar. don't paste in channel! | 15:19 |
*** mbernacc has quit IRC | 15:19 | |
giorgis | thought about that... | 15:19 |
giorgis | doing it right now... | 15:19 |
giorgis | sorry ... | 15:19 |
larsks | You could: iptables -t nat -S | curl -s -T- chunk.io | 15:19 |
*** mrjazzcat has joined #openstack | 15:20 | |
*** pck has joined #openstack | 15:20 | |
giorgis | http://chunk.io/f/8d35c5f33d19466b8c49a4e262031050 | 15:20 |
*** danielbruno has joined #openstack | 15:20 | |
*** matiu has quit IRC | 15:20 | |
*** achampion has quit IRC | 15:21 | |
*** jwalcik has quit IRC | 15:21 | |
*** devoid has joined #openstack | 15:21 | |
giorgis | larsks: with these rules right now the cirros instance doesn't have internet access | 15:21 |
*** nileshb has quit IRC | 15:22 | |
giorgis | larsks: should I put my rule and paste the new rules again? | 15:22 |
*** nileshb has joined #openstack | 15:22 | |
larsks | giorgis: What ip range are your instances using? | 15:22 |
*** pck is now known as pckizer | 15:23 | |
*** artem_panchenko has quit IRC | 15:23 | |
larsks | giorgis: there is already a NAT rule for traffic going out eth1: | 15:23 |
giorgis | larsks: for the internal or external net? | 15:23 |
larsks | giorgis: Both, I guess, just to be sure... | 15:23 |
*** coolsvap is now known as coolsvap|afk | 15:23 | |
*** reidrac has quit IRC | 15:23 | |
giorgis | larsks: the rule there is because it's now in the /etc/sysconfig/iptables | 15:23 |
giorgis | so it comes up with the machine | 15:23 |
giorgis | the machine has an external interface | 15:24 |
giorgis | at a 255.255.255.240 subnet | 15:24 |
giorgis | an internal at 192.168.0.11 | 15:24 |
giorgis | and the bridged network is 10.0.0.0/24 | 15:24 |
*** bdpayne has joined #openstack | 15:24 | |
*** kbringard has joined #openstack | 15:25 | |
larsks | giorgis: Okay, so it looks like the existing nat rule should do the right thing? | 15:25 |
larsks | -A nova-network-snat -s 10.0.0.0/24 -o eth1 -j SNAT --to-source 192.168.0.11 | 15:25 |
larsks | This is called from POSTROUTING -> nova-bostrouting-bottom -> nova-network-snat | 15:25 |
*** scott_w has joined #openstack | 15:25 | |
larsks | That will SNAT any traffic out eth1 from 10.0.0.0/24 to 192.168.0.11. | 15:25 |
larsks | Is that not doing what you expect? | 15:25 |
*** rmoe has quit IRC | 15:25 | |
giorgis | larsks: it's not doing it right now | 15:26 |
giorgis | I have to re-insert it | 15:26 |
giorgis | should I do it to check it ? | 15:26 |
*** r3pl4y has joined #openstack | 15:27 | |
larsks | giorgis: I'm having a hard time following you...the rule seems to be there, and it looks correct. Is it (a) not triggering (packet count is not increasing) or (b) is it triggering but apparently not doing the right thing? | 15:27 |
*** mdim has quit IRC | 15:27 | |
giorgis | larsks: sorry for confusing you! | 15:28 |
giorgis | from my compute node | 15:28 |
giorgis | I can ssh to the cirros instance | 15:28 |
giorgis | ssh cirros@10.0.0.2 | 15:28 |
*** _ale_ has joined #openstack | 15:28 | |
*** Gamekiller77 has joined #openstack | 15:28 | |
giorgis | when I am in the cirros instance | 15:28 |
*** gargola has quit IRC | 15:29 | |
giorgis | I cannot PING anything outside the compute node | 15:29 |
*** pckizer has quit IRC | 15:29 | |
*** moha_hunt has quit IRC | 15:29 | |
giorgis | ping compute node's public IP is working | 15:29 |
*** ade_b has quit IRC | 15:29 | |
giorgis | but nothing beyond that | 15:29 |
*** FunnyLookinHat has quit IRC | 15:29 | |
giorgis | leaving the instance running | 15:29 |
*** gargola has joined #openstack | 15:30 | |
larsks | giorgis: Right. So, if you start a "ping" in the instance to something outside the compute node, and then run "tcpdump -n -i eth1 icmp", do you see the icmp traffic? If so, what does the source address look like? | 15:30 |
*** rodrigods_ has joined #openstack | 15:30 | |
giorgis | and putting the rule again (it goes on top of the chain) and I can ping from the VM | 15:30 |
giorgis | the source if I remember correctly is 192.* | 15:30 |
*** corXi has quit IRC | 15:31 | |
larsks | giorgis: ...which is what you want, right? Because your host's address is 192.168.0.11. Is that correct? | 15:31 |
giorgis | yes! the internal | 15:31 |
*** taj has quit IRC | 15:31 | |
giorgis | but is not routed to the external | 15:31 |
larsks | On which interface is the "external" address? | 15:31 |
giorgis | eth1 | 15:32 |
*** achampion has joined #openstack | 15:32 | |
larsks | ...so which interface is 192.168.0.11? | 15:32 |
*** nlevinki has quit IRC | 15:32 | |
giorgis | eth0 | 15:32 |
*** a_le has joined #openstack | 15:32 | |
*** bluenemo has joined #openstack | 15:32 | |
*** pckizer has joined #openstack | 15:33 | |
larsks | Ah, okay. | 15:33 |
*** achampio1 has quit IRC | 15:33 | |
larsks | giorgis: what is public_interface in your nova.conf? | 15:34 |
*** galstrom is now known as galstrom_zzz | 15:34 | |
*** FunnyLookinHat has joined #openstack | 15:34 | |
*** koolhead17 has quit IRC | 15:34 | |
*** nacim has joined #openstack | 15:34 | |
giorgis | eth1 | 15:34 |
larsks | giorgis: Is my_ip set to your internal or external address? | 15:36 |
*** ttrifonov is now known as ttrifonov_zZzz | 15:36 | |
*** jwalcik has joined #openstack | 15:36 | |
giorgis | internal | 15:36 |
*** coolsvap|afk is now known as coolsvap | 15:36 | |
*** Hithgor has joined #openstack | 15:36 | |
larsks | giorgis: if you change it to your external address and restart your nova services, what do the iptables rules look like? | 15:36 |
giorgis | larsks: let me do it | 15:37 |
Teduardo | Is there a seperate project (other than Nova) for HA/automatically migrating VMs with disks on reliable storage from a failed hypervisor to an available hypervisor? or is the OpenStack HA mechanism focused more on having many many instances with the same application and using load balancing to ensure availablity of that application? | 15:37 |
*** eghobo has joined #openstack | 15:38 | |
*** RabiesCombat has joined #openstack | 15:38 | |
*** arnaud__ has quit IRC | 15:38 | |
*** RabiesCombat is now known as yo | 15:38 | |
kbringard | cloud arch in general is more geared toward horizontal scale-out for HA of applications | 15:38 |
larsks | Teduardo: mostly the latter, although Heat autoscaling groups may also help out. | 15:38 |
odyssey4me_ | Teduardo - there have been some code bits, but nothing has firmed up yet. | 15:38 |
*** weshay has quit IRC | 15:39 | |
*** yo is now known as Guest55112 | 15:39 | |
*** yrabl has quit IRC | 15:39 | |
*** odyssey4me_ is now known as odyssey4me | 15:39 | |
giorgis | larsks: http://chunk.io/f/fcbe05a9d99348fca356add52b9aeceb | 15:39 |
giorgis | larsks: this is the new | 15:39 |
*** Guest55112 is now known as CroxNbazooka | 15:39 | |
*** MarcMorata has quit IRC | 15:39 | |
larsks | giorgis: So that SNAT rule now looks like it should do the right thing. Do you see any different behavior from inside the instance? | 15:39 |
*** leeantho has joined #openstack | 15:39 | |
larsks | That is: -A nova-network-snat -s 10.0.0.0/24 -o eth1 -j SNAT --to-source 153.120.67.215 | 15:39 |
larsks | That should SNAT any traffic going out eth1 from 10.0.0.0/24 to your external ip address. | 15:40 |
giorgis | larsks: YES!!! It can ping!!!! | 15:40 |
*** geekyogi has quit IRC | 15:40 | |
larsks | giorgis: Awesome. | 15:40 |
*** a_le has quit IRC | 15:40 | |
giorgis | larsks: so do I have to put that rule every time?? | 15:40 |
giorgis | larsks: I mean should I leave it in the iptables? | 15:41 |
larsks | giorgis: No, that rule is maintained by nova network. | 15:41 |
larsks | giorgis: It was already working; you just had my_ip set incorrectly for what you want to do. | 15:41 |
Teduardo | So assuming that someone wanted to create a horizontal scale out (which is different than VM HA) scenario in Openstack where each hypervisor had an instance with the same application how can you tell the scheduler that is what you are doing so that it doesn't put all of the VMs on a single hypervisor? It doesn't look like in Horizon a tenant has visibility to which HVs his instances exist | 15:41 |
Teduardo | on. | 15:41 |
*** neeti has quit IRC | 15:41 | |
giorgis | larsks: I have another installation | 15:41 |
giorgis | with the same settings | 15:42 |
giorgis | and it's working... | 15:42 |
larsks | Teduardo: Possibly affinity filters would help with that: http://docs.openstack.org/grizzly/openstack-compute/admin/content/scheduler-filters.html | 15:42 |
giorgis | not really knowing whey... | 15:42 |
Teduardo | larsks: and that is something a user can do in horizon while creating their instances? | 15:42 |
giorgis | larsks: so should I put under my ip always the external IP ? | 15:42 |
*** fpatwa has joined #openstack | 15:42 | |
larsks | Teduardo: ...maybe? It's not something I've actually tried. | 15:43 |
*** fpatwa has left #openstack | 15:43 | |
giorgis | larsks: and does the same apply to vncserver_proxyclient_address?? | 15:43 |
larsks | giorgis: I believe you should have my_ip set to whatever address you want to be used in that SNAT rule. I'm not sure what other implications there are in that setting. | 15:43 |
*** devnull1_ has quit IRC | 15:43 | |
*** spandhe has joined #openstack | 15:43 | |
*** eghobo has quit IRC | 15:44 | |
*** eguz has joined #openstack | 15:44 | |
*** zerick has quit IRC | 15:44 | |
larsks | I don't think you need to change vncserver_proxyclient_address. | 15:44 |
giorgis | larsks: OK! I am removing this rule from the iptables configuration file and let's check what is going to happen | 15:44 |
odyssey4me | Teduardo - no, HV visibility is not appropriate for cloud. The way to do that is with Affinity Groups and the appropriate scheduler filter | 15:44 |
*** eguz has quit IRC | 15:44 | |
*** StuartMI has quit IRC | 15:44 | |
*** eghobo has joined #openstack | 15:44 | |
*** rturk|afk is now known as rturk | 15:44 | |
*** rmoe has joined #openstack | 15:45 | |
*** rodrigods_ has quit IRC | 15:45 | |
*** robsparker has quit IRC | 15:45 | |
*** jistr has quit IRC | 15:46 | |
*** a_le has joined #openstack | 15:46 | |
*** afazekas has quit IRC | 15:47 | |
*** jistr has joined #openstack | 15:47 | |
*** stanchan has quit IRC | 15:47 | |
*** amuller has joined #openstack | 15:48 | |
*** bdpayne has quit IRC | 15:49 | |
*** jcoufal has quit IRC | 15:49 | |
*** brian has joined #openstack | 15:49 | |
*** brian is now known as Guest15263 | 15:50 | |
*** ramishra has quit IRC | 15:50 | |
*** rrubins has joined #openstack | 15:51 | |
*** Guest15263 has quit IRC | 15:51 | |
*** che-arne has joined #openstack | 15:51 | |
*** radez_g0n3 is now known as radez | 15:51 | |
*** balacafalata-bil has joined #openstack | 15:53 | |
*** balacafalata has joined #openstack | 15:53 | |
*** rcarrillocruz has quit IRC | 15:53 | |
*** odyssey4me_ has joined #openstack | 15:53 | |
*** devlaps1 has joined #openstack | 15:54 | |
*** mindpixel has quit IRC | 15:55 | |
*** aimon has quit IRC | 15:56 | |
*** alekibango has joined #openstack | 15:56 | |
*** odyssey4me has quit IRC | 15:56 | |
*** coolsvap is now known as coolsvap|afk | 15:56 | |
*** tim|mint has quit IRC | 15:56 | |
*** nschroeder has quit IRC | 15:57 | |
*** mohits has joined #openstack | 15:57 | |
jues | using nova network flat manager can i expose the virtual machines direct access using public ip address's not using a NAT | 15:57 |
*** ade_b has joined #openstack | 15:57 | |
*** msgodf has quit IRC | 15:57 | |
*** rcarrillocruz has joined #openstack | 15:58 | |
*** badiane_ka has joined #openstack | 15:59 | |
*** sergmelikyan has quit IRC | 15:59 | |
*** egallen has quit IRC | 16:00 | |
*** ramishra has joined #openstack | 16:00 | |
*** robsparker has joined #openstack | 16:00 | |
*** Ruetobas has quit IRC | 16:01 | |
*** dizquierdo_afk is now known as dizquierdo | 16:01 | |
*** jaosorior has quit IRC | 16:02 | |
*** nileshb has quit IRC | 16:02 | |
*** marun_afk is now known as marun | 16:02 | |
*** yottatsa has joined #openstack | 16:03 | |
*** yottatsa has quit IRC | 16:03 | |
*** Ruetobas has joined #openstack | 16:03 | |
*** yottatsa has joined #openstack | 16:03 | |
*** kevinc_ has quit IRC | 16:04 | |
*** glzhao has quit IRC | 16:04 | |
*** odyssey4me has joined #openstack | 16:04 | |
*** glzhao has joined #openstack | 16:04 | |
*** angdraug has joined #openstack | 16:05 | |
*** sergmelikyan has joined #openstack | 16:05 | |
*** starmer has joined #openstack | 16:05 | |
*** blackboxsw has quit IRC | 16:05 | |
*** odyssey4me_ has quit IRC | 16:05 | |
*** ramishra has quit IRC | 16:05 | |
*** weshay has joined #openstack | 16:06 | |
*** kevinc_ has joined #openstack | 16:06 | |
*** IanGovett has joined #openstack | 16:07 | |
*** jrussell has joined #openstack | 16:07 | |
*** navid__ has joined #openstack | 16:07 | |
*** BAKfr has quit IRC | 16:07 | |
*** scott_w has quit IRC | 16:07 | |
*** goodes has quit IRC | 16:07 | |
*** _afazekas is now known as afazekas | 16:08 | |
*** rodrigods_ has joined #openstack | 16:08 | |
*** jcook has joined #openstack | 16:08 | |
*** Ruetobas has quit IRC | 16:09 | |
*** alexlindenlevy has joined #openstack | 16:09 | |
*** jcook has quit IRC | 16:09 | |
*** sputnik13 has joined #openstack | 16:10 | |
*** jcook has joined #openstack | 16:10 | |
*** starmer has quit IRC | 16:10 | |
*** sandywalsh_ has quit IRC | 16:11 | |
*** galstrom_zzz is now known as galstrom | 16:12 | |
*** pantea has quit IRC | 16:12 | |
*** p5ntangle has joined #openstack | 16:12 | |
*** _cjones_ has joined #openstack | 16:12 | |
*** pballand has quit IRC | 16:12 | |
*** StuartMI has joined #openstack | 16:13 | |
*** bluenemo has quit IRC | 16:14 | |
*** Ruetobas has joined #openstack | 16:14 | |
*** sergmelikyan has quit IRC | 16:14 | |
*** p5ntangle has quit IRC | 16:14 | |
*** balacafalata-bil has quit IRC | 16:14 | |
*** balacafalata has quit IRC | 16:14 | |
*** rossk has joined #openstack | 16:14 | |
*** skirk has joined #openstack | 16:16 | |
*** drankis has joined #openstack | 16:17 | |
*** goodes has joined #openstack | 16:17 | |
lrr | I have an issue where openstack thinks there is an instance, but it cannot find it on the hypervisor, and I cannot delete it | 16:17 |
*** sputnik13 has quit IRC | 16:17 | |
*** gyee has joined #openstack | 16:17 | |
lrr | the log says "Found 1 in the database and 0 on the hypervisor." | 16:17 |
*** peret has quit IRC | 16:17 | |
lrr | how can i remove that instance? | 16:17 |
*** bdpayne has joined #openstack | 16:17 | |
*** jrwren has quit IRC | 16:18 | |
*** blackboxsw has joined #openstack | 16:18 | |
*** StuartMI has quit IRC | 16:18 | |
*** sputnik13 has joined #openstack | 16:18 | |
*** rodrigods_ has quit IRC | 16:19 | |
jues | using nova network flat manager can i expose the virtual machines direct access using public ip address's not using a NAT | 16:19 |
*** Trixboxer has joined #openstack | 16:20 | |
*** starmer has joined #openstack | 16:20 | |
*** deepakcs has quit IRC | 16:20 | |
*** jgrimm has joined #openstack | 16:21 | |
*** navid__ has quit IRC | 16:22 | |
*** aimon__ has joined #openstack | 16:22 | |
*** weshay has quit IRC | 16:22 | |
magicrobotmonkey | let's say half my compute nodes have ssds and the other half dont. Is it possible to prefer one or the other when starting an instance? | 16:23 |
giorgis | larsks + gerogem2 : thanks a lot for your help | 16:23 |
giorgis | but it appears that after I have changed my_ip I cannot start a new instance | 16:23 |
*** elrarun has joined #openstack | 16:24 | |
*** cedrics has quit IRC | 16:24 | |
*** rbak has joined #openstack | 16:25 | |
giorgis | I cannot create and boot | 16:25 |
*** rturk is now known as rturk|afk | 16:25 | |
*** starmer has quit IRC | 16:26 | |
*** jmckind has quit IRC | 16:26 | |
*** sballe has quit IRC | 16:26 | |
*** scheuran has quit IRC | 16:27 | |
*** skirk has quit IRC | 16:27 | |
*** bvandenh has quit IRC | 16:28 | |
*** ayoung is now known as ayoung-lunch | 16:28 | |
*** Infitialis has joined #openstack | 16:28 | |
*** mohits has quit IRC | 16:28 | |
*** jmickle has joined #openstack | 16:28 | |
*** che-arne has quit IRC | 16:29 | |
*** StuartMI has joined #openstack | 16:30 | |
*** mdomsch has quit IRC | 16:30 | |
*** jsidhu has joined #openstack | 16:30 | |
*** vuil has joined #openstack | 16:31 | |
*** jistr has quit IRC | 16:31 | |
*** grfisher has quit IRC | 16:32 | |
*** jkienitz has joined #openstack | 16:33 | |
*** r0j4z0 has quit IRC | 16:33 | |
*** sigint881 has joined #openstack | 16:33 | |
*** fester05 has quit IRC | 16:34 | |
*** sigint88 has quit IRC | 16:34 | |
*** jsavak has quit IRC | 16:34 | |
*** jsavak has joined #openstack | 16:34 | |
*** vermarah_ has joined #openstack | 16:35 | |
*** vermarah has joined #openstack | 16:35 | |
*** starmer has joined #openstack | 16:35 | |
*** TobyFlenderson has joined #openstack | 16:36 | |
*** vfiduccia has joined #openstack | 16:37 | |
*** rcarrillocruz has quit IRC | 16:37 | |
*** elo1 has joined #openstack | 16:38 | |
*** asselin_ has quit IRC | 16:38 | |
*** ade_b has quit IRC | 16:39 | |
*** a_le has quit IRC | 16:39 | |
*** devnull1 has joined #openstack | 16:40 | |
*** starmer has quit IRC | 16:40 | |
*** a_le has joined #openstack | 16:40 | |
*** zzelle has joined #openstack | 16:40 | |
*** elo1 has quit IRC | 16:40 | |
*** abbrown has quit IRC | 16:40 | |
*** signed8bit is now known as signed8bit_ZZZzz | 16:41 | |
*** rbowen has joined #openstack | 16:41 | |
*** elo1 has joined #openstack | 16:41 | |
*** weshay has joined #openstack | 16:41 | |
*** ppradhan has joined #openstack | 16:41 | |
*** emagana has joined #openstack | 16:42 | |
*** spandhe_ has joined #openstack | 16:42 | |
*** sputnik13 has quit IRC | 16:42 | |
*** devnull1 has quit IRC | 16:42 | |
*** spandhe has quit IRC | 16:42 | |
*** spandhe_ is now known as spandhe | 16:42 | |
*** spandhe has quit IRC | 16:42 | |
*** rcarrillocruz has joined #openstack | 16:42 | |
*** devnull1 has joined #openstack | 16:43 | |
*** sigint881 has left #openstack | 16:43 | |
*** Infitialis has quit IRC | 16:43 | |
*** sputnik13 has joined #openstack | 16:43 | |
*** asselin has joined #openstack | 16:43 | |
*** vnguyen has joined #openstack | 16:44 | |
TobyFlenderson | trying to boot my first instance. getting an error 500 MessagingTimeout from nova-api when POSTing to /v2/##tenant uuid##/servers... not sure where to go from here. | 16:44 |
*** jwalcik has quit IRC | 16:45 | |
*** MaxV has quit IRC | 16:46 | |
*** melmoth has joined #openstack | 16:46 | |
*** sballe has joined #openstack | 16:46 | |
*** mmagr has quit IRC | 16:47 | |
*** spandhe has joined #openstack | 16:48 | |
*** sputnik13 has quit IRC | 16:48 | |
*** coolsvap|afk is now known as coolsvap | 16:48 | |
*** grfisher has joined #openstack | 16:48 | |
*** stanchan has joined #openstack | 16:48 | |
*** jareddlc has joined #openstack | 16:48 | |
*** itarchitectkev_ has joined #openstack | 16:48 | |
*** yamamoto has quit IRC | 16:49 | |
*** harlowja_away is now known as harlowja | 16:50 | |
*** fsimonce has quit IRC | 16:50 | |
*** jaypipes has quit IRC | 16:50 | |
*** Ananci has joined #openstack | 16:50 | |
*** starmer has joined #openstack | 16:50 | |
*** marcelodieder has joined #openstack | 16:51 | |
*** uksysadmin has quit IRC | 16:51 | |
*** rkdemon has quit IRC | 16:51 | |
*** mrunge has quit IRC | 16:51 | |
*** d34dh0r53 is now known as mostly_d34dh0r53 | 16:52 | |
*** jrwren has joined #openstack | 16:54 | |
*** jrwren has joined #openstack | 16:54 | |
*** fsimonce has joined #openstack | 16:54 | |
*** starmer has quit IRC | 16:55 | |
*** ayoung-lunch is now known as ayoung | 16:56 | |
*** habib has quit IRC | 16:56 | |
*** radez is now known as radez_g0n3 | 16:57 | |
*** grfisher has quit IRC | 16:57 | |
*** jsidhu has quit IRC | 16:58 | |
*** suresh12 has joined #openstack | 16:58 | |
*** lenrow has joined #openstack | 16:58 | |
*** kevinc_ has quit IRC | 16:58 | |
*** sarob has joined #openstack | 16:58 | |
*** jlibosva has quit IRC | 16:59 | |
*** jcook has quit IRC | 17:00 | |
*** amuller has quit IRC | 17:01 | |
*** bilco105 is now known as bilco105_ | 17:01 | |
*** sumanth has quit IRC | 17:01 | |
*** rbak has quit IRC | 17:01 | |
*** marcelodieder has quit IRC | 17:02 | |
*** eghobo has quit IRC | 17:02 | |
*** gszasz_ has quit IRC | 17:03 | |
*** sandywalsh_ has joined #openstack | 17:03 | |
*** syslink has joined #openstack | 17:05 | |
*** melmoth has quit IRC | 17:05 | |
*** starmer has joined #openstack | 17:06 | |
*** evanz has joined #openstack | 17:06 | |
*** derekh_ has quit IRC | 17:06 | |
*** ramishra has joined #openstack | 17:06 | |
*** omachace has joined #openstack | 17:06 | |
larsks | giorgis: what do you see in your nova logs when you try to boot an instance? Are instances failing to boot with an error or getting stuck spawning? | 17:07 |
larsks | TobyFlenderson: First stop: your nova logs, probably in /var/log/nova. | 17:08 |
*** jang has quit IRC | 17:08 | |
giorgis | larsks: I think I have managed to locate the problem... | 17:08 |
giorgis | larsks: It was a two nodes network and the controller node was having the internal IP as my_ip | 17:09 |
choirboy | is this an appropriate place to ask operator questions? I have a question about ethernet vs. infiniband for tenant networking | 17:09 |
giorgis | larsks: Now I am able to boot properly | 17:09 |
larsks | choirboy: this is an appropriate place, but kashyap's suggestion re: the openstack-operators mailing list will probably get you better answers. | 17:09 |
*** barclaac has quit IRC | 17:09 | |
*** syslink has quit IRC | 17:10 | |
*** starmer has quit IRC | 17:10 | |
giorgis | larsks + georgem2 : Thank you very much for all your help!!!! | 17:10 |
*** amarao has quit IRC | 17:10 | |
giorgis | larsks + georgem2 : very much appreciated!!! | 17:10 |
choirboy | yeah, just subscribed, but was hoping for a quicker answer... I'm building my answer file | 17:10 |
*** jamie_h has quit IRC | 17:10 | |
*** ramishra has quit IRC | 17:10 | |
larsks | choirboy: Intuitively, I would say that inifiniband makes a perfectly fine choice for tenant networking, if you expect your instances to be driving a lot of traffic. It would be even better for storage connectivity. Maybe both? | 17:11 |
choirboy | larsks: the root of my questions is really ignorance of how much traffic is expected to go over which network... | 17:11 |
choirboy | I *assume* that the tenant networks would carry a fair amount of traffic, but I could certainly be wrong since this is my first time building this | 17:12 |
*** spandhe has quit IRC | 17:12 | |
*** nsquare has joined #openstack | 17:12 | |
*** devnull1 has quit IRC | 17:12 | |
larsks | choirboy: A question only you can answer! "tenant networks" carry all the network traffic going to and from your instances. So if you're running a popular website, that may be a lot of traffic. If you're just running compute jobs, it might be close to zero. | 17:12 |
*** neetu has joined #openstack | 17:12 | |
*** Guest73881 has quit IRC | 17:12 | |
choirboy | heh - fair point. Right now, this is really just my home network... but I'm trying to make sure I build it the "right way" so that when I do it for real I do it right. | 17:13 |
larsks | choirboy: The thing is, "doing it right" means different things for different deployments. | 17:13 |
*** tms__ has quit IRC | 17:13 | |
choirboy | of course. | 17:13 |
*** rbowen has quit IRC | 17:13 | |
larsks | E.g., if you expect your users to be running memory and storage intensive jobs, you're going to to make different decisions than if you expect everyone to be running externally available web services. | 17:14 |
*** Sir_Desi has joined #openstack | 17:14 | |
choirboy | really, trying to make sure I understand some of the terminology... | 17:14 |
choirboy | larsks: that makes sense | 17:14 |
*** spandhe has joined #openstack | 17:14 | |
TobyFlenderson | larsks: sure, I have been checking all of the nova logs, but I'm not finding anything useful besides the 500 error in nova-api.log | 17:15 |
larsks | TobyFlenderson: Can you pastebin the error (and any traceback leading up to it)? | 17:15 |
*** paragan has quit IRC | 17:16 | |
larsks | TobyFlenderson: Also, other than booting instances, do other things seem to work correctly? uploading/listing images, creating/listing volumes, etc. | 17:16 |
choirboy | given that I want one node to run management services and three compute nodes, the nova conductor service should run on that management node, right? | 17:16 |
larsks | choirboy: That's correct. | 17:16 |
*** omachace has left #openstack | 17:17 | |
larsks | Generally, the only thing running on "compute" nodes is nova-compute (and potentially something like neutron-openvswitch-agent). | 17:17 |
choirboy | cool... so when I'm telling packstack to configure it, I should define the ip address which is on the management network, correct? | 17:17 |
TobyFlenderson | larsks: sure, I'll pastebin the trace. everything else seems to be working, from what I can tell so far. | 17:17 |
*** MarkAtwood has joined #openstack | 17:17 | |
choirboy | ok | 17:17 |
larsks | choirboy: Define *which* ip address? | 17:17 |
choirboy | sorry, in the packstack answer file, CONFIG_NOVA_CONDUCTOR_HOST | 17:17 |
*** reed has joined #openstack | 17:18 | |
*** ProT-0-TypE has quit IRC | 17:18 | |
*** Sir_Desi has quit IRC | 17:18 | |
*** bilco105_ is now known as bilco105 | 17:18 | |
larsks | Yes. In fact, other than NOVA_COMPUTE_HOSTS, all of your _HOST variables should probably point at the same thing. | 17:18 |
larsks | This is actually required in recent packstack releases, where all the _HOST settings have been replaced by a singel CONFIG_CONTROLLER_HOST. | 17:19 |
*** dtx00ff has joined #openstack | 17:19 | |
*** yottatsa has quit IRC | 17:19 | |
choirboy | still trying to wrap my head around a couple of things... since there are three networks - one for external access, one for tenant networking, and one for management traffic, I *assume* that I should define all the management services to use ip addresses on the management network. Is that a sane assumption? | 17:20 |
*** tshefi has quit IRC | 17:20 | |
*** karimb has quit IRC | 17:20 | |
larsks | Yes. | 17:20 |
*** galstrom is now known as galstrom_zzz | 17:20 | |
*** starmer has joined #openstack | 17:20 | |
*** vnguyen has quit IRC | 17:21 | |
*** p5ntangle has joined #openstack | 17:21 | |
*** budman has joined #openstack | 17:22 | |
*** nkrinner has quit IRC | 17:22 | |
*** r0j4z0 has joined #openstack | 17:23 | |
*** andrewa2a has joined #openstack | 17:23 | |
*** starmer has quit IRC | 17:25 | |
|splat| | i seem to have 1 instance stuck in a table somewhere. it doesn't show up on any instance list thru nova, but on the webui on the overview page it says there is 1 instance | 17:25 |
*** sballe has quit IRC | 17:25 | |
choirboy | so if my public address on my management node is 172.31.100.x, my management network is 192.168.x.y and my tenant network is 10.0.0.x, pretty much everything should be on the 192.168.x.y network then, except for the compute nodes which should be on the 182.31.100.x network. | 17:25 |
*** esv has joined #openstack | 17:26 | |
choirboy | sorry typo - compute nodes which should be on the 172.31.100.x network | 17:26 |
*** twoflowers has joined #openstack | 17:26 | |
|splat| | choirboy: i just went thru that same thing. | 17:27 |
|splat| | I have all services on my headnode using my EXT network | 17:27 |
choirboy | wouldn't you want them on the management network, though? | 17:27 |
|splat| | that's what i thought, and ther emight be a way to get more fine grained with it | 17:28 |
*** bilco105 is now known as bilco105_ | 17:28 | |
*** galstrom_zzz is now known as galstrom | 17:28 | |
|splat| | but i was getting pretty hung up on what goes where. so for right now this is how i got it working yesterday | 17:29 |
choirboy | |splat|: for my install, I'm defining everything in my answer file on the management network | 17:29 |
choirboy | except the compute nodes, and they are on the tenant network (I think that's right) | 17:29 |
|splat| | basically i just followed this http://oddbit.com/rdo-hangout-multinode-packstack-slides/ then added in http://openstack.redhat.com/Neutron_with_existing_external_network | 17:29 |
choirboy | oooh, nice | 17:29 |
choirboy | thanks! | 17:29 |
|splat| | then to fix the webvnc, i added rules to all the firewalls to open up the ports on INT | 17:30 |
choirboy | ok | 17:30 |
|splat| | i just did -A INPUT -s <int>/24 -j ACCEPT | 17:30 |
*** coolsvap is now known as coolsvap|afk | 17:30 | |
|splat| | and now it's working. | 17:30 |
|splat| | everything works. finally. | 17:31 |
*** noslzzp has quit IRC | 17:31 | |
|splat| | well. except windows VMs | 17:31 |
|splat| | they're halfway there. | 17:31 |
choirboy | it seems like you'd want to set the ip addresses for all management functions on the management network, then all the compute node addresses on the tenant network, and the CONFIG_NOVA_VNCPROXY_HOST as the public network address | 17:31 |
choirboy | is that right? | 17:31 |
*** jmickle has quit IRC | 17:31 | |
*** mostly_d34dh0r53 is now known as d34dh0r53 | 17:31 | |
|splat| | you don't want anything on tenant network. that's all through the br-int IIRC | 17:32 |
|splat| | i was thinking things like rabbitmq, mysql you'd only want on INT | 17:32 |
choirboy | ok, so then define CONFIG_NOVA_COMPUTE_HOSTS on the management network? | 17:32 |
|splat| | yes public | 17:32 |
*** jcook has joined #openstack | 17:32 | |
|splat| | that might work | 17:33 |
choirboy | wait - on the management network, or the public network? | 17:33 |
*** nacer_ has joined #openstack | 17:33 | |
*** eghobo has joined #openstack | 17:33 | |
choirboy | in my network, there are three subnets - one for public access (e.g. the folks using the OS environment), one for management traffic (rabbit and the like), and one for tenant networking | 17:34 |
*** katmandoo has joined #openstack | 17:34 | |
*** sarob has quit IRC | 17:34 | |
*** eghobo has quit IRC | 17:34 | |
*** fnaval has quit IRC | 17:35 | |
*** ongolaBoy has quit IRC | 17:35 | |
larsks | CONFIG_NOVA_COMPUTE_HOSTS would be on the "management" network. This is for api traffic between the compute hosts and the controller. | 17:35 |
*** starmer has joined #openstack | 17:36 | |
choirboy | ah, ok | 17:36 |
larsks | The only place the "public" network would show up would be for (a) floating ips and (b) external access to your web interface/api services. | 17:36 |
larsks | The "tenant" network would typically have your GRE or VXLAN tunnels between compute hosts and the neutron host. | 17:36 |
choirboy | ok | 17:36 |
choirboy | thanks! | 17:36 |
*** eghobo has joined #openstack | 17:37 | |
*** nacer has quit IRC | 17:37 | |
*** comptona has joined #openstack | 17:37 | |
*** Mixostuff has quit IRC | 17:37 | |
*** CristianF has joined #openstack | 17:37 | |
*** ArcTanSusan has joined #openstack | 17:37 | |
*** rturk|afk is now known as rturk | 17:37 | |
*** WackoRobie has quit IRC | 17:37 | |
*** kevinc_ has joined #openstack | 17:37 | |
*** WackoRobie has joined #openstack | 17:38 | |
*** giorgis has quit IRC | 17:38 | |
*** dosaboy has quit IRC | 17:38 | |
*** nacer_ has quit IRC | 17:39 | |
*** sniperd has quit IRC | 17:39 | |
*** ramishra has joined #openstack | 17:40 | |
*** starmer has quit IRC | 17:40 | |
*** dosaboy has joined #openstack | 17:41 | |
*** WackoRobie has quit IRC | 17:42 | |
*** neetu has quit IRC | 17:43 | |
*** Hithgor has quit IRC | 17:43 | |
*** Zack_Deee has joined #openstack | 17:43 | |
*** ramishra has quit IRC | 17:44 | |
*** rbenali has joined #openstack | 17:44 | |
*** Hithgor has joined #openstack | 17:44 | |
*** drankis has quit IRC | 17:45 | |
*** masayukig has quit IRC | 17:46 | |
*** pelix has quit IRC | 17:47 | |
*** choirboy has quit IRC | 17:47 | |
*** eguz has joined #openstack | 17:48 | |
*** nvmme has joined #openstack | 17:48 | |
*** MarcMorata has joined #openstack | 17:48 | |
*** kevinc_ has quit IRC | 17:48 | |
*** rushil has joined #openstack | 17:49 | |
*** rushil has left #openstack | 17:49 | |
*** underyx is now known as Underyx|off | 17:50 | |
*** starmer has joined #openstack | 17:50 | |
*** masayukig has joined #openstack | 17:51 | |
*** eghobo has quit IRC | 17:51 | |
*** grfisher has joined #openstack | 17:52 | |
*** jtomasek has joined #openstack | 17:53 | |
*** goodes has quit IRC | 17:53 | |
*** Sam-I-Am has quit IRC | 17:53 | |
*** jmckind has joined #openstack | 17:54 | |
*** p5ntangle has quit IRC | 17:54 | |
*** vnguyen has joined #openstack | 17:54 | |
*** sniperd has joined #openstack | 17:55 | |
*** starmer has quit IRC | 17:55 | |
*** sputnik13 has joined #openstack | 17:55 | |
*** nvmme has quit IRC | 17:55 | |
*** budman has quit IRC | 17:55 | |
*** marun has quit IRC | 17:56 | |
*** marun has joined #openstack | 17:56 | |
*** g_306396236 has joined #openstack | 17:56 | |
*** Romik has joined #openstack | 17:57 | |
*** drankis has joined #openstack | 17:58 | |
*** kurt__ has joined #openstack | 17:59 | |
*** shohel has joined #openstack | 17:59 | |
*** emagana has quit IRC | 17:59 | |
*** elrarun has quit IRC | 17:59 | |
*** BurntEnds has joined #openstack | 17:59 | |
*** anish_ has quit IRC | 17:59 | |
*** sniperd has quit IRC | 18:00 | |
*** jecarey_ has joined #openstack | 18:00 | |
*** arnaud__ has joined #openstack | 18:00 | |
*** sniperd has joined #openstack | 18:00 | |
*** jcook has quit IRC | 18:01 | |
*** Infitialis has joined #openstack | 18:01 | |
*** g_306396236 has quit IRC | 18:01 | |
*** emagana has joined #openstack | 18:01 | |
*** Sam-I-Am has joined #openstack | 18:01 | |
*** odyssey4me has quit IRC | 18:02 | |
*** signed8bit_ZZZzz is now known as signed8bit | 18:02 | |
*** signed8bit is now known as signed8bit_ZZZzz | 18:02 | |
*** Zack_Deee has quit IRC | 18:03 | |
*** jecarey has quit IRC | 18:03 | |
*** Ananci has quit IRC | 18:03 | |
*** jwalcik has joined #openstack | 18:03 | |
*** nvmme has joined #openstack | 18:03 | |
*** amcrn has joined #openstack | 18:03 | |
*** mikeoutl_ has joined #openstack | 18:03 | |
*** Infitialis has quit IRC | 18:04 | |
*** nbouthors has joined #openstack | 18:04 | |
*** g_306396236 has joined #openstack | 18:04 | |
*** mikeoutland has quit IRC | 18:04 | |
*** g_306396236 has left #openstack | 18:05 | |
*** elrarun_ has joined #openstack | 18:05 | |
*** jehb has joined #openstack | 18:05 | |
*** starmer has joined #openstack | 18:05 | |
*** nbouthors has quit IRC | 18:06 | |
*** cdent has quit IRC | 18:06 | |
*** bouthors has joined #openstack | 18:06 | |
*** rsmitty has quit IRC | 18:06 | |
*** jmckind has quit IRC | 18:07 | |
*** mgiampapa has joined #openstack | 18:07 | |
*** jmckind has joined #openstack | 18:08 | |
*** J_Man has joined #openstack | 18:08 | |
*** nati_ueno has joined #openstack | 18:08 | |
*** Zack_Deee has joined #openstack | 18:08 | |
*** signed8bit_ZZZzz is now known as signed8bit | 18:09 | |
J_Man | hello all! Question....if you're using legacy nova-network, is there any way to have floating IP's on separate networks? | 18:09 |
*** starmer has quit IRC | 18:10 | |
J_Man | those separate networks being on different ethernet interfaces (or tagged vlans) | 18:10 |
*** melmoth has joined #openstack | 18:10 | |
*** signed8bit has quit IRC | 18:11 | |
*** cmtime has joined #openstack | 18:11 | |
*** WackoRobie has joined #openstack | 18:12 | |
*** rkdemon has joined #openstack | 18:13 | |
*** dtx00ff has quit IRC | 18:14 | |
*** jehb has quit IRC | 18:14 | |
*** eguz has quit IRC | 18:14 | |
*** ashepelev has quit IRC | 18:14 | |
*** dtx00ff has joined #openstack | 18:14 | |
*** eghobo has joined #openstack | 18:14 | |
*** achampion has quit IRC | 18:14 | |
*** bkopilov has joined #openstack | 18:14 | |
*** reed has quit IRC | 18:15 | |
*** reed has joined #openstack | 18:16 | |
*** vnguyen has quit IRC | 18:16 | |
*** ashepelev has joined #openstack | 18:16 | |
*** jrb has joined #openstack | 18:16 | |
*** moha_hunt has joined #openstack | 18:16 | |
*** ttrifonov_zZzz is now known as ttrifonov | 18:16 | |
halbert-away | J_Man: you don't have any control on the API when you request a public ip, which subnet you are getting it from though. | 18:17 |
*** halbert-away is now known as halbert | 18:17 | |
*** kevinc_ has joined #openstack | 18:17 | |
halbert | you're just asking from the service to assign you one from the pool | 18:17 |
*** rturk is now known as rturk|afk | 18:18 | |
*** bkopilov has quit IRC | 18:18 | |
*** rturk|afk is now known as rturk | 18:18 | |
J_Man | halbert - if you have separate pools for each network, tho? | 18:18 |
J_Man | I know with FlatDHCP mode...you have a single interface that is designated as the public interface | 18:19 |
*** bilco105_ is now known as bilco105 | 18:19 | |
J_Man | but these separate subnets would be available to the compute nodes on different interfaces, depending on which subnet | 18:19 |
*** signed8bit has joined #openstack | 18:19 | |
halbert | right J_Man, exactly. | 18:19 |
J_Man | is that doable tho? | 18:19 |
halbert | Let's walk this through | 18:20 |
J_Man | cause all the docs I've read you can only specify one interface as the "public" interface | 18:20 |
*** starmer has joined #openstack | 18:20 | |
halbert | you have 10 vms on a few compute nodes, these vms are part of three different tenants | 18:20 |
halbert | in nova network, a vm can only below to one tenant at a time | 18:20 |
*** nvmme has quit IRC | 18:21 | |
*** sarob has joined #openstack | 18:21 | |
halbert | so in nova-network with vlans, what happens is you would have created a vlan device per tenant on a compute node, and this vlan device would share a bridge with all vms that belong to the tenant that owns that vlan | 18:22 |
J_Man | that's what I've read in regard to the fixed network info | 18:22 |
J_Man | so you segregate vm's for that tenant into their own fixed network | 18:22 |
halbert | now all your packets that come out of the vm veth device, goes to the bridge, gets tagged, and then leaves the bridge via the vlan device. | 18:23 |
halbert | hear me out :) | 18:23 |
J_Man | OK | 18:23 |
jues | using nova network flat manager can i expose the virtual machines direct access using public ip address's not using a private address | 18:23 |
halbert | once your layer 2 packets get tagged and leave the compute node, they go back to the nova-network node, as generally that's where you set your vm's default gw | 18:24 |
J_Man | with you so far | 18:24 |
J_Man | nova-network does snat and dnat at that stage | 18:24 |
*** jtomasek has quit IRC | 18:25 | |
*** starmer has quit IRC | 18:25 | |
halbert | pretty much, if you leave the confines of your private network, you leave via the designated gw of the nova-network node | 18:25 |
*** rbowen has joined #openstack | 18:25 | |
halbert | HOWEVER, and this is a big caveat | 18:25 |
*** bluenemo has joined #openstack | 18:25 | |
*** bluenemo has joined #openstack | 18:25 | |
halbert | while you can stick public network ips of different subnets | 18:25 |
*** sputnik13 has quit IRC | 18:25 | |
halbert | on nova-network's networking node, and you would vlan that shit however which way you want. | 18:25 |
*** balajiiyer has joined #openstack | 18:26 | |
halbert | the packets will pass, however, there's no way for you to say 'this vm, gets this public ip from this range, this vm, gets this public ip from that other range' | 18:26 |
halbert | by way of the euca or nova apis | 18:26 |
*** galstrom is now known as galstrom_zzz | 18:27 | |
halbert | you'd have to write your own thing. | 18:27 |
J_Man | hmm...so you can't specify which floating network a particular VM gets it's IP from | 18:27 |
*** balajiiyer has left #openstack | 18:27 | |
halbert | I don't think you can. | 18:27 |
*** jehb has joined #openstack | 18:27 | |
*** budman has joined #openstack | 18:27 | |
J_Man | honestly, part of me is wondering if we shouldn't just go to neutron | 18:27 |
*** sarob has quit IRC | 18:27 | |
*** jaimef has quit IRC | 18:28 | |
halbert | Well, some people have gotten neutron to work | 18:28 |
halbert | I haven't | 18:28 |
halbert | I'm stuck there right now. | 18:28 |
J_Man | but from everything I'm reading, neutron depends on a dedicated network host, and best you can do is an active/passive setup | 18:28 |
*** bocaneri has quit IRC | 18:28 | |
jidar | I'm not sure doing DNAT/SNAT in a compute node is the right solution for lots and lots of shops :( | 18:28 |
jidar | but I'm new to openstack, so take that with a grain of salt | 18:28 |
halbert | J_Man: yeah, if you are using openvswitch sure | 18:29 |
halbert | but there's got to be a vendor out there that talks to neutron, like the bigswitch dudes, who has something more enterprise ready | 18:29 |
J_Man | our concern with neutron is two-fold: 1) we want to try to avoid single-point-of-failure and 2) we worry about saturating the network link on a single dedicated network node | 18:29 |
*** sarob_ has joined #openstack | 18:29 | |
WormMan | J_Man: luckily we only want a Unicorn... :) | 18:30 |
halbert | J_Man: well, don't quote me on this, but... I'm not sure if you are limited to one network node. | 18:30 |
halbert | you are limited to one network node, per network... | 18:30 |
*** kbringard has quit IRC | 18:30 | |
halbert | ahhh wait, nevermind | 18:30 |
halbert | just thinking out loud... | 18:30 |
J_Man | everything I read indicates best you can do for HA with neutron is active/passive | 18:30 |
halbert | yeah, J_Man that's what it looks like on the guides | 18:31 |
halbert | what's your userbase gonna be looking like? | 18:31 |
*** sarob_ has quit IRC | 18:31 | |
WormMan | there is distributed HA coming.... eventually. But for today you're gonna be talking to vendors | 18:31 |
*** shohel has quit IRC | 18:31 | |
J_Man | 10-15 tenant groups currently...each group will most likely get it's own floating pool | 18:31 |
*** vt102 has joined #openstack | 18:32 | |
*** dizquierdo has quit IRC | 18:32 | |
halbert | how much bandwidth do they need coming and going to other networks? | 18:32 |
*** igordcard has quit IRC | 18:32 | |
*** sarob_ has joined #openstack | 18:32 | |
J_Man | each tenant will probably end up at least in the gigabit/s range | 18:32 |
*** jaimef has joined #openstack | 18:33 | |
*** emaganap has joined #openstack | 18:33 | |
*** jtomasek has joined #openstack | 18:34 | |
halbert | WormMan: can you have more than one nova-network node, and seperate out your nova infrastructure by regions? | 18:34 |
halbert | that way J_Man can split out his tenants across regions and he can scale horizontally? | 18:35 |
*** emagana has quit IRC | 18:35 | |
J_Man | fyi...our current demo cluster is running nova-network multi-host (nova-network on each compute node) | 18:35 |
*** starmer has joined #openstack | 18:36 | |
J_Man | but with only a single floating pool | 18:36 |
J_Man | using FlatDHCP | 18:36 |
J_Man | the way I envision it...we bring more subnets to the public interfaces via tagged vlans, set up multiple bridges, and let the selection of which floating pool determine which bridge the traffic goes out of | 18:38 |
*** shradd_ has joined #openstack | 18:38 | |
*** rturk is now known as rturk|afk | 18:38 | |
halbert | J_Man: hrmn... | 18:39 |
*** bouthors has quit IRC | 18:39 | |
*** yang has quit IRC | 18:39 | |
halbert | suppose you have zones set up per tenants... | 18:39 |
*** jtomasek has quit IRC | 18:40 | |
*** nati_ueno has quit IRC | 18:40 | |
J_Man | just not sure that will work, since all the configs I've seen have a specific interface designated as the public interface | 18:40 |
*** starmer has quit IRC | 18:40 | |
J_Man | and to the linux compute nodes, tagged vlans essentially are independent interfaces | 18:40 |
*** ramishra has joined #openstack | 18:41 | |
halbert | and you have nova-network flat-dhcp multi-host going, so you rope x nodes for a specific tenant. | 18:41 |
halbert | and each tenant has exclusive rights to their compute nodes | 18:41 |
halbert | well... | 18:42 |
J_Man | hmmm...I think I know what you're getting at there | 18:42 |
halbert | you still can't really make sure that you pick the right ip from the floating pool... | 18:42 |
halbert | but | 18:42 |
*** gyee has quit IRC | 18:42 | |
*** moha_hunt has quit IRC | 18:43 | |
halbert | suppose you don't care, you just wanna filter on layer 2. | 18:43 |
halbert | those tenants can't see one another, but your upstream router can see all of them. | 18:43 |
*** bbcmicrocomputer has quit IRC | 18:43 | |
*** shradd_ has quit IRC | 18:43 | |
*** baoli has quit IRC | 18:43 | |
halbert | then your public interface probably can just going into a tagged rather than a trunk port for that tenant... | 18:44 |
halbert | I dunno... sounds very hackish and it would be a mess to troubleshoot | 18:44 |
J_Man | so basically...you're saying "Compute1&2 for tenant1, Compute3&4 for tenant2" | 18:44 |
*** jsidhu has joined #openstack | 18:45 | |
halbert | something like that... | 18:45 |
*** ramishra has quit IRC | 18:45 | |
J_Man | and only connect those compute nodes to the network they need to be on | 18:45 |
*** caleb_ has joined #openstack | 18:45 | |
halbert | and you have multi node flatdhcp running, and connect them to the network they need to be on | 18:45 |
halbert | I've never done this before, and it sounds like it ...could... work ? | 18:45 |
*** tkramer has quit IRC | 18:45 | |
J_Man | yeah, i think it could...but it's not exactly what we were envisioning originally | 18:46 |
halbert | If you can't feel the hesitation from my keystrokes, I feel really uneasy that you might interpret this as a recommendation rather than just a mere possibility :) | 18:46 |
*** jtomasek has joined #openstack | 18:46 | |
J_Man | I understand | 18:46 |
*** jtomasek has quit IRC | 18:46 | |
J_Man | I just feel that, as complex as we already are in our network....to fit the new cluster into what we already have, we're going to have to go to neutron | 18:47 |
*** kevinc_ has quit IRC | 18:47 | |
J_Man | and we're going to have major issues with scale at that point, PLUS the additional hardware cost of buying dedicated network nodes | 18:47 |
halbert | J_Man: I think you should go with the canonical examples (I mean the word rather than the brand) | 18:47 |
WormMan | https://blueprints.launchpad.net/neutron/+spec/neutron-ovs-dvr | 18:47 |
*** jmckind has quit IRC | 18:47 | |
WormMan | there's the blueprint, but it's still mostly hypothetical | 18:48 |
halbert | J_Man: it's rather hazardous to do this politically | 18:48 |
*** kevinc_ has joined #openstack | 18:48 | |
halbert | but you might want to deploy a testing prototype that you expose to clients | 18:48 |
halbert | on a trial basis ? | 18:48 |
halbert | and if they like it, then upgrade the network node with a real vendor solution ? | 18:49 |
J_Man | I've been working on that...it's only internal to our team right now - the networking issue is the only real sticking point...we really don't feel comfortable letting the other groups play until we resolve that | 18:49 |
*** nati_ueno has joined #openstack | 18:50 | |
halbert | J_Man: are you happy with the performance now? | 18:50 |
*** starmer has joined #openstack | 18:50 | |
J_Man | So far, it seems pretty good. I haven't done much stress testing on it however | 18:51 |
cmtime | halbert: I work with J_Man our problem is our setup is simply complex with multiple networks and that is our wall we keep hitting. | 18:51 |
WormMan | neutron will solve all your problems... someday :) | 18:52 |
cmtime | Yes but not till multi node | 18:52 |
*** comay has joined #openstack | 18:53 | |
WormMan | we've looked at some vendors, but haven't yet found anyone in our budget and does exactly what we want(which is basically just multihost in neutron) | 18:53 |
*** vnguyen has joined #openstack | 18:53 | |
cmtime | brocade looks like a option but not sure | 18:53 |
*** peret has joined #openstack | 18:53 | |
*** galstrom_zzz is now known as galstrom | 18:54 | |
WormMan | yea, that's the other problem, weeding through all the buzzwords on vendors sites | 18:54 |
*** rturk|afk is now known as rturk | 18:54 | |
cmtime | Right now we are Front-end multi VLAN and back-end multi VLAN and can not easily get away from that. | 18:54 |
*** yang has joined #openstack | 18:54 | |
*** fnaval has joined #openstack | 18:54 | |
*** starmer has quit IRC | 18:54 | |
WormMan | there's stuff like OpenDaylight and OpenContrail, but once again I can't figure out what they actually DO | 18:55 |
cmtime | With many hardware load balances and ya its complex | 18:55 |
*** bilco105 is now known as bilco105_ | 18:56 | |
WormMan | (well, short of spending a week installing and testing them and finding all the features and missing features) | 18:56 |
halbert | WormMan: yeah, especially like, the whole combination of loading indigo firmware on switches, that talk to floodlight, that you then interface neutron with | 18:56 |
cmtime | Ya I think we need to pay for a consultant that knows at this point but it seems like the options are not around less we hardware route this with a device that talks with openstack | 18:57 |
*** aldavud has quit IRC | 18:57 | |
WormMan | I would love to find 'Neutron in an HA box' but I also haven't found one of those... maybe you'll have better luck | 18:58 |
halbert | cmtime and J_Man, would you prefer another virtualization platform at this point ? | 18:58 |
*** sarob_ has quit IRC | 18:58 | |
*** lori is now known as lori|away | 18:59 | |
halbert | I guess what I wanna say is, why openstack? | 18:59 |
cmtime | Ya any option is okay | 18:59 |
halbert | what does openstack give you now that some of the other free stuff doesn't ? | 18:59 |
cmtime | Here is why | 18:59 |
*** kevinc_ has quit IRC | 18:59 | |
*** a_le has quit IRC | 19:00 | |
*** arnaud__ has quit IRC | 19:00 | |
*** a_le has joined #openstack | 19:00 | |
*** sarob has joined #openstack | 19:01 | |
cmtime | We just wanted to have a controlled VM solution where our customers could manage what they have. And we could over see the larger picture. Right now we are having to manage 50+ racks and be to involved. Our goal is gluster backed storage with a web interface to allow people to turn up nodes when they want. | 19:01 |
*** caleb_ has quit IRC | 19:01 | |
*** scuttlemonkey has joined #openstack | 19:01 | |
* WormMan spends a few hours cursing at his ceph install for 'fun' | 19:01 | |
cmtime | no thank you | 19:02 |
WormMan | at least it's not gluster :) | 19:02 |
*** n0n3 has quit IRC | 19:02 | |
cmtime | =P | 19:02 |
*** amit__ has joined #openstack | 19:02 | |
halbert | My ceph install is actually functional | 19:02 |
cmtime | I think gluster gets a bad name but not hear to fight that fight =P | 19:02 |
WormMan | most of my fun is just getting our puppet speaking properly for Ubuntu 14.04 | 19:03 |
halbert | gluster has improved tremendously in the last few years. | 19:03 |
cmtime | We have 2 500TB glusters that are working well. | 19:03 |
halbert | that's good to hear. | 19:03 |
halbert | more options is more better | 19:03 |
*** adalbas has quit IRC | 19:04 | |
cmtime | but I say that after bashing my head into a wall all week to get windows working with it =P | 19:04 |
halbert | How did you get windows to talk nice to it | 19:04 |
halbert | ? | 19:04 |
cmtime | ctdb and samba | 19:04 |
*** amit__ has quit IRC | 19:04 | |
halbert | oh, so you had a gluster client that in turned shared it out by samba ? | 19:04 |
cmtime | 2 of them ya | 19:05 |
*** jsavak has quit IRC | 19:05 | |
*** Diplomat has joined #openstack | 19:05 | |
*** amit__ has joined #openstack | 19:05 | |
*** starmer has joined #openstack | 19:05 | |
*** CristianF has quit IRC | 19:05 | |
cmtime | performance is equal to a standalone samba server | 19:05 |
Diplomat | guys, any ideas how somebody can hack an instance ? | 19:05 |
*** Diplomat is now known as Guest40112 | 19:05 | |
*** nvmme has joined #openstack | 19:06 | |
*** amit__ has quit IRC | 19:06 | |
halbert | Guest40112: uhhh... they are just vms man. | 19:06 |
*** shibby has quit IRC | 19:06 | |
*** amit__ has joined #openstack | 19:06 | |
Guest40112 | yea, but somebody sent me a funny grub message "echo you got owned" | 19:06 |
Guest40112 | lol | 19:06 |
*** OffTheRails has quit IRC | 19:06 | |
Guest40112 | my passwords are pretty difficult.. | 19:07 |
halbert | Guest40112: what services are you running on the vm? | 19:07 |
*** nati_ueno has quit IRC | 19:07 | |
Guest40112 | cpanel only | 19:07 |
cmtime | Do you have any advice on what other cloud solution we should look at? | 19:07 |
halbert | cmtime: not with what you want. Openstack is perhaps the most stable. | 19:07 |
*** nvmme has quit IRC | 19:07 | |
Guest40112 | damn, i cant change my username lol | 19:08 |
Guest40112 | but anyway yea.. is there a way for me to see how they are able to restart my vm and um.. view this grub thing | 19:08 |
halbert | if you didn't need a nice interface (web and api) for clients, a buddy of really likes the free version of xenserver. there are all manners of command line utils to talk to it. | 19:08 |
halbert | but | 19:08 |
halbert | that's neither here nor there. | 19:08 |
*** kbringard has joined #openstack | 19:09 | |
halbert | Guest40112: they managed to get your grub config, which means they either got the compute node at the bottom, paused your vm, mounted your vm drives and editted the grub config, or your cpanel install is borked. | 19:09 |
*** jaypipes has joined #openstack | 19:09 | |
*** starmer has quit IRC | 19:10 | |
Guest40112 | hmm | 19:10 |
*** paraa has quit IRC | 19:10 | |
halbert | and they managed to use that broken cpanel and leveraged that to get a local root hole. | 19:10 |
*** yang has quit IRC | 19:10 | |
Guest40112 | i wonder how they got that access because i have really strong passwords and a paid cpanel license not some bs | 19:11 |
*** sarob has quit IRC | 19:11 | |
halbert | do you have ssh running on that vm ? | 19:11 |
*** dslevin has left #openstack | 19:11 | |
*** stmi has joined #openstack | 19:11 | |
*** amit__ has quit IRC | 19:11 | |
*** sarob has joined #openstack | 19:11 | |
*** elrarun_ has quit IRC | 19:11 | |
*** amit__ has joined #openstack | 19:11 | |
*** ranger81 has joined #openstack | 19:12 | |
*** anthonyv has joined #openstack | 19:13 | |
*** achampion has joined #openstack | 19:14 | |
*** CroxNbazooka has quit IRC | 19:14 | |
*** evanz has quit IRC | 19:14 | |
anthonyv | hello all I am having an issue getting dns leases. I have a 3 node manual setup via openstack.org docs. I am running the latest icehouse on RHEL6..5. The only way to get leases working is to restart openstack services on the compute node | 19:15 |
anthonyv | I have to do this every time I reboot my instance. | 19:15 |
*** stmi has quit IRC | 19:15 | |
anthonyv | Any clues on what could be wrong | 19:16 |
halbert | dns or dhcp leases ? | 19:16 |
*** gigawhat has joined #openstack | 19:16 | |
anthonyv | sorry dhcp not dns | 19:16 |
*** sarob has quit IRC | 19:16 | |
*** syslink has joined #openstack | 19:16 | |
Guest40112 | halber: yes ssh is running | 19:16 |
*** jthorne has quit IRC | 19:16 | |
Guest40112 | but i can check from logs, wtf is going on | 19:16 |
*** vuil has quit IRC | 19:17 | |
*** nvmme has joined #openstack | 19:17 | |
*** W00die has quit IRC | 19:17 | |
*** gargola has quit IRC | 19:17 | |
halbert | Guest40112: I think that would be best... You should let your openstack admin know what happened | 19:17 |
*** gargola has joined #openstack | 19:17 | |
*** w00dy has joined #openstack | 19:17 | |
halbert | he or she would be interested in that. | 19:17 |
halbert | anthonyv: let's run this back on a play by play | 19:18 |
*** w00dy is now known as Guest43801 | 19:18 | |
halbert | you start a vm... | 19:18 |
halbert | it comes up | 19:18 |
halbert | you get a network assigned to it. | 19:18 |
halbert | (or it wouldn't boot up) | 19:18 |
anthonyv | it boot up fine | 19:18 |
halbert | it boots up fine | 19:18 |
*** yang has joined #openstack | 19:18 | |
anthonyv | fails on getting a lease | 19:18 |
Guest40112 | interesting thing is other vms are all good.. | 19:19 |
*** esv has quit IRC | 19:19 | |
halbert | what networking model are you using? neutron gres ? neutron vlans ? nova-network ? | 19:19 |
*** bilco105_ is now known as bilco105 | 19:19 | |
anthonyv | if I restart the services on the compute node; then ifup eth0 in the instance it come up right away | 19:19 |
anthonyv | neutron ml2 - | 19:20 |
halbert | okay | 19:20 |
*** r3pl4y has quit IRC | 19:20 | |
anthonyv | gre | 19:20 |
halbert | I suck at neutron btw... | 19:20 |
*** stronghere has quit IRC | 19:20 | |
*** syslink has quit IRC | 19:20 | |
halbert | did you restart nova-compute or neutron-nova-agent ? | 19:20 |
anthonyv | me too :-) | 19:20 |
*** starmer has joined #openstack | 19:21 | |
*** sarob has joined #openstack | 19:21 | |
*** dtx00ff has quit IRC | 19:21 | |
anthonyv | neutron-openvswitch-agent | 19:21 |
*** jsullivandigs has quit IRC | 19:21 | |
ranger81 | Can someone tell me how much of service chaining is implemented in Neutron - https://wiki.openstack.org/wiki/Neutron/ServiceInsertionAndChaining | 19:21 |
*** shibby has joined #openstack | 19:22 | |
Guest40112 | somebody tries to brute force login to my cpanel | 19:22 |
anthonyv | well I restart the compute node to beuase use openstack-service restart | 19:22 |
halbert | anthonyv: I think this is where you go into the developers channel | 19:22 |
halbert | okay | 19:22 |
halbert | so you restarted both the neutron agent and the compute service | 19:22 |
anthonyv | yes | 19:22 |
halbert | okay | 19:22 |
*** vnguyen has quit IRC | 19:23 | |
halbert | throw up a vm, and I think the neutron-agent is the culprit, but restart one service and see if it gets the dhcp ip | 19:23 |
halbert | then do the other one and see | 19:23 |
anthonyv | let me give it a try - brb | 19:24 |
halbert | when you restart neutron-agent you rebuild all of your gre tunnels. | 19:24 |
anthonyv | right | 19:24 |
halbert | and when you restart nova-compute you re-register your compute service to the meta-data service, as well as other shit that gets set up | 19:24 |
anthonyv | I think the issues lies there | 19:24 |
halbert | so it could narrow it down on where you wanna look. | 19:25 |
*** starmer has quit IRC | 19:25 | |
*** noslzzp has joined #openstack | 19:25 | |
*** coolsvap|afk has quit IRC | 19:25 | |
anthonyv | k let me try restarting one service at time (brb) | 19:25 |
*** bluenemo has quit IRC | 19:26 | |
WormMan | hmm, apache and wsgi and python hate me... whee | 19:27 |
*** Hasse has joined #openstack | 19:27 | |
halbert | hey WormMan, I got a problem with neutron config, I keep getting these errors: | 19:27 |
*** Pursuit has joined #openstack | 19:27 | |
halbert | message": "Unexpected vif_type=binding_failed", "code": 500, "details": | 19:28 |
halbert | and I get back weird errors from python-libvirt where the binding of the veth failed | 19:28 |
*** baylight has quit IRC | 19:29 | |
WormMan | halbert: hmm, I hit that, it turned out to be one of the 3700 configuration settings | 19:29 |
Pursuit | hello all! anyone have any idea why dhcpcd as installed in Arch and SuSE fails to get a default route? Instances seem to get all of the other routes specified in the subnet config, but not the default. | 19:29 |
halbert | and I get an error on the neutron-server that says 'failed to bind instance....' | 19:29 |
Pursuit | using Neutron/OVS/Vlans if that makes any difference | 19:29 |
halbert | WormMan: yeah I figured. Which one was it for you? | 19:29 |
halbert | cause I've been at this for about a week... | 19:30 |
*** vhoward has left #openstack | 19:30 | |
*** vnguyen has joined #openstack | 19:30 | |
*** achampion has quit IRC | 19:30 | |
WormMan | halbert: I don't remember, I just kept adding redundant settings... make sure the physnets are set properly, make sure all the nova-compute is properly set for nova make sure the proper flags are set on the subnet(or is it the nework) in the neutron db | 19:31 |
WormMan | er nova-compute is set properly for neutron | 19:31 |
halbert | yeah... | 19:31 |
WormMan | my neutron is not yet under config management so I don't have a nice pretty log of all the changes | 19:32 |
halbert | so configuration by monte carlo | 19:32 |
*** erecio has quit IRC | 19:32 | |
halbert | and hulk smash keyboard | 19:32 |
*** erecio has joined #openstack | 19:32 | |
*** coolsvap|afk has joined #openstack | 19:32 | |
*** jsullivandigs has joined #openstack | 19:32 | |
*** kevinc_ has joined #openstack | 19:33 | |
WormMan | hmm, binding of the veth, using OpenVSwitch? | 19:33 |
*** stronghere has joined #openstack | 19:33 | |
halbert | yeah | 19:33 |
*** meylor has quit IRC | 19:34 | |
WormMan | so, all the ovs stuff appears to be working correctly then? the proper kernel module loaded, etc. Also, be sure to check system logs, (syslog, messages) sometimes they have hints as to what really went wrong | 19:34 |
*** bilco105 is now known as bilco105_ | 19:35 | |
*** hrybacki has quit IRC | 19:35 | |
halbert | well, I can see the gre tunnels going from the compute nodes to the network node | 19:35 |
*** starmer has joined #openstack | 19:35 | |
halbert | and that kernel mods are loaded | 19:35 |
halbert | and the root-wrap stuff is returning 0 as a status | 19:36 |
*** bilco105_ is now known as bilco105 | 19:36 | |
*** nvmme has quit IRC | 19:36 | |
*** afazekas is now known as _afazekas_slp | 19:37 | |
*** fnaval has quit IRC | 19:38 | |
*** nvmme has joined #openstack | 19:38 | |
WormMan | hmm, no good suggestions then, I assume you checked the bug trackers then, could be a libvirt problem, version issue or bug | 19:39 |
*** matzie has joined #openstack | 19:39 | |
halbert | I'll go give it a look. thanks dude | 19:39 |
jues | ok so i've asked a couple times in hopes someone would know, but heres another try at it. I am trying to design up an openstack cluster. Currently we are using SolusVM and are utilizings the linux bridging of interfaces to hand out public 205.x.x.x ip's directly to our vm's. And then when it calls for multiple vm's we are throwing up a pfsense vm with dual nics creating an internal/external | 19:39 |
jues | for those customers and then all of the vm's behind that pfsense bridge to the internal interface of the pfsense. Now i was hoping to migrate to OpenStack but with the current model i am using. Is it possible to use Nova-networks and a Flat model ? | 19:39 |
*** starmer has quit IRC | 19:40 | |
*** sushils has quit IRC | 19:41 | |
*** RaginBaj_ has quit IRC | 19:41 | |
*** rbenali has quit IRC | 19:41 | |
matzie | I’m having trouble finding docs on the command-line sytnax to launch an instance with a block device mapping. Can anyone give me a hint please? | 19:41 |
*** ramishra has joined #openstack | 19:42 | |
matzie | want to create volume from image | 19:42 |
halbert | have you created the volume from image yet ? have you initiated the cinder command that downloads the raw image from glance and converts it ? | 19:42 |
matzie | ah I didn’t realise that was a necessary step? | 19:43 |
matzie | I’ve just found http://docs.openstack.org/user-guide/content/create_volume_from_image_and_boot.html | 19:43 |
halbert | yeah, to boot from volume, you need to make a bootable volume first. | 19:43 |
*** jsidhu has quit IRC | 19:43 | |
halbert | and you generally do that by converting something in the image store to the volume store. | 19:43 |
*** Romik has quit IRC | 19:44 | |
*** myMINT has joined #openstack | 19:45 | |
halbert | make sure that works before you experiment with the nova command line | 19:45 |
halbert | the command flags to do it is here: http://docs.openstack.org/trunk/openstack-ops/content/attach_block_storage.html | 19:45 |
*** arnaud__ has joined #openstack | 19:45 | |
J_Man | halbert: WormMan: with neutron - could you have multiple neutron routers, each one handing the routing for it's own tenant? | 19:46 |
*** gyee has joined #openstack | 19:46 | |
*** ramishra has quit IRC | 19:46 | |
matzie | ok thx I’ll dig in that direction, appreciate your help | 19:46 |
halbert | J_Man: I think you really wanna go into #openstack-neutron and ask that | 19:46 |
J_Man | OK | 19:46 |
*** amit__ has quit IRC | 19:46 | |
*** Guest40112 has quit IRC | 19:47 | |
*** noslzzp has quit IRC | 19:47 | |
*** slamont has joined #openstack | 19:49 | |
*** andreas__ has joined #openstack | 19:49 | |
*** nvmme has quit IRC | 19:50 | |
*** starmer has joined #openstack | 19:50 | |
*** WackoRobie has quit IRC | 19:51 | |
*** nati_ueno has joined #openstack | 19:51 | |
*** nvmme has joined #openstack | 19:51 | |
*** Harry51S has quit IRC | 19:52 | |
*** ahasenack has quit IRC | 19:53 | |
*** starmer has quit IRC | 19:55 | |
*** achampion has joined #openstack | 19:55 | |
*** jaimef has quit IRC | 19:56 | |
*** yrabl has joined #openstack | 19:56 | |
*** drankis has quit IRC | 19:56 | |
*** jmickle has joined #openstack | 19:57 | |
jmickle | hey guys | 19:57 |
*** drankis has joined #openstack | 19:57 | |
jmickle | has anyone had any issues with centos root partition resizing to the instance size | 19:58 |
Gamekiller77 | not sure any one follows my problem but i asked what the time out is for horizon it 30 or so minutes and the variable is missing but it SESSION_TIMEOUT= you have to add it to the dashboard settings | 19:58 |
Gamekiller77 | jmickle, via cloud-init yes | 19:58 |
jmickle | Gamekiller77: is there a fix? | 19:59 |
Gamekiller77 | what is your partition setup | 19:59 |
jmickle | im using the public centos 6.5 image | 19:59 |
jmickle | and it just uses a / partition with ext4 | 19:59 |
Gamekiller77 | not KVM | 19:59 |
jmickle | its always 16 GB | 19:59 |
*** masayukig has quit IRC | 19:59 | |
jmickle | regardless of the image size | 19:59 |
*** emaganap has quit IRC | 20:00 | |
*** WackoRobie has joined #openstack | 20:00 | |
*** Hithgor has quit IRC | 20:00 | |
*** emagana has joined #openstack | 20:01 | |
*** Romik has joined #openstack | 20:01 | |
*** esker has joined #openstack | 20:02 | |
*** jaimef has joined #openstack | 20:02 | |
*** erecio has quit IRC | 20:03 | |
*** n0n3 has joined #openstack | 20:03 | |
Gamekiller77 | do you see the cloud-init work at boot time | 20:03 |
*** nvmme has quit IRC | 20:03 | |
*** masayukig has joined #openstack | 20:04 | |
*** weshay has quit IRC | 20:04 | |
*** pixelb has quit IRC | 20:04 | |
*** WackoRobie has quit IRC | 20:04 | |
*** emagana has quit IRC | 20:04 | |
jmickle | hmm let me check the cloud init log | 20:05 |
*** emagana has joined #openstack | 20:05 | |
*** igordcard has joined #openstack | 20:05 | |
*** Hithgor has joined #openstack | 20:05 | |
*** starmer has joined #openstack | 20:05 | |
*** Hithgor has left #openstack | 20:06 | |
*** WackoRobie has joined #openstack | 20:06 | |
*** goodes has joined #openstack | 20:07 | |
jmickle | yeah i just see a no modifications to fstab needed | 20:08 |
jmickle | no errors though | 20:08 |
*** nati_ueno has quit IRC | 20:08 | |
*** baoli has joined #openstack | 20:08 | |
*** WackoRobie has quit IRC | 20:08 | |
*** shibby has quit IRC | 20:09 | |
*** WackoRobie has joined #openstack | 20:09 | |
*** shenk has joined #openstack | 20:09 | |
*** erecio has joined #openstack | 20:09 | |
*** yrabl_ has joined #openstack | 20:10 | |
*** starmer has quit IRC | 20:10 | |
*** nvmme has joined #openstack | 20:10 | |
*** myMINT has quit IRC | 20:10 | |
*** rturk is now known as rturk|afk | 20:11 | |
*** Ananci has joined #openstack | 20:11 | |
*** d34dh0r53 is now known as mostly_d34dh0r53 | 20:11 | |
*** adalbas has joined #openstack | 20:11 | |
*** shenk is now known as shenkz | 20:12 | |
*** alekibango has quit IRC | 20:12 | |
*** weshay has joined #openstack | 20:12 | |
*** mischief_ is now known as mischief | 20:12 | |
*** Barker has quit IRC | 20:13 | |
*** andrewa2a has quit IRC | 20:13 | |
*** rturk|afk is now known as rturk | 20:13 | |
*** WackoRobie has quit IRC | 20:13 | |
*** bilco105 is now known as bilco105_ | 20:13 | |
*** sroy_ has quit IRC | 20:13 | |
*** yrabl has quit IRC | 20:13 | |
*** hackoo has joined #openstack | 20:14 | |
jues | ok so i've asked a couple times in hopes someone would know, but heres another try at it. I am trying to design up an openstack cluster. Currently we are using SolusVM and are utilizings the linux bridging of interfaces to hand out public 205.x.x.x ip's directly to our vm's. And then when it calls for multiple vm's we are throwing up a pfsense vm with dual nics creating an internal/external | 20:14 |
jues | for those customers and then all of the vm's behind that pfsense bridge to the internal interface of the pfsense. Now i was hoping to migrate to OpenStack but with the current model i am using. Is it possible to use Nova-networks and a Flat model ? | 20:14 |
|splat| | is there a way to clean out "ip netns"? it's listen a bunch of qrouters and qdhcps that aren't in existence anymore | 20:15 |
|splat| | s/listen/listing/ | 20:15 |
*** alekibango has joined #openstack | 20:15 | |
*** nvmme has quit IRC | 20:16 | |
*** Sir_Desi has joined #openstack | 20:16 | |
hackoo | what is the path of the VM snapshots in the OpenStack machine ? I want to migrate them to other environment. Is it /var/lib/glance/images ? | 20:16 |
*** cstaubli has joined #openstack | 20:18 | |
*** karimb has joined #openstack | 20:18 | |
*** cstaubli has quit IRC | 20:19 | |
*** ttrifonov is now known as ttrifonov_zZzz | 20:19 | |
*** HenryG has quit IRC | 20:19 | |
*** rturk is now known as rturk|afk | 20:19 | |
*** pballand has joined #openstack | 20:19 | |
*** joesavak has joined #openstack | 20:19 | |
*** rturk|afk is now known as rturk | 20:20 | |
*** itarchitectkev_ has quit IRC | 20:20 | |
*** starmer has joined #openstack | 20:20 | |
*** Sir_Desi has quit IRC | 20:20 | |
*** galstrom is now known as galstrom_zzz | 20:21 | |
*** chyang2 has quit IRC | 20:21 | |
*** alop has joined #openstack | 20:21 | |
*** simon-AS559 has joined #openstack | 20:21 | |
*** jcook has joined #openstack | 20:21 | |
*** shibby has joined #openstack | 20:22 | |
*** dtx00ff has joined #openstack | 20:22 | |
*** nvmme has joined #openstack | 20:23 | |
*** sputnik13 has joined #openstack | 20:23 | |
*** galstrom_zzz is now known as galstrom | 20:24 | |
*** starmer has quit IRC | 20:24 | |
*** scuttlemonkey has quit IRC | 20:25 | |
*** nstrug has joined #openstack | 20:26 | |
*** shenkz has quit IRC | 20:26 | |
*** yrabl has joined #openstack | 20:27 | |
*** sroy has joined #openstack | 20:28 | |
*** ericReeves has quit IRC | 20:28 | |
*** melmoth has quit IRC | 20:29 | |
*** Barker has joined #openstack | 20:29 | |
*** mostly_d34dh0r53 is now known as d34dh0r53 | 20:29 | |
*** yrabl_ has quit IRC | 20:30 | |
*** jwalcik has quit IRC | 20:30 | |
*** marcusvrn has quit IRC | 20:31 | |
*** budman has quit IRC | 20:31 | |
*** vnguyen has quit IRC | 20:32 | |
*** baylight has joined #openstack | 20:32 | |
*** vnguyen has joined #openstack | 20:32 | |
*** jaimef has quit IRC | 20:33 | |
*** ajo|mac has joined #openstack | 20:34 | |
*** julim has quit IRC | 20:34 | |
*** HenryG has joined #openstack | 20:34 | |
*** jsavak has joined #openstack | 20:34 | |
*** nacer has joined #openstack | 20:35 | |
*** goodes has quit IRC | 20:35 | |
*** shenk has joined #openstack | 20:35 | |
*** _ale_ has quit IRC | 20:35 | |
*** starmer has joined #openstack | 20:36 | |
*** shenk is now known as shenkz | 20:36 | |
*** jecarey_ has quit IRC | 20:36 | |
mischief | well crap. | 20:36 |
mischief | i upgraded from 12.04->14.04 yesterday and havana->icehouse | 20:37 |
mischief | now it seems my instances dont get their ip on boot | 20:37 |
*** jaimef has joined #openstack | 20:37 | |
mischief | where can i look? | 20:37 |
*** jcook has quit IRC | 20:38 | |
*** fnaval has joined #openstack | 20:38 | |
*** maxdml has joined #openstack | 20:38 | |
*** joesavak has quit IRC | 20:38 | |
*** Barker has quit IRC | 20:38 | |
*** J_Man has quit IRC | 20:38 | |
*** erecio has quit IRC | 20:38 | |
*** joesavak has joined #openstack | 20:39 | |
*** Barker has joined #openstack | 20:39 | |
*** d34dh0r53 is now known as mostly_d34dh0r53 | 20:39 | |
larsks | mischief: Start probably with the nova-compute log, and possibly the neutron-openvswitch-agent log if you're using neutron. | 20:40 |
*** nacer has quit IRC | 20:40 | |
*** vermarah__ has joined #openstack | 20:40 | |
*** starmer has quit IRC | 20:40 | |
larsks | mischief: ...are the instances booting successfully and then just not getting an ip, or are they failing to boot with some sort of error? | 20:40 |
*** blomquisg has quit IRC | 20:40 | |
*** jsavak has quit IRC | 20:41 | |
mischief | larsks: they just dont get an ip | 20:41 |
mischief | and now i forgot my pw so i cant login to the console.. :| | 20:41 |
mischief | i'm using ubuntu 12.04 cloud image | 20:42 |
*** choirboy has joined #openstack | 20:42 | |
halbert | jues: in a word, maybe. the nova-network node would have all the public ips. All traffic to public ips would traverse to main external interface on the nova-network node | 20:42 |
mischief | i found https://ask.openstack.org/en/question/28297/cloud-init-nonet-waiting-and-fails/ .. | 20:42 |
magicrobotmonkey | they dont have a password | 20:42 |
*** IanGovett has quit IRC | 20:42 | |
*** shenk has joined #openstack | 20:42 | |
magicrobotmonkey | you should use cirros until you get the networking worked out | 20:42 |
halbert | this gets snat and dnatted to the actual vms. | 20:42 |
*** shenk has quit IRC | 20:42 | |
*** ramishra has joined #openstack | 20:42 | |
halbert | so in a way, you can give your vm with pfsense a lot of public ips, you can ask for more than one | 20:43 |
mischief | i guess i can mount the disk in the host and edit the networking config | 20:43 |
mischief | this upgrade sucks | 20:43 |
*** jcook has joined #openstack | 20:43 | |
*** en0x has joined #openstack | 20:43 | |
halbert | but that means you will be doing a double nat. | 20:43 |
halbert | it is technically feasible, but probably not what you want. | 20:43 |
larsks | mischief: I would (a) get working console access and then (b) pull out tcpdump and figure out exactly what is happening with the dhcp requests. | 20:43 |
larsks | mischief: boot a cirros image for testing if you don't remember your existing passwords. | 20:44 |
en0x | hi, I installed openstack but the only issue i have is the networking. my network is 10.1.10.0/24 and i would like to have my virtual servers have external ips in this range. I have no idea how to set this up | 20:44 |
en0x | i read all the docs but i'm confused | 20:44 |
*** Barker has quit IRC | 20:44 | |
mischief | larsks: ok.. have to add it | 20:45 |
*** eglynn_ has quit IRC | 20:45 | |
*** marcelodieder has joined #openstack | 20:45 | |
*** bmurt has quit IRC | 20:45 | |
*** sroy has quit IRC | 20:45 | |
*** n0n3 has quit IRC | 20:46 | |
*** ramishra has quit IRC | 20:47 | |
*** timello has quit IRC | 20:47 | |
*** balajiiyer has joined #openstack | 20:48 | |
mischief | larsks: status: error | 20:49 |
mischief | great -.- | 20:49 |
*** starmer has joined #openstack | 20:50 | |
*** weshay has quit IRC | 20:51 | |
*** samolo has joined #openstack | 20:51 | |
mischief | the web ui shows this | 20:51 |
mischief | http://pastebin.com/raw.php?i=QMZGY53V | 20:51 |
*** vnguyen has quit IRC | 20:51 | |
*** hackoo has quit IRC | 20:51 | |
*** jcook has quit IRC | 20:52 | |
halbert | mischief: I have that error too | 20:53 |
mischief | glad to know i am not alone! | 20:53 |
*** Pursuit has left #openstack | 20:53 | |
*** kevinc_ has quit IRC | 20:53 | |
*** hs634 has joined #openstack | 20:54 | |
*** samolo has quit IRC | 20:54 | |
larsks | mischief: I would take a close look through your neutron logs, in particular the openvswitch-agent log, to see if you spot any errors. | 20:54 |
*** michaelneale has joined #openstack | 20:54 | |
*** starmer has quit IRC | 20:55 | |
*** yrabl has quit IRC | 20:55 | |
choirboy | larsks: back to my earlier questions... if my private/management network is 192.168.x.y and my public network (the one I will be connecting from my "enterprise" from) is 172.31.100.x, I should define the horizon host on the public network, right? So that the management UI is available from the enterprise? | 20:56 |
larsks | choirboy: That seems to make sense, yes. | 20:56 |
choirboy | cool | 20:56 |
mischief | larsks: http://sprunge.us/FEeC ovs-vswitchd.log | 20:57 |
*** morazi has quit IRC | 20:57 | |
*** mmichie has quit IRC | 20:57 | |
mischief | doesn't look too good, but i didnt see any other files with errors. not any in neutron at least | 20:57 |
*** nacer has joined #openstack | 20:57 | |
*** nacer has joined #openstack | 20:58 | |
mischief | this is the only content of neutron/server.log "2014-06-05 13:49:15.778 2142 WARNING neutron.plugins.ml2.managers [req-aebd9161-4f3c-44c8-b357-e379cca3cf6c None] Failed to bind port 9ab45389-1d48-413a-a4c7-c1b8bc1fd558 on host luh3417" | 20:58 |
*** balajiiyer has quit IRC | 20:58 | |
choirboy | same for CONFIG_NOVA_VNCPROXY_HOST - the public network so folks from the enterprise can access VNC, right? | 20:58 |
mischief | which seems bad too :) | 20:58 |
*** prologic has joined #openstack | 20:58 | |
larsks | mischief: not ovs-vswitchd.log. neutron/openvswtich-agent.log | 20:58 |
larsks | choirboy: yup! | 20:58 |
choirboy | cool | 20:58 |
mischief | larsks: empty | 20:58 |
*** prologic has left #openstack | 20:58 | |
larsks | mischief: on both the compute hosts *and* your controller? | 20:59 |
mischief | larsks: there's only one | 20:59 |
mischief | it's all on the same computer | 20:59 |
*** BurntEnds has quit IRC | 20:59 | |
larsks | mischief: Okay. In that case it's very odd that the file is empty. | 20:59 |
larsks | You are using neutron, right? | 21:00 |
*** resker has joined #openstack | 21:00 | |
*** jpomero has quit IRC | 21:00 | |
*** jmickle has quit IRC | 21:00 | |
*** jecarey has joined #openstack | 21:00 | |
mischief | aha | 21:00 |
mischief | larsks: i restarted the neutron-plugin-openvswitch-agent | 21:00 |
mischief | http://sprunge.us/DSiY | 21:00 |
*** ndipanov has quit IRC | 21:01 | |
*** esker has quit IRC | 21:01 | |
larsks | Okay. Then try launching a new instance and see what happens. | 21:02 |
larsks | Consider tailing that log and nova/compute.log while it boots. | 21:02 |
*** marcelodieder has quit IRC | 21:02 | |
*** vfiduccia has left #openstack | 21:02 | |
mischief | same Unexpected vif_type=binding_failed | 21:02 |
*** prad has quit IRC | 21:03 | |
mischief | there's a stacktrace relating to vif_type=binding_failed in nova/nova-compute.log | 21:03 |
*** kevinc_ has joined #openstack | 21:03 | |
*** galstrom has quit IRC | 21:04 | |
mischief | http://sprunge.us/NUhV | 21:04 |
*** mquin has quit IRC | 21:05 | |
*** yfauser has joined #openstack | 21:05 | |
*** starmer has joined #openstack | 21:05 | |
*** yfauser has left #openstack | 21:06 | |
*** mquin has joined #openstack | 21:06 | |
*** jagee has quit IRC | 21:06 | |
*** rfolco has quit IRC | 21:07 | |
halbert | hey mischief, I don't mean to butt in in larsks, but can you check your neutron and nova rootwrap commands and see if they actually return 0 | 21:07 |
*** galstrom_zzz has joined #openstack | 21:07 | |
*** puffrfish has joined #openstack | 21:07 | |
larsks | halbert: feel free to butt in! I'm distracted. | 21:07 |
*** rkdemon has quit IRC | 21:08 | |
*** Barker has joined #openstack | 21:08 | |
*** elo1 has quit IRC | 21:08 | |
*** galstrom_zzz is now known as galstrom | 21:09 | |
*** farsonic has joined #openstack | 21:09 | |
*** vnguyen has joined #openstack | 21:09 | |
*** elo1 has joined #openstack | 21:09 | |
*** elo1 has quit IRC | 21:09 | |
halbert | I've seen it before where the rootwrap stuff getting called by sudo sometimes doesn't work | 21:10 |
halbert | and you have to tweak your sudoers file | 21:10 |
mischief | how do i use rootwrap | 21:10 |
halbert | but yeah, I'm having exactly the same error | 21:10 |
*** joesavak has quit IRC | 21:10 | |
*** starmer has quit IRC | 21:10 | |
zzelle | mischief, must of the time vif_type=binding_failed is a configuration mistake | 21:11 |
*** sgordon has quit IRC | 21:11 | |
*** budman_ has joined #openstack | 21:11 | |
*** giorgis has joined #openstack | 21:11 | |
*** marcelodieder has joined #openstack | 21:11 | |
giorgis | hi again people | 21:12 |
*** nihilifer has joined #openstack | 21:12 | |
giorgis | Error: Package: openstack-utils-2014.1-1.el6.noarch (openstack-icehouse) requires crudini | 21:12 |
giorgis | any ideas? | 21:12 |
*** jehb has quit IRC | 21:13 | |
*** drankis has quit IRC | 21:14 | |
larsks | mischief: re zzelle 's comment: I call it "openstack's most useless error". It generally means something incorrect in your network configuration (which is why I was suggesting watching your neutron logs carefully). | 21:14 |
*** jpomero has joined #openstack | 21:15 | |
giorgis | to answer my own problem epel repo was not enabled!!! | 21:15 |
*** dtrainor has joined #openstack | 21:15 | |
*** blackboxsw has quit IRC | 21:15 | |
dtrainor | Howdy. Are there any user-configurable directives that point to an ove/neutron host, or does that host simply talk to the controller and the controller then tells the other systems where/what the ovs/neutron host is? | 21:15 |
*** nstrug has quit IRC | 21:16 | |
*** slamont has quit IRC | 21:16 | |
mischief | halbert | 21:16 |
mischief | i have never used rootwrap before | 21:16 |
mischief | how do? | 21:16 |
*** sarob has quit IRC | 21:17 | |
*** ericgoncz has quit IRC | 21:17 | |
zzelle | mischief, could you dump your ml2 plugin config ? | 21:17 |
*** pballand has quit IRC | 21:17 | |
mischief | /etc/neutron/plugins/ml2/ml2_conf.ini ? | 21:18 |
*** sarob has joined #openstack | 21:18 | |
*** timello has joined #openstack | 21:18 | |
*** JordanRinke has joined #openstack | 21:18 | |
*** marcelodieder has quit IRC | 21:18 | |
*** JordanRinke has left #openstack | 21:19 | |
*** kevinc_ has quit IRC | 21:19 | |
zzelle | yep | 21:19 |
*** vpanizo has joined #openstack | 21:19 | |
*** anthonyv has quit IRC | 21:19 | |
mischief | http://sprunge.us/Rdgg | 21:19 |
*** kevinc_ has joined #openstack | 21:19 | |
zzelle | mechanism_drivers option is empty | 21:20 |
*** starmer has joined #openstack | 21:20 | |
*** badiane_ka has quit IRC | 21:21 | |
zzelle | mischief, if you are using neutron-plugin-openvswitch, iirc, you should set mechanism_drivers=openvswitch | 21:22 |
mischief | i just followed the upgrade guide :s | 21:22 |
*** nati_ueno has joined #openstack | 21:22 | |
*** sarob has quit IRC | 21:22 | |
*** vnguyen has quit IRC | 21:22 | |
zzelle | could you update it and restart neutron-server ? | 21:23 |
mischief | wait wait | 21:23 |
halbert | zzelle: the mechaism_drivers option is right at the top | 21:23 |
larsks | mischief: what is core_plugin in /etc/neutron/neutron.conf? are you using ml2? | 21:23 |
halbert | it's enabled | 21:23 |
mischief | it's at the top | 21:23 |
zzelle | oups | 21:23 |
mischief | core_plugin = ml2 | 21:23 |
larsks | mischief: thanks. | 21:23 |
halbert | mischief: it looks like what the install/upgrade guide tells you to do. | 21:24 |
mischief | basically i followed http://docs.openstack.org/trunk/openstack-ops/content/upgrades_havana-icehouse-ubuntu.html | 21:24 |
larsks | dtrainor: clients typically discover api endpoints through the service catalog maintained by keystone. | 21:24 |
mischief | to the best of my ability | 21:24 |
*** mmichie has joined #openstack | 21:24 | |
dtrainor | got it. thanks. trying to connect all of the two million dots. | 21:24 |
mischief | too bad there's no one program to sanity check all of your configs. :) | 21:24 |
*** starmer has quit IRC | 21:25 | |
*** rbowen has quit IRC | 21:27 | |
zzelle | mischief, could you dump the associated neutron-plugin-openvswitch-agent stacktrace ? | 21:27 |
*** slamont has joined #openstack | 21:28 | |
mischief | i'm being asked to take a photo with my team.. one moment >.> | 21:29 |
*** farsonic has quit IRC | 21:30 | |
*** tomoe_ has joined #openstack | 21:30 | |
*** stronghere has quit IRC | 21:30 | |
*** sushils has joined #openstack | 21:31 | |
*** nacim has quit IRC | 21:31 | |
*** mkollaro has quit IRC | 21:31 | |
*** Guest43801 is now known as Woodie | 21:32 | |
*** Barker has quit IRC | 21:32 | |
*** lblanchard has quit IRC | 21:32 | |
mischief | zzelle: that would be neutron/openvswitch-agent.log ? | 21:32 |
*** prad has joined #openstack | 21:33 | |
*** jues has quit IRC | 21:33 | |
*** comay has quit IRC | 21:34 | |
*** mkollaro has joined #openstack | 21:34 | |
*** rmartinelli_ has quit IRC | 21:34 | |
*** nacer has quit IRC | 21:35 | |
*** arnaud__ has quit IRC | 21:35 | |
zzelle | mischief, yep | 21:35 |
*** nacer has joined #openstack | 21:35 | |
*** starmer has joined #openstack | 21:36 | |
mischief | zzelle: it's the same as before.. i pasted it a bit earlier http://sprunge.us/gbAc | 21:36 |
zzelle | ERROR neutron.plugins.openvswitch.agent.ovs_neutron_agent [req-74866d6b-d512-4452-b758-987569bafbd7 None] Cannot provision gre network for net-id=38de312f-510c-42e6-bb00-0c6053a22883 - tunneling disabled | 21:36 |
zzelle | mischief, your node does not support gre ! | 21:37 |
mischief | okay.. how do i .. | 21:37 |
mischief | # lsmod | grep gre | 21:38 |
mischief | gre 13796 1 openvswitch | 21:38 |
mischief | :| | 21:38 |
*** nati_uen_ has joined #openstack | 21:39 | |
*** nati_ueno has quit IRC | 21:39 | |
*** kitp has quit IRC | 21:39 | |
zzelle | mischief, is it a virtual machine or lxc machine ? | 21:39 |
mischief | the guests i am trying to boot are VM | 21:39 |
mischief | the compute and controller (basically all of the services) are on one computer | 21:40 |
*** starmer has quit IRC | 21:40 | |
*** sarob has joined #openstack | 21:40 | |
karimb | is there any guide on how to configure rabbit mq for use within icehouse | 21:40 |
*** nacer has quit IRC | 21:40 | |
*** masayukig has quit IRC | 21:40 | |
zzelle | mischief, could you do the following command: | 21:41 |
*** rods has joined #openstack | 21:42 | |
*** suresh12 has quit IRC | 21:42 | |
*** sureshgv_ has quit IRC | 21:42 | |
mischief | yes | 21:43 |
*** ramishra has joined #openstack | 21:43 | |
zzelle | ovs-vsctl add-port br-tun taz -- set taz Interface type=gre | 21:43 |
*** tomoe_ has quit IRC | 21:43 | |
zzelle | ovs-vsctl add-port br-tun taz -- set Interface taz type=gre | 21:43 |
mischief | ovs-vsctl: unknown table "taz" | 21:43 |
*** coredump has quit IRC | 21:44 | |
mischief | i have br-ex br-int and br-tun | 21:44 |
*** ramishra has quit IRC | 21:44 | |
*** ramishra has joined #openstack | 21:45 | |
zzelle | did you try first or last command ? | 21:45 |
mischief | first | 21:45 |
*** sarob has quit IRC | 21:45 | |
*** mostly_d34dh0r53 is now known as d34dh0r53 | 21:45 | |
zzelle | so try last :) | 21:45 |
mischief | ok | 21:46 |
mischief | it worked | 21:46 |
*** masayukig has joined #openstack | 21:46 | |
mischief | Port taz | 21:46 |
mischief | Interface taz | 21:46 |
mischief | type: gre | 21:46 |
*** hrybacki has joined #openstack | 21:46 | |
mischief | so perhaps a configuration problem instead of lacking GRE | 21:46 |
*** cmtime has quit IRC | 21:46 | |
*** Trixboxer has quit IRC | 21:47 | |
*** rodrigods_ has joined #openstack | 21:48 | |
zzelle | mischief, could you give me your ovs version ? last line of 'ovs-vsctl show" and your kernel version | 21:48 |
mischief | ovs_version: "2.0.1" | 21:49 |
mischief | Linux luh3417 3.13.0-27-generic #50-Ubuntu SMP Thu May 15 18:06:16 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux | 21:49 |
*** ramishra has quit IRC | 21:50 | |
zzelle | could enable debug on your plugin-agent and retry you test in order to get more details ? | 21:50 |
*** starmer has joined #openstack | 21:50 | |
*** dims__ has joined #openstack | 21:51 | |
*** g_306396236 has joined #openstack | 21:51 | |
mischief | zzelle: stand by | 21:51 |
zzelle | me .......... | 21:52 |
*** matzie has quit IRC | 21:52 | |
*** g_306396236 has left #openstack | 21:53 | |
*** dims_ has quit IRC | 21:53 | |
*** a_le has quit IRC | 21:53 | |
*** a_le has joined #openstack | 21:54 | |
*** galstrom is now known as galstrom_zzz | 21:54 | |
mischief | zzelle: by debug on plugin agent you mean ml2 or..? | 21:54 |
*** jcook has joined #openstack | 21:54 | |
zzelle | neutron plugin openvswitch | 21:54 |
halbert | mischief: he means, set the debug = True in /etc/neutron/plugins/ml2/ml2_conf.ini | 21:54 |
mischief | oh | 21:55 |
*** Ananci has quit IRC | 21:55 | |
zzelle | i would prefer in /etc/neutron/neutron.conf | 21:55 |
*** starmer has quit IRC | 21:55 | |
*** jcook has quit IRC | 21:56 | |
*** ranger81 has quit IRC | 21:56 | |
*** jcook has joined #openstack | 21:57 | |
*** comay has joined #openstack | 21:57 | |
mischief | zzelle: http://sprunge.us/YQNR | 21:57 |
*** pberis has quit IRC | 21:57 | |
*** jmickle has joined #openstack | 21:57 | |
*** giorgis has quit IRC | 21:57 | |
*** jcook has quit IRC | 21:58 | |
*** ranger81_ has joined #openstack | 21:58 | |
*** dspano has quit IRC | 21:59 | |
zzelle | mischief, which version of neutron are you using trunk ? icehouse ? | 21:59 |
*** jcook has joined #openstack | 21:59 | |
*** danielbruno has quit IRC | 22:00 | |
mischief | zzelle: icehouse | 22:00 |
mischief | i just upgraded | 22:00 |
jmickle | has anyone had problems with cloud init not resizing a disk on launch with centos? | 22:00 |
*** katmandoo has quit IRC | 22:02 | |
*** ajo|mac has quit IRC | 22:03 | |
*** jcook has quit IRC | 22:03 | |
*** thangp has quit IRC | 22:03 | |
*** kbringard has quit IRC | 22:03 | |
*** resker has quit IRC | 22:04 | |
*** galstrom_zzz is now known as galstrom | 22:04 | |
zzelle | i am not fluent with tunnels but it seems you should define AGENT.tunnel_types option | 22:04 |
*** gigawhat has quit IRC | 22:05 | |
*** starmer has joined #openstack | 22:05 | |
*** sarob has joined #openstack | 22:06 | |
*** signed8bit has quit IRC | 22:06 | |
*** frakt_ has quit IRC | 22:06 | |
*** rodrigods_ has quit IRC | 22:07 | |
zzelle | mischief, in ml2_conf.ini or neutron.conf ... set in [AGENT] sectin tunnel_types = gre | 22:07 |
chuckC | hi all, does anyone here know the devstack settings needed to get horizon vm console to work? | 22:07 |
mischief | zzelle: *or*? | 22:07 |
*** blackboxsw has joined #openstack | 22:08 | |
*** jckasper has quit IRC | 22:08 | |
mischief | zzelle: is AGENT a placeholder for ml2 here...? | 22:08 |
zzelle | mischief, choose which one you like most, the effect should be the same :) | 22:08 |
*** frakt has joined #openstack | 22:08 | |
*** slamont has quit IRC | 22:09 | |
*** promulo has joined #openstack | 22:09 | |
*** starmer has quit IRC | 22:10 | |
*** kitp has joined #openstack | 22:10 | |
*** sarob has quit IRC | 22:11 | |
*** MarkAtwood has quit IRC | 22:12 | |
*** gondoi is now known as zz_gondoi | 22:12 | |
*** suresh12 has joined #openstack | 22:12 | |
*** matzie has joined #openstack | 22:13 | |
*** signed8bit has joined #openstack | 22:13 | |
*** nihilifer has quit IRC | 22:14 | |
*** kitp has quit IRC | 22:14 | |
mischief | zzelle: Tunneling cannot be enabled without a valid local_ip. Agent terminated! | 22:15 |
*** sarob has joined #openstack | 22:15 | |
zzelle | so define a local_ip in AGENT | 22:15 |
*** bknudson has quit IRC | 22:16 | |
*** jgrimm has quit IRC | 22:16 | |
*** syslink has joined #openstack | 22:16 | |
mischief | zzelle: is that the public ip? | 22:16 |
*** gigawhat has joined #openstack | 22:16 | |
*** suresh12 has quit IRC | 22:17 | |
zzelle | oups, no it is the ip used by gre tunnels | 22:17 |
*** lykinsbd has joined #openstack | 22:17 | |
zzelle | i check, it is in local_ip in OVS section | 22:17 |
*** hrybacki has quit IRC | 22:18 | |
*** aburan28 has joined #openstack | 22:18 | |
mischief | zzelle: uh, i switched from ovs to ml2 (i think) as recommended by the openstack havana to icehouse upgrade guide | 22:18 |
*** karimb has quit IRC | 22:18 | |
*** evanz has joined #openstack | 22:19 | |
zzelle | mischief, OVS is still used | 22:19 |
zzelle | mischief, before you use OVS core_plugin and plugin-agent | 22:19 |
zzelle | mischief, now you use ML2 core plugin with plugin-agent | 22:20 |
mischief | /etc/neutron/plugins/openvswitch/ovs_neutron_plugin.ini has local_ip set in OVS section | 22:20 |
zzelle | oup, s/plugin-agent/plugin-openvswitch-agent/s | 22:20 |
*** starmer has joined #openstack | 22:21 | |
zzelle | mischief, on my deployment /etc/neutron/plugins/openvswitch/ovs_neutron_plugin.ini is not used | 22:21 |
*** Woodie is now known as W00die | 22:21 | |
zzelle | prefer neutron.conf or ml2_conf.ini | 22:21 |
mischief | err, so i add a [OVS] section to ml2_conf.ini? | 22:21 |
*** syslink has quit IRC | 22:21 | |
zzelle | yep, | 22:21 |
*** n0n3 has joined #openstack | 22:21 | |
*** n0n3 has quit IRC | 22:21 | |
*** n0n3 has joined #openstack | 22:22 | |
zzelle | mischief, if you are not sure of which options are loaded by a service, they are printed in debug logs | 22:22 |
*** JordanRinke has joined #openstack | 22:23 | |
mischief | hm | 22:24 |
mischief | i think its working now | 22:24 |
*** budman_ has quit IRC | 22:24 | |
zzelle | mischief, everything is one node ? | 22:25 |
*** starmer has quit IRC | 22:25 | |
mischief | yes | 22:25 |
mischief | now i can at least boot the instance | 22:25 |
zzelle | mischief, so you don't need gre ... | 22:25 |
mischief | seems like dhcp is still messed up though | 22:25 |
zzelle | mischief, you could use local networks | 22:25 |
*** syslink has joined #openstack | 22:26 | |
mischief | larsks: you suggest cirros earlier? how can i get to the console? | 22:28 |
mischief | ah | 22:28 |
mischief | finally timed out | 22:28 |
*** badiane_ka has joined #openstack | 22:28 | |
*** JordanRinke has quit IRC | 22:28 | |
*** lborda has quit IRC | 22:28 | |
*** syslink has quit IRC | 22:29 | |
mischief | rebooting :| | 22:30 |
*** syslink has joined #openstack | 22:30 | |
*** emagana has quit IRC | 22:30 | |
*** emagana has joined #openstack | 22:30 | |
*** mmichie has quit IRC | 22:30 | |
*** ppradhan has left #openstack | 22:31 | |
*** sayan has quit IRC | 22:31 | |
halbert | zzelle: do you know what this [agent] variable means ? AGENT.l2_population | 22:34 |
*** slamont has joined #openstack | 22:34 | |
zzelle | halbert, yep, it is for gre/vxlan | 22:34 |
*** syslink has quit IRC | 22:34 | |
*** kenhui has joined #openstack | 22:34 | |
zzelle | # (BoolOpt) Flag to enable l2-population extension. This option should only be | 22:36 |
zzelle | # used in conjunction with ml2 plugin and l2population mechanism driver. It'll | 22:36 |
zzelle | # enable plugin to populate remote ports macs and IPs (using fdb_add/remove | 22:36 |
zzelle | # RPC calbbacks instead of tunnel_sync/update) on OVS agents in order to | 22:36 |
zzelle | # optimize tunnel management. | 22:36 |
zzelle | # | 22:36 |
*** starmer has joined #openstack | 22:36 | |
mischief | oh shit | 22:36 |
halbert | So set that to True ? | 22:36 |
*** lsoares has quit IRC | 22:37 | |
*** tmclaugh[work] has quit IRC | 22:37 | |
*** engkur has joined #openstack | 22:38 | |
*** jmickle has quit IRC | 22:38 | |
*** digs has joined #openstack | 22:39 | |
*** digs is now known as Guest70407 | 22:39 | |
zzelle | halbert, you have multiples nodes ? | 22:39 |
*** starmer has quit IRC | 22:40 | |
mischief | i'm beginning to think trying to use openstack was a mistake | 22:40 |
*** jobewan has quit IRC | 22:40 | |
mischief | it's so complicated that it's barely worth the time for such a small use case | 22:41 |
*** eharney has quit IRC | 22:41 | |
*** d34dh0r53 is now known as mostly_d34dh0r53 | 22:41 | |
*** jsullivandigs has quit IRC | 22:42 | |
*** davelowe has quit IRC | 22:42 | |
halbert | zzelle: yeah I do | 22:42 |
halbert | I've got 4 nodes | 22:42 |
*** suresh12 has joined #openstack | 22:42 | |
*** OffTheRails has joined #openstack | 22:42 | |
*** doug-fish has left #openstack | 22:43 | |
zzelle | halbert, you can set it to true ... but it is not mandatory | 22:43 |
halbert | okay | 22:43 |
*** prad has quit IRC | 22:43 | |
halbert | zzelle: I'm still getting the same error mischief was getting | 22:43 |
zzelle | it is a generic error linked to a configuration trouble | 22:44 |
zzelle | halbert, look at mischief config | 22:44 |
zzelle | soorry i have to leave | 22:44 |
*** zzelle has quit IRC | 22:44 | |
*** Guest70407 has quit IRC | 22:45 | |
*** essessv has joined #openstack | 22:45 | |
*** jsullivandigs has joined #openstack | 22:45 | |
*** ramishra has joined #openstack | 22:45 | |
halbert | zzelle, I will if he shares it :) | 22:46 |
halbert | hey mischief, you mind emailing me your neutron.conf, ml2_conf.ini and your nova.conf ? | 22:46 |
mischief | will that fix my dhcp | 22:46 |
mischief | ^.^ | 22:46 |
*** lykinsbd has quit IRC | 22:47 | |
*** Barker has joined #openstack | 22:47 | |
*** lykinsbd has joined #openstack | 22:47 | |
*** jhesketh has quit IRC | 22:47 | |
*** dschultz has quit IRC | 22:48 | |
*** galstrom is now known as galstrom_zzz | 22:49 | |
halbert | nah, your dhcp-agent stuff is in a dhcp-agent.ini though right? | 22:50 |
*** jmickle has joined #openstack | 22:50 | |
*** suresh12 has quit IRC | 22:50 | |
*** ramishra has quit IRC | 22:50 | |
*** fnaval has quit IRC | 22:50 | |
*** starmer has joined #openstack | 22:50 | |
*** lykinsbd has quit IRC | 22:52 | |
*** dangers is now known as dangers_away | 22:52 | |
*** kevinc_ has quit IRC | 22:52 | |
*** syslink has joined #openstack | 22:53 | |
*** katmandoo has joined #openstack | 22:54 | |
*** rods has quit IRC | 22:54 | |
mischief | halbert: yes | 22:54 |
mischief | but it no longer functions | 22:54 |
mischief | no vm gets ip | 22:54 |
mischief | neutron agent-list shows all is fine.. | 22:55 |
*** baoli has quit IRC | 22:55 | |
*** FunnyLookinHat has quit IRC | 22:55 | |
*** starmer has quit IRC | 22:56 | |
*** BurntEnds has joined #openstack | 22:56 | |
halbert | mischief: well, I am still stuck where you were 20 minutes ago | 22:57 |
halbert | so... | 22:57 |
halbert | there was a guy who asked about this in this channel earlier this morning | 22:57 |
halbert | I think #openstack has irc logs | 22:57 |
*** jckasper has joined #openstack | 22:58 | |
mischief | halbert: did you still want my configs | 22:58 |
*** nlahouti has joined #openstack | 22:58 | |
*** newbie123 has joined #openstack | 22:59 | |
*** OffTheRails has quit IRC | 22:59 | |
halbert | yeah mischief, I'll look over them if you don't mind | 22:59 |
halbert | please tarball them up and send them to my email address that I will msg to you | 22:59 |
mischief | stand by | 22:59 |
halbert | thanks | 22:59 |
*** sputnik13 has quit IRC | 22:59 | |
halbert | you are on centos right? | 23:00 |
*** gregmark has quit IRC | 23:00 | |
*** BurntEnds has quit IRC | 23:00 | |
*** sputnik13 has joined #openstack | 23:00 | |
newbie123 | hello! I am attempting to install keystone on SLES11 and have added the repo per the documentation but i am having the same issue described in this bug report https://bugs.launchpad.net/openstack-manuals/+bug/1289280 I run zypper search openstack and see openstack keystone has a srcpackage but no package. Is this normal behavior for the repo? help me i'm a noob | 23:01 |
*** engkur has quit IRC | 23:02 | |
*** sputnik13 has quit IRC | 23:03 | |
mischief | halbert: no | 23:03 |
*** alop has quit IRC | 23:03 | |
mischief | ubuntu 14.04 lts server. | 23:03 |
*** amcrn has quit IRC | 23:03 | |
*** devlaps1 has quit IRC | 23:03 | |
*** Zack_Deee has quit IRC | 23:03 | |
mischief | halbert: see pm | 23:04 |
*** rodrigods_ has joined #openstack | 23:04 | |
*** brokencycle has quit IRC | 23:05 | |
*** starmer has joined #openstack | 23:05 | |
*** ttt_ has joined #openstack | 23:07 | |
*** fnaval has joined #openstack | 23:07 | |
*** suresh12 has joined #openstack | 23:09 | |
mischief | starting to think i should just run docker ._.' | 23:09 |
*** ttt_ has quit IRC | 23:09 | |
*** ranger81 has joined #openstack | 23:10 | |
*** ranger81_ has quit IRC | 23:10 | |
*** kitp has joined #openstack | 23:10 | |
*** starmer has quit IRC | 23:10 | |
*** gildub has joined #openstack | 23:11 | |
*** kevinc_ has joined #openstack | 23:11 | |
*** newbie123 has quit IRC | 23:13 | |
*** essessv has quit IRC | 23:13 | |
*** kitp has quit IRC | 23:13 | |
*** grfisher has quit IRC | 23:13 | |
*** kitp has joined #openstack | 23:14 | |
*** srlang has quit IRC | 23:14 | |
*** jhesketh has joined #openstack | 23:14 | |
*** shibby has quit IRC | 23:15 | |
*** stanchan has quit IRC | 23:16 | |
*** pmathews has quit IRC | 23:17 | |
*** rodrigods_ has quit IRC | 23:17 | |
*** kitp has quit IRC | 23:18 | |
*** n0n3 has joined #openstack | 23:18 | |
*** rodrigods_ has joined #openstack | 23:19 | |
*** stanchan has joined #openstack | 23:20 | |
*** starmer has joined #openstack | 23:20 | |
*** stanchan has quit IRC | 23:21 | |
*** noslzzp has joined #openstack | 23:21 | |
*** jcook has joined #openstack | 23:22 | |
*** davelowe has joined #openstack | 23:23 | |
*** radez_g0n3 is now known as radez | 23:24 | |
*** starmer has quit IRC | 23:25 | |
*** kenhui has quit IRC | 23:26 | |
*** Barker has quit IRC | 23:28 | |
*** nvmme has quit IRC | 23:28 | |
*** rodrigods_ has quit IRC | 23:30 | |
*** alexlindenlevy has quit IRC | 23:31 | |
*** matzie has quit IRC | 23:31 | |
*** tomoe_ has joined #openstack | 23:32 | |
*** elonden has joined #openstack | 23:33 | |
*** sushils has quit IRC | 23:33 | |
*** achampion has quit IRC | 23:33 | |
*** giulivo has quit IRC | 23:34 | |
*** sputnik13 has joined #openstack | 23:34 | |
*** fsimonce has quit IRC | 23:35 | |
*** elonden has quit IRC | 23:35 | |
*** starmer has joined #openstack | 23:36 | |
*** sushils has joined #openstack | 23:36 | |
*** MarcMorata has quit IRC | 23:36 | |
*** starmer has quit IRC | 23:40 | |
*** alekibango_ has joined #openstack | 23:40 | |
*** vpanizo has quit IRC | 23:40 | |
*** sungju has joined #openstack | 23:41 | |
*** alekibango_ has quit IRC | 23:42 | |
*** vpanizo has joined #openstack | 23:42 | |
*** emagana has quit IRC | 23:43 | |
*** alekibango has quit IRC | 23:43 | |
*** tkramer has joined #openstack | 23:44 | |
*** emagana has joined #openstack | 23:45 | |
*** kevinc_ has quit IRC | 23:45 | |
*** jrb has quit IRC | 23:46 | |
*** tkramer has quit IRC | 23:46 | |
*** tkramer has joined #openstack | 23:46 | |
*** ramishra has joined #openstack | 23:46 | |
*** tkramer has quit IRC | 23:47 | |
*** maxdml has quit IRC | 23:48 | |
*** jcook has quit IRC | 23:50 | |
*** starmer has joined #openstack | 23:50 | |
*** ramishra has quit IRC | 23:50 | |
*** Gamekiller77 has quit IRC | 23:51 | |
*** ozialien has quit IRC | 23:51 | |
*** jaypipes has quit IRC | 23:52 | |
*** aimon__ has quit IRC | 23:52 | |
*** jrb has joined #openstack | 23:52 | |
*** emaganap has joined #openstack | 23:54 | |
*** sushils has quit IRC | 23:54 | |
*** starmer has quit IRC | 23:55 | |
*** tkramer has joined #openstack | 23:56 | |
*** emagana has quit IRC | 23:56 | |
*** atiwari has quit IRC | 23:57 | |
*** tsekiyam_ has joined #openstack | 23:59 | |
sarob | mikal you online? | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!