Saturday, 2011-03-12

*** aik has quit IRC00:00
dw_jakeso it's "select 'something' from networks"00:00
kpeppledw_jake: sorry, you can use the paste server at http://paste.openstack.org/ and just post the url pointer. i am looking for the stuff just above that .... usually it says something about 'sudo dnsmasq ... " failing then gives the critical error00:01
dw_jake:P sorry. here is the full error message - http://paste.openstack.org/show/874/00:03
dw_jakekpepple: always forgot to put down your name. forgive me, it's friday :)00:04
kpeppledw_jake: you should throw the "--verbose" flag into your nova.conf file ... what networking are you using flat ? VLAN ?00:05
MotoMilindIs there a utility to euca-bundle-image for a running instance?00:09
MotoMilindsomething where I can create a lvm snapshot and dd the image?00:10
dw_jakekpepple: I actually have the flag set to be true. It still gives me the same error message. I am trying to use flat network as I am trying it out on a VM only.00:10
kpeppledw_jake: can you paste your nova.conf ?00:14
dw_jakekpepple: sure...was just pasting it:) http://paste.openstack.org/show/875/00:14
*** dirakx has quit IRC00:14
kpeppledw_jake: usually that error means that it's not finding the correct database with the sql_connection flag (say using sqlite instead of your mysql db)00:14
*** dirakx has joined #openstack00:14
kpeppledw_jake: it's just '--verbose' with no '=true'00:15
dw_jakekpepple: yea. I have tried '--verbose', '--verbose=1', and lastly '--verbose=true'. All gave me the same error msg00:16
kpeppledw_jake: any more output in the network log ?00:16
dw_jakekpepple: unfortunately no. do I need to restart something ? I guess not00:17
uvirtbotNew bug: #733609 in nova "Failed to spawn an instance :  AttributeError: 'str' object has no attribute 'fileno'" [Undecided,New] https://launchpad.net/bugs/73360900:17
kpeppledw_jake: yes, you'll need to restart nova-network with any nova.conf changes00:17
openstackhudsonProject nova build #632: SUCCESS in 1 min 55 sec: http://hudson.openstack.org/job/nova/632/00:18
openstackhudsonTarmac: Use a consistent naming scheme for XenAPI variables.00:18
kpeppledw_jake: what does 'nova-manage network list' return ?00:18
*** MarcMorata has joined #openstack00:21
dw_jakekpepple: here is the output: http://paste.openstack.org/show/876/. I had restarted the nvoa-network with 'service nova-network --full-restart', still the same thing00:22
*** clauden has quit IRC00:23
*** adiantum has quit IRC00:24
kpeppledw_jake: you don't have the "--network_manager" in your nova.conf file ... it defaults to VLAN without it AFAIK00:27
dw_jakekpepple: ah, i see. Thanks a lot! I will do the config and see if it works. thanks00:28
*** adiantum has joined #openstack00:29
kpeppledw_jake: cool00:30
*** MarcMorata has quit IRC00:42
*** Ryan_Lane is now known as Ryan_Lane|away00:44
*** MotoMilind has quit IRC00:47
dw_jakekpepple: so how does the network-manager insert a table into mysql? I have set the "--network-manager' in nova.conf and created a bridge br100 and have eth0 added to the bridge, and restarted all services. still getting the same errors which make a new instance to be stuck at 'networking' stage :(00:54
*** dragondm has quit IRC00:55
*** jero has joined #openstack00:56
*** jero has left #openstack00:56
kpeppledw_jake: sorry, was away. let me look on flat networking -- on vlan, it starts the dnsmaq process for dhcp and such01:00
*** ewindisch has quit IRC01:00
*** adjohn has joined #openstack01:00
*** ewindisch has joined #openstack01:02
kpeppledw_jake: do you still have multiple networks defined in 'nova-manage network list' ? i don't think flatmanager supports that01:04
dw_jakekpepple: np. yea there is one left. 10.0.0.0/26       255.255.255.19210.0.0.3       None . I tried to delete it, but no success01:06
kpeppledw_jake: it's fine with one network, just not more than that. how are you starting 'nova-network' ? i assume with 'nova-network --flagfile=/etc/nova/nova.conf'01:07
dw_jakekpepple: not really. I just run "nova-network". it does not return to the cmd-line prompt when I ran it with flatfile option01:08
*** joearnol_ has quit IRC01:09
kpeppledw_jake: oh, that could be it. usually you will launch this with something like "/usr/bin/nova-network --flagfile=/etc/nova/nova.conf" otherwise it won't find your conf file01:10
kpeppledw_jake: if it doesn't return to cmd line, press control+z and then type bg at the prompt to force it into the background01:10
*** jc_smith has quit IRC01:11
*** jc_smith has joined #openstack01:11
*** adiantum has quit IRC01:12
dw_jakehmm so why do we want it to run in the background? I have run it with the absolute path, and it does not return so I put it into background now01:12
kpeppledw_jake: that's fine ... what does the log say now ? same database error ?01:13
dw_jakeyea same error :|01:14
kpeppledw_jake: but no stack trace ?01:14
dw_jakekpepple: nope. pretty much the same as the first time I ran into the problem01:15
*** adiantum has joined #openstack01:18
kpeppledw_jake: ok, it's really strange that you aren't getting a full list of your flags, debug logs and a stacktrace ... that's what the --verbose flag is supposed to do. can you bring 'nova-network' back to the foreground with the 'fg' command, kill it (with control+c) and then launch it again with '/usr/bin/nova-network --verbose --flagfile=/etc/nova/nova.conf' ?01:20
dw_jakeah. now I got the stack trace01:21
kpeppledw_jake: okay, your --verbose flag in your nova.conf file is wrong. can you paste the stack trace ?01:22
dw_jakebut I ran "nova-network --verbose" as the "/usr/bin/...." cmd only goes into the background01:22
dw_jakeone sec. I will paste the stack trace01:22
*** adjohn has quit IRC01:23
dw_jakekpepple: http://paste.openstack.org/show/877/ here is the whole thing01:24
*** hggdh has quit IRC01:26
dw_jakekpepple: though it does not look very helpful01:26
kpeppledw_jake: so line 52 on your paste is the problem. it is pointing to sqlite instead of mysql for your database.01:26
dw_jakekpepple: wow awesome!01:26
dw_jakekpepple: thanks a bunch<301:28
kpeppledw_jake: take line 1 "--demonize" out of your nova.conf file, then relaunch this with 'nova-network --verbose --flagfile=/etc/nova/nova.conf' and paste that result01:29
kpeppledw_jake: oh and change line 7 of your nova.conf file back to just '--verbose'01:29
dw_jakeso using "--flagfile=/.../.conf" does not really work. I had to use the option explicitly "--sql_connection=mysql://root:nova@10.175.132.69/nova"01:33
dw_jakeand it seems to be working now01:34
kpeppledw_jake: cool01:34
dw_jakehttp://paste.openstack.org/show/878/ here is the debug info01:34
*** adiantum has quit IRC01:34
dw_jakekpepple: so i guess nova does not like my noa.conf as the configs are not really being used.01:37
kpeppledw_jake: without adding the --flagfile to the command line it won't be able to find it01:37
dw_jakekpeple: is this possible the reason why a VM being stuck at 'networking' stage?01:39
kpeppledw_jake: without nova-network, probably01:39
dw_jakekpepple: I see. great. I will try a new instance of VM next week.01:40
dw_jakekpepple: that makes me feel better before I leave for the weekend:D01:41
kpeppledw_jake: good luck next week :)01:41
dw_jakekpepple: thanks a lot for spending that much time with me. I really appreciate it01:41
kpeppledw_jake: np01:41
*** gregp76 has quit IRC01:49
*** iammartian has joined #openstack01:53
*** miclorb has joined #openstack01:55
*** jdean has joined #openstack01:57
*** mahadev has quit IRC01:58
*** romain_lenglet has joined #openstack02:00
jdeanHello, I just have a simple question -> Can I extend swift, so that I am able to start smart and extend it as I need it to do so.... Another question is, if it makes sense to do so?02:00
*** Dumfries has quit IRC02:07
*** aliguori has quit IRC02:14
ewindischthere was a utils.execute related bug which I didn't cause! ;-)02:18
*** lamar has quit IRC02:19
*** Cybo has joined #openstack02:20
*** jdean has left #openstack02:23
*** aliguori has joined #openstack02:27
openstackhudsonProject swift build #218: SUCCESS in 28 sec: http://hudson.openstack.org/job/swift/218/02:31
openstackhudsonTarmac: fixed pattern matching/globbing in swift-log-uploader02:31
*** MarkAtwood has left #openstack02:37
*** mahadev has joined #openstack02:39
*** Cybo has quit IRC02:44
*** mahadev has quit IRC02:49
*** jc_smith has left #openstack02:49
*** aliguori has quit IRC02:50
*** romain_lenglet has quit IRC02:54
*** mahadev has joined #openstack02:56
*** pvo has joined #openstack03:00
*** miclorb has quit IRC03:09
*** miclorb has joined #openstack03:11
*** freeflyi1g has joined #openstack03:11
*** fayce has joined #openstack03:14
*** freeflying has quit IRC03:14
*** pvo has quit IRC03:19
*** miclorb has quit IRC03:34
*** Cybo has joined #openstack03:40
*** pvo has joined #openstack03:46
*** thielmann_ has joined #openstack03:51
*** dillon-w has joined #openstack03:51
*** Cybo has quit IRC03:51
*** MarkusT has quit IRC03:54
*** pvo has quit IRC03:55
*** dirakx has quit IRC03:59
*** fayce has quit IRC04:23
*** fayce has joined #openstack04:23
*** dillon-w has quit IRC04:25
*** fayce has quit IRC04:32
*** fayce has joined #openstack04:34
*** mahadev has quit IRC04:44
*** ddumitriu has quit IRC04:48
*** mahadev has joined #openstack05:00
*** dillon-w has joined #openstack05:13
*** gregp76 has joined #openstack05:49
*** dillon-w has quit IRC05:52
*** blahx has joined #openstack05:58
*** Dumfries has joined #openstack06:01
*** ewindisch has quit IRC06:11
*** Dumfries has quit IRC06:18
*** gasbakid has joined #openstack06:35
*** mahadev has quit IRC06:36
*** gasbakid has quit IRC06:38
*** gasbakid has joined #openstack06:40
*** photron has joined #openstack06:44
*** romain_lenglet has joined #openstack06:52
*** adjohn has joined #openstack07:02
*** Code_Bleu has quit IRC07:10
*** fayce has quit IRC07:19
*** paltman has joined #openstack07:23
*** j05h has quit IRC07:26
*** gregp76 has quit IRC07:51
*** j05h has joined #openstack07:53
*** Code_Bleu has joined #openstack07:53
*** miclorb_ has joined #openstack07:59
*** zenmatt has quit IRC08:00
*** iammartian_ has joined #openstack08:04
*** iammartian has quit IRC08:07
*** iammartian_ is now known as iammartian08:07
*** allsystemsarego has joined #openstack08:17
*** adjohn has quit IRC08:23
*** paltman has quit IRC08:37
*** ddumitriu has joined #openstack08:42
*** mahadev has joined #openstack08:48
*** herki has quit IRC08:49
*** nerens has joined #openstack08:50
*** mahadev has quit IRC08:53
*** paltman has joined #openstack09:02
*** azneita has joined #openstack09:15
*** Ryan_Lane|away has quit IRC09:28
*** nerens_ has joined #openstack10:12
*** nerens has quit IRC10:12
*** nerens_ is now known as nerens10:12
*** spectorclan has quit IRC10:19
*** spectorclan has joined #openstack10:20
*** nerens has quit IRC10:49
*** azneita has quit IRC11:00
*** MarcMorata has joined #openstack11:26
*** adiantum has joined #openstack11:35
*** adiantum has quit IRC11:46
*** adiantum has joined #openstack11:52
*** miclorb_ has quit IRC12:05
*** adiantum has quit IRC12:18
*** adiantum has joined #openstack12:20
*** adiantum has quit IRC12:43
*** adiantum has joined #openstack12:50
*** dillon-w has joined #openstack12:55
*** adiantum has quit IRC13:22
*** adiantum has joined #openstack13:27
*** MarcMorata has quit IRC13:33
*** MarcMorata has joined #openstack13:33
thielmann_Does someone here run nova on a remote server with static IPs? And would be willing to share information about the set up? I'm unable to set up any network manager without loosing remote access.13:37
*** ctennis has quit IRC13:37
*** ctennis has joined #openstack13:41
*** ctennis has joined #openstack13:42
*** brd_from_italy has joined #openstack13:48
*** dendrobates is now known as dendro-afk13:56
*** dirakx has joined #openstack14:02
thielmann_Could someone provide a network/interface file when using VLANmanager? I'm getting "ERROR: trying to add VLAN #0 to IF -:eth0:-  error: File exists"14:07
*** gasbakid has quit IRC14:10
*** gasbakid has joined #openstack14:16
*** adiantum has quit IRC14:23
*** adiantum has joined #openstack14:23
rykeranyone have a detailed agenda for the openstack conference next month?  http://www.openstack.org/blog/2011/03/openstack-conferencedesign-summit-registration-is-open/14:24
*** beens has joined #openstack14:28
thielmann_"nova-network main process ended, respawning". Any idea what might cause this? No information in nova logs.14:33
thielmann_If I run it manually, it exists with "(OperationalError) no such table: networks u'SELECT networks.created_at AS networks_created_at, [...]" Don't get it.14:35
*** dendro-afk is now known as dendrobates14:35
*** adiantum has quit IRC14:40
*** adiantum has joined #openstack14:44
*** hazmat has joined #openstack14:53
*** brd_from_italy has quit IRC15:17
*** hazmat has quit IRC15:22
*** RJD22 is now known as RJD22|away15:23
*** adiantum has quit IRC15:24
*** paltman has quit IRC15:27
*** adiantum has joined #openstack15:30
*** dendrobates is now known as dendro-afk15:34
*** dendro-afk is now known as dendrobates15:34
*** paltman has joined #openstack15:37
*** adiantum has quit IRC15:39
*** Cybo has joined #openstack15:43
*** adiantum has joined #openstack15:45
*** Cybo has quit IRC15:48
*** adiantum has quit IRC15:52
*** dillon-w has quit IRC15:53
*** paltman has quit IRC15:53
*** adiantum has joined #openstack15:58
*** gregp76 has joined #openstack16:01
*** dendrobates is now known as dendro-afk16:01
*** sevenseeker has joined #openstack16:04
*** adiantum has quit IRC16:10
*** blamar_ has quit IRC16:10
*** sevenseeker has quit IRC16:12
*** adiantum has joined #openstack16:15
*** ddumitriu has quit IRC16:19
*** adiantum has quit IRC16:33
kpepplethielmann_: can you paste the full log at paste.openstack.org ? did you start nova-network manually with the --flagfile option ?16:34
thielmann_kpepple: Currently on my 11th reinstall and trying again. Will document installation notes, logfiles and set up when finished. Thanks for your response :-)16:35
*** adiantum has joined #openstack16:39
*** zenmatt has joined #openstack16:44
*** RJD22|away is now known as RJD2216:50
*** adiantum has quit IRC16:54
*** adiantum has joined #openstack16:55
*** Ryan_Lane has joined #openstack16:57
notmynamemtaylor: can you add "http://readthedocs.org/build/454" as a post-commit hook for swift?17:07
*** jero has joined #openstack17:10
*** hggdh has joined #openstack17:17
*** adiantum has quit IRC17:19
*** mahadev has joined #openstack17:20
*** hazmat has joined #openstack17:21
mtaylornotmyname: you want jenkins to just send a POST request to that URL?17:26
*** hazmat has quit IRC17:27
*** adiantum has joined #openstack17:31
*** adiantum has quit IRC17:41
*** mahadev has quit IRC17:42
*** adiantum has joined #openstack17:47
thielmann_kpepple: http://paste.openstack.org/show/879/ Installation, ifconfig and route information. I can't neither ping nor ssh. Might be an issue with the image (see http://paste.openstack.org/show/880/ for console). However I'm using FlatDHCPManager and thought the manager would handle that problem?17:51
* kpepple looks at the paste17:54
*** adiantum has quit IRC17:55
kpepplethielmann_: in your /var/log/nova/nova-network.log file, are you seeing errors ? i don't see dhcpbridge_flagfile entry in nova.conf17:57
thielmann_No error entry, will search for dhcpbridge_flagfile template17:58
*** adiantum has joined #openstack18:01
thielmann_Ah, sorry. Wrong copy and paste with this one. I added the documented lines, so the full nova.conf looks like this: http://paste.openstack.org/show/882/18:01
*** guynaor has joined #openstack18:02
*** guynaor has left #openstack18:02
kpepplethielmann_: i believe you also need a '--lock_path=/tmp' in nova.conf if you are using the newest version of nova18:04
*** adiantum has quit IRC18:10
thielmann_kpepple: Don't get it ttylinux is also searching for loud-setup: checking http://169.254.169.254/2009-04-04/meta-data/instance-id18:11
thielmann_Can't find information on --lock_path. I'm using bexxar18:11
*** hazmat has joined #openstack18:11
kpepplethielmann_: ignore the lock_path if you are on bexar ... it was just introduced this week in trunk18:11
kpepplethielmann_: the image is going to check the 169 network for metadata at startup. dnsmasq should be grabbing that and handing it any launch information that it has.18:13
*** adiantum has joined #openstack18:13
*** hazmat has quit IRC18:17
thielmann_kpepple: After using the troubleshooting (killing dnsmasq; reload network) I still get that error. Syslog says: dnsmasq-dhcp[2720]: "no address range available for DHCP request via br100"18:19
kpepplethielmann_: when you 'ps -ef', do you have more than one dnsmasq running ?18:20
thielmann_Yes, two.18:21
*** _jano has joined #openstack18:21
kpepplethielmann_: you usually only want one. what do the two of them look like ? one should have the "--listen-address=172.16.0.1" argv where the address is that of br10018:22
thielmann_kpepple: They're identical and "--listen-address=10.0.1.1" (after "troubleshooting". After a reboot, I've got three. Two listening to 10.0.1.1 (br100) and one listening to 192.168.122.1 (virbr0)18:25
*** gregp76 has joined #openstack18:25
kpepplethielmann_: what ranges do the two 10.0.1.1 have configured ? we only want one of them18:26
thielmann_kpepple: --dhcp-range=10.0.0.2,static,120s18:27
kpepplethielmann_: if both of them say that, kill one of them18:29
thielmann_kpepple: Did that, syslog still says "no address range available for DHCP request via br100", image is still waiting for "metadata service".18:30
*** adiantum has quit IRC18:31
notmynamemtaylor: yes, please. POST request to that URL18:32
kpepplethielmann_: try launching a new image and see what happens18:33
thielmann_kpepple: It get's the next IP (.6) and the message repeats in syslog18:35
thielmann_kpepple: Found "qemudParsePCIDeviceStrs:1422 : Unexpected exit status '1', qemu probably failed" in syslog. Could that be related?18:36
*** adiantum has joined #openstack18:37
kpepplethielmann_: are you on a virtual server or a physical box ?18:37
thielmann_kpepple: A physical server.18:38
*** _jano has quit IRC18:38
kpepplethielmann_: strange. i think that is saying that KVM failed for some reason. do you have KVM processes in "ps -ef" ?18:38
mtaylornotmyname: done18:39
*** gregp76 has quit IRC18:39
notmynamemtaylor: thanks :-)18:39
thielmann_kpepple: Yes, two (I'm currently running two instances). So it seems fine. I guess I wouldn't get console output otherwise...18:40
kpepplethielmann_: that's what i thought ... that's probably unrelated then.18:40
thielmann_kpepple: What I don't get: Nova is trying to access  169.254.169.254, but that's nowhere defined in my config/network. How is that supposed to work?18:43
*** pquerna has left #openstack18:45
kpepplethielmann_: there is a metadata server presented by nova ec2 api that listens for requests and returns the metadata to the image. i am not sure how it gets routed there ... i thought by dnsmasq18:46
Ryan_Lanethielmann_: which network driver are you using?18:47
thielmann_Ryan_Lane: FlatDHCP18:47
Ryan_Lanethe nova-network service handles it18:47
kpepplethielmann_: no you are on VlanManager in your conf file ...18:47
Ryan_Laneit adds a rule to iptables18:47
Ryan_Laneon the network service node18:47
Ryan_Lanednsmasq assigns IP addresses, and a gateway for the vms18:48
Ryan_Lanethe gateway is the network node18:48
thielmann_kpepple: No, see: http://paste.openstack.org/show/884/18:48
*** hazmat has joined #openstack18:48
kpepplethielmann_: i was going off http://paste.openstack.org/show/879/18:48
Ryan_Lanefor instance: DNAT       tcp  --  0.0.0.0/0            169.254.169.254     tcp dpt:80 to:192.168.1.60:877318:48
Ryan_Lanemy network nodes's IP is 192.168.1.60, my private range is 10.0.0.x18:49
thielmann_kpepple: Damn it, copy and paste error. This was my "cheat sheet". But I'm positive nova.conf is the only error in this sheet. Sorry for the confusion.18:49
kpepplethielmann_: np18:50
Ryan_Lanesince the instances route through the network node, all traffic sent to 168.254.168.254 will hit the metadata service18:50
Ryan_Laneerr18:50
Ryan_Lane16918:50
thielmann_Ryan_Lane: Thanks for the explanation. I don't see such a rule when running iptables --list.18:53
Ryan_Lanelet me share my nova.conf with you18:53
*** adiantum has quit IRC18:54
thielmann_Ryan_Lane: Would be great, thanks.18:55
Ryan_Lanethielmann_: http://pastebin.com/8u8XaRpf18:55
Ryan_Lanenote that some options aren't useful anymore18:55
thielmann_BTW: Thank you both kpepple and Ryan_Lane for your time and effort! Very much appreciated!18:56
Ryan_LaneI've been carrying it over since austin18:56
Ryan_Laneyw18:56
Ryan_LaneI use essentially the same configuration on all nodes18:56
Ryan_Laneexcluding my_ip18:57
Ryan_Lanewhich you probably don't need. my compute nodes don't have access to the outside world at all18:57
thielmann_Ryan_Lane: Is eth2 in your configuration a physical device? My system only has one device and I've seen a lot of configs configuring two ethX.18:58
Ryan_Laneah, that's a problem18:58
Ryan_Laneyou are using bexar release?18:58
Ryan_Laneor trunk?18:58
Ryan_LaneI'm not sure if it's been fixed, but I believe you need two adapters18:59
*** adiantum has joined #openstack18:59
Ryan_Lane(two devices, that is)18:59
kpeppleRyan_Lane: even on single node installs ?18:59
Ryan_LaneI haven't tried a single node install18:59
Ryan_Lanemaybe it works on single node installs19:00
*** Code_Bleu has quit IRC19:00
Ryan_Lanethough in reality, it's always best to use at least two adapters when doing virtualization19:00
kpeppleRyan_Lane: agreed19:01
*** hazmat has quit IRC19:01
Ryan_Lanethe first should always be for management only :)19:01
Ryan_Laneit makes firewall rules really strange when you mix management and virtual19:01
Ryan_Lane(openstack does handle it well, though)19:01
Ryan_Lanein the case of flatdhcp and the network node, I think it's best to have three adapters19:02
Ryan_Lanemanagement, public, and private19:02
thielmann_Ryan_Lane: I'm using bexxar, and I know a single port makes things complicated :-)19:03
Ryan_Laneyeah, I can't help with that. I haven't tried it :)19:03
thielmann_Ryan_Lane: OH MY GOD! 1 week of work and now, for the first time, I can log in to an instance! It must have something to do with one of the flags for nova.conf you provided.19:05
Ryan_Laneheh19:05
Ryan_Laneglad to hear it :)19:05
thielmann_kpepple and Ryan_Lange:: Thank you so much for your time. kpepple solved a few dozens of problems and now Ryan_Lane offered the final solution :-)19:05
Ryan_Laneteamwork!19:05
Ryan_Lane:D19:05
kpepplethielmann_: np19:05
kpeppleRyan_Lane: are those LDAP options in your nova.conf file standard or something you added ... didn't know we supported LDAP in trunk19:06
thielmann_Unfortunately, I'll still need to solve the "elastic IP" problem on how to connect my four public IP addresses to the instances. Will try alone and be back if (when) I don't find a solution :-)19:06
Ryan_Laneldap has been supported since austin19:06
kpeppleRyan_Lane: hadn't played at all with that. good to know.19:07
Ryan_LaneI put a lot of work into it, I'd hope it is supported in trunk :D19:07
Ryan_Lanethielmann_: floating ips should be handled automatically through nat19:08
Ryan_Lanethe network node should create and remove the rules for you when addresses are associated and disassociated19:08
*** jero has quit IRC19:08
*** adiantum has quit IRC19:10
*** adiantum has joined #openstack19:16
*** adiantum has quit IRC19:25
*** dendro-afk is now known as dendrobates19:25
*** MarcMorata has quit IRC19:26
*** adiantum has joined #openstack19:30
*** MarcMorata has joined #openstack19:34
thielmann_That was faster than expected :-): How do I configure public IP adresses, so nova will route them correctly? I'm able to use 4 public IPs. I added two of them as floating IPs with nova manage. I added one as eth0:1. When I associate this one, I ssh to the nova server (somewhat expected) and I can't ping/ssh the second one. How do I configure this?19:36
thielmann_It seems nova is trying to add the IP to vlan1 (sudo ip addr add 89.238.83.56 dev vlan1) and that doesn't exist. Why the heck is nova now trying to use VLANs?19:45
*** dendrobates is now known as dendro-afk19:58
thielmann_After adding a flag for the public device in nova.conf, the second IP is added to eth0. But I still end up on the host, rather than on the instance. Any ideas?20:00
*** lionel_ has joined #openstack20:10
*** mahadev has joined #openstack20:13
*** lionel has quit IRC20:13
*** neuro_damage has quit IRC20:14
*** Ryan_Lane has quit IRC20:37
*** mahadev has quit IRC20:43
*** jero has joined #openstack20:49
*** mahadev has joined #openstack20:50
*** Code_Bleu has joined #openstack20:55
*** ksteward1 has joined #openstack21:05
ksteward1fyi... ThisWeekInCloudComputing had a segment on OpenStack and positive opinions on it.  Stated that it is developing real momentum.21:07
*** ksteward1 is now known as KeithS21:08
*** jero has quit IRC21:14
*** Ryan_Lane has joined #openstack21:15
*** allsystemsarego has quit IRC21:23
*** RJD22 is now known as RJD22|away21:28
thielmann_Somehow my floating list if f**** up. When I try to use "nova-manage floating list" I get a stack trace with "'Instance' object has no attribute 'ec2_id''. Can't disassociate either and my instances are stuck at "networking". Any chance to delete these entries manually?21:29
*** Ryan_Lane has quit IRC21:31
*** jero has joined #openstack21:31
*** RJD22|away is now known as RJD2221:32
*** ddumitriu has joined #openstack21:43
*** iammartian has quit IRC21:55
*** grizzletooth has joined #openstack22:02
*** grizzletooth has left #openstack22:07
*** zenmatt has quit IRC22:11
*** photron has quit IRC22:13
*** gasbakid has quit IRC22:18
*** zul has quit IRC22:19
ramdSuccesfully brought up the OpenStack Dashboard. I'm able to launch instances..how ever "show console" errors and also there is no VNC Console button as I see in the Demo..Any help?22:21
*** zul has joined #openstack22:26
*** jero has quit IRC22:28
*** adiantum has quit IRC22:37
*** adiantum has joined #openstack22:41
*** mahadev has quit IRC22:52
*** adiantum has quit IRC23:29
*** adiantum has joined #openstack23:38
ramdHello all...Fixed the showconsole error....I don't see VNC console..I checkd out the latest code...Any patches I need to apply Thanks23:39
*** ddumitriu has quit IRC23:49
uvirtbotNew bug: #734081 in nova "Incorrect db sync error message" [Undecided,New] https://launchpad.net/bugs/73408123:51
*** adiantum has quit IRC23:56
*** adiantum has joined #openstack23:57
*** ddumitriu has joined #openstack23:58

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!