Code_Bleu | kpepple: 10.3.3.0/25 255.255.255.128 10.3.3.3 None | 00:00 |
---|---|---|
Code_Bleu | Guest73221: still trying to figure out the log | 00:00 |
Guest73221 | tail -f /var/log/nova/nova-network.log | 00:00 |
Guest73221 | if you did it standard | 00:00 |
*** rds__ has quit IRC | 00:01 | |
kpepple | Code_Bleu: you want to see a "Leasing IP" entry in the log | 00:02 |
Code_Bleu | ?: OpenStack's dhcp doesnt participate on my local network does it? | 00:04 |
Guest73221 | ? | 00:04 |
Guest73221 | what does nova-network.log say | 00:04 |
Code_Bleu | thats only internal to OpenStack and the images it host? If im making any sense | 00:05 |
kpepple | Code_Bleu: you should see a few dnsmasq processes when you do a "$ ps -ef" ... these are doing dhcp for images and bridging | 00:05 |
Guest73221 | yea i ran into that when i was first doing it | 00:07 |
Guest73221 | but the logs _always_ gave me the clues i needed | 00:07 |
*** Guest73221 is now known as jarrod | 00:08 | |
*** zenmatt has joined #openstack | 00:09 | |
Code_Bleu | kpepple: not sure if the last config means anything for OpenStack, but thought i would add it anyway http://pastebin.com/bY2wx0WY | 00:09 |
jarrod | i dont know why you aren't checking the logs for errors | 00:09 |
*** adjohn has joined #openstack | 00:10 | |
Code_Bleu | jarrod: i had to copy and paste a few times...so hopefully its not messed up too bad http://pastebin.com/F19DSKgr | 00:20 |
Code_Bleu | jarrod: i looked at my /var/lib/nova/networks/br100.conf that the log mentions...and that file is blank | 00:21 |
*** londo_ has quit IRC | 00:21 | |
kpepple | Code_Bleu: it's giving you a DB error when trying to create the dnsmasq for the bridge | 00:22 |
Code_Bleu | kpepple: did you see this from earlier? does this look ok? http://pastebin.com/bY2wx0WY | 00:25 |
jarrod | obviously you did nova-manage db sync ? | 00:25 |
jarrod | (OperationalError) no such table: networks | 00:25 |
jarrod | connect to sql | 00:26 |
jarrod | show tables | 00:26 |
kpepple | Code_Bleu: yeah, jarrod is right ... it's looking at the wrong database which usually means that it can't find the /etc/nova/nova.conf file and is defaulting to sqlite | 00:26 |
*** zenmatt has quit IRC | 00:27 | |
Code_Bleu | kpepple: jarrod: this is the result from select * from networks. i exported to XML format http://pastebin.com/kFhf3GkE | 00:30 |
Code_Bleu | kpepple: jarrod: the table does exist and has data in it. How do i make sure it is looking at the /etc/nova/nova.conf file? | 00:35 |
kpepple | Code_Bleu: try executing "sudo -E dnsmasq --strict-order --bind-interfaces --conf-file= --domain=novalocal --pid-file=/var/lib/nova/networks/nova-br100.pid --listen-address=10.3.3.1 --except-interface=lo --dhcp-range=10.3.3.3,static,120s --dhcp-hostsfile=/var/lib/nova/networks/nova-br100.conf --dhcp-script=/usr/bin/nova-dhcpbridge --leasefile-ro" by hand and see if you get the same backtrace | 00:36 |
Code_Bleu | kpepple: yes | 00:37 |
kpepple | Code_Bleu: do you have any dnsmasq processes in "$ ps -ef " | 00:38 |
alekibango | Code_Bleu: or do you have 2 of them? :) | 00:38 |
kpepple | Code_Bleu: and did you change your /etc/nova/nova.conf file after you brought up the nova-network ? | 00:39 |
alekibango | Code_Bleu: make sure dnsmasq is disabled from system | 00:39 |
alekibango | so nova can run its one | 00:39 |
Code_Bleu | kpepple: jarrod: alekibango: should this file be blank? /var/lib/nova/networks/nova-br100.conf | 00:39 |
Code_Bleu | alekibango: ps -ef | grep dnsmasq does not return anything | 00:40 |
kpepple | Code_Bleu: no, but it will be until you get the dnsmasq up ... | 00:40 |
kpepple | Code_Bleu: nova-br100.conf records your mac address to instance_id to ip_address mappings | 00:40 |
Code_Bleu | kpepple: i probably changed the nova.conf after...but i did 'service nova-compute restart' | 00:40 |
alekibango | Code_Bleu: i dont have that file :) | 00:41 |
kpepple | Code_Bleu: you need to bounce nova-network also ... 'service nova-network restart' | 00:41 |
jarrod | doh | 00:41 |
alekibango | its always good to restart all nova services | 00:41 |
Code_Bleu | kpepple: sorry...i did that one too | 00:41 |
alekibango | and watch logs! | 00:41 |
*** EndEng|Alt has joined #openstack | 00:41 | |
jarrod | yea i have an alias that restarts them all | 00:41 |
Code_Bleu | ok, im gonna just restart the whole dang server. and see what happens. That has fixed problems in the past...lets see.. | 00:42 |
kpepple | Code_Bleu: okay. after you do, look in the new nova-network log. you want to find the string "--sql_connection=" and make sure it is looking at mysql | 00:43 |
alekibango | there should be some script tool, finding where the problem is.... | 00:44 |
alekibango | some kind of "DR.Nova" | 00:44 |
Code_Bleu | i see this: sql_connection : sqlite:////var/lib/nova/nova.sqlite | 00:45 |
*** EndEng|Desktop has quit IRC | 00:45 | |
Code_Bleu | shouldnt that be mysql? | 00:46 |
Code_Bleu | i did not find the string "--sql_connection" | 00:46 |
Code_Bleu | kpepple: im wrong...i found it | 00:46 |
Code_Bleu | kpepple: it has the right user:pass@ip | 00:47 |
* Code_Bleu didnt want an emoticon | 00:47 | |
alekibango | Code_Bleu: you will need mysql for real installation on more hosts | 00:47 |
Code_Bleu | * user : pass @ ip rather | 00:47 |
alekibango | Code_Bleu: restart all nova services, watch all logs | 00:48 |
alekibango | the first error is the most significant | 00:48 |
alekibango | usually | 00:48 |
alekibango | it cascades sometimes, showing errors in different logs | 00:48 |
kpepple | Code_Bleu: sorry, you lost me here. do the --sql_connection strings in the /etc/nova/nova.conf and at the start of the nova-network log match ? and does that allow you to login to your db ? | 00:49 |
Code_Bleu | kpepple: yes | 00:50 |
Code_Bleu | kpepple: but it still says table doesnt exist | 00:50 |
jarrod | hmm | 00:50 |
Code_Bleu | kpepple: it didnt start a fresh log. im going to backup that file and restart nova-compute and nova-network | 00:51 |
jarrod | you're using "service" to stop/start and you installed via aptitude? | 00:51 |
jarrod | i just wonder if you're starting with the proper flatfile flag | 00:52 |
Code_Bleu | jarrod: service - yes, i installed via "sudo apt-get install.." | 00:52 |
*** jsgotangco has joined #openstack | 00:53 | |
Code_Bleu | jarrod: just notice that im missing the dhcpbridge_flagfile parameter in my nova.conf file http://pastebin.com/bY2wx0WY | 00:54 |
kpepple | Code_Bleu: that'll do it ... sorry, i didn't see that before | 00:55 |
kpepple | Code_Bleu: this is mine http://paste.openstack.org/show/666/ | 00:55 |
*** cascone has joined #openstack | 00:55 | |
Code_Bleu | got this: INSTANCE i-00000003 ami-ehz2aqw2 10.3.3.3 10.3.3.3 running mykey (adminproject, cloud1 | 00:59 |
jarrod | yay! | 00:59 |
Code_Bleu | cant ping it or ssh to it via ssh -i mykey.priv root@10.3.3.3 | 00:59 |
Code_Bleu | what is the command to show the console of the vm? | 01:00 |
*** mahadev has quit IRC | 01:00 | |
jarrod | i dont think there is one | 01:01 |
Code_Bleu | jarrod: i remember someone telling me one...i just dont remember what it is | 01:01 |
jarrod | oh, i would love to know that too :-D | 01:01 |
dsockwell | Code_Bleu: whatever it is, it starts with euca | 01:02 |
Code_Bleu | jarrod: just found it: euca-get-console-output | 01:02 |
jarrod | when i was doing kvm, the ip on the left was suppose to be the "public" and the one on the right the private it was natting for | 01:02 |
*** miclorb_ has quit IRC | 01:02 | |
kpepple | Code_Bleu: euca-get-console-output | 01:03 |
jarrod | does the machine have a local subnet on the 10.3.3.3 network? | 01:03 |
Code_Bleu | jarrod: my local network is 10.0.0.0/24, and my "public" ip for OpenStack server is 10.0.0.18..so how do i get the left one to say 10.0.0.18? | 01:04 |
jarrod | i dont think thats what you would want | 01:04 |
jarrod | i had public ips assigned as floating ips | 01:04 |
jarrod | and i would euca-allocate, and euca-associate | 01:05 |
Code_Bleu | jarrod: kpepple: i was hoping that i could just do a bridge and my vm's would get a ip from my private lan dhcp server | 01:05 |
jarrod | to the proper instance | 01:05 |
jarrod | no, they get the ip assigned from the network you create | 01:05 |
Code_Bleu | jarrod: thats where i get confused | 01:05 |
kpepple | Code_Bleu: the problem with that is that then nova wouldn't know the ip address :( | 01:05 |
jarrod | i bet if you did something like | 01:06 |
kpepple | Code_Bleu: do a 'netstat -nr' and make sure you have a route to 10.3.3.3 ... which is hopefully through br100 | 01:06 |
jarrod | ifconfig eth0 10.3.3.20 netmask 255.255.255.0 alias | 01:06 |
jarrod | or similar you could see it | 01:06 |
Code_Bleu | jarrod: kpepple: so with what i have here: http://pastebin.com/bY2wx0WY what do i need to change to get it to work? | 01:06 |
Code_Bleu | jarrod: i can ping 10.3.3.1 | 01:08 |
jarrod | oh | 01:08 |
Code_Bleu | jarrod: just not the 10.3.3.3 of the vm | 01:08 |
jarrod | what did console show | 01:08 |
Code_Bleu | jarrod: this was the last thing..and it went up to 100/100 http://pastebin.com/ft01SF2Y | 01:11 |
Code_Bleu | im gonna try to publish another image and see what happens with that one | 01:12 |
Code_Bleu | jarrod: kpepple: same error with different image | 01:20 |
kpepple | Code_Bleu: same problem with registering the image ? or launching and then ssh-ing to it ? | 01:21 |
Code_Bleu | kpepple: launching and ssh-ing to it. Same as this: http://pastebin.com/ft01SF2Y | 01:23 |
*** jsgotangco has quit IRC | 01:26 | |
kpepple | Code_Bleu: i think you are seeing this https://answers.launchpad.net/nova/+question/145820 | 01:27 |
Code_Bleu | is the /var/libvirt/qemu/networks/default.xml the problem? see previous paste | 01:28 |
kpepple | Code_Bleu: mine says the same thing and i am on a 172.16.0.0 network | 01:29 |
kpepple | Code_Bleu: do you have a "192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0" entry in "$ netstat -nr" ? | 01:30 |
Code_Bleu | kpepple: my netstat -nr : http://pastebin.com/U1PZz2ns | 01:32 |
Code_Bleu | I had this issue last time..and im having it now...on of my other computers will not get on the internet now..and the last time this happened i shut down the openstack server and it started working | 01:37 |
*** pengd has joined #openstack | 01:39 | |
Code_Bleu | this makes me think that openstack dhcp is conflicting some how with my other dhcp server | 01:39 |
*** pengd has quit IRC | 01:42 | |
Code_Bleu | any ideas? | 01:42 |
kpepple | Code_Bleu: hmmm ... i'm drawing a bit of a blank | 01:42 |
kpepple | Code_Bleu: on the other computer ... does it now have a 10.3.3.x IP address ? | 01:43 |
Code_Bleu | kpepple: no, it might not be the dhcp thing..but maybe its doing something weird with my default gateway router | 01:44 |
Code_Bleu | kpepple: i dont know..im confused | 01:44 |
Code_Bleu | kpepple: i first noticed this on my laptop using wireless. if i restart it will not connect to the AP and will obviously not get an IP. I think if i restart the computer im on now....it might get the correct IP, but it wont get on the internet anymore | 01:45 |
kpepple | Code_Bleu: hmm .. the networking is tricky because everyone is running on their home network and they are very different. | 01:46 |
kpepple | Code_Bleu: in your route table, your default gateway is pointing to the br100 ... usually this should point to eth0 | 01:47 |
Code_Bleu | kpepple: based on the documentation eth0 should be added to the br100 | 01:48 |
Code_Bleu | kpepple: my openstack server is getting its IP via dhcp too...but i have it setup to get the same one all the time based off of the mac addr | 01:48 |
Code_Bleu | kpepple: my router is running as a vm on a virtual box. the appliance is pfsense. it runs the dhcp server for 10.0.0.0/24 network starting at .50 and above | 01:50 |
kpepple | Code_Bleu: i don't have my bridge setup the same way you do ... i vaguely remember that this is an issue i ran into | 01:50 |
Code_Bleu | kpepple: do i need this in my nova.conf file? --network_manager = nova.network.manager.FlatManager | 01:51 |
Code_Bleu | kpepple: i believe you were doing the VLAN option? | 01:51 |
kpepple | Code_Bleu: that was the workaround that was mentioned in the https://answers.launchpad.net/nova/+question/145820 answer | 01:52 |
kpepple | Code_Bleu: yes, i am using VLAN | 01:52 |
alekibango | VLAN= default style | 01:52 |
Code_Bleu | kpepple: so remove the --network_manager = nova.network.manager.FlatManager ? | 01:52 |
alekibango | you might try | 01:52 |
alekibango | we really need to move into automated functional testing | 01:53 |
alekibango | to test all styles of install | 01:53 |
kpepple | alekibango: people are starting to do that but it's moving slowly | 01:53 |
alekibango | vlan, flat, dhcp, different kinds of glance backends, sheepdog, ... | 01:53 |
alekibango | kpepple: btw, back to machine types.... do you think we can delegate creating machine types to end user?? | 01:55 |
kpepple | Code_Bleu: i'm not sure. i don't really know what black magic we do to access the 169.254.169.254 metadata network. perhaps vishy is around ? i think he wrote some of that. | 01:56 |
vishy | uh oh | 01:56 |
kpepple | vishy: this has come up before ... http://pastebin.com/ft01SF2Y but i can never remember what causes it | 01:56 |
alekibango | kpepple: this way we would be able to adjust gradually cpu power, limits of bandwidth etc -- and still maybe remain somewhat compatible with ec2tools | 01:57 |
kpepple | alekibango: but we will need to extend the admin api with some of these calls and then look at how we might need to augment quotas ... | 01:58 |
kpepple | alekibango: this would be a good blueprint for the next design summit ... i know the isi guys are adding some options to instance_types for machine types and such | 01:58 |
alekibango | isi guys? | 01:59 |
alekibango | kpepple: i would like to propose something. but i am not sure what :) | 01:59 |
alekibango | i need some way to user to enter into contract - to partition resources | 02:00 |
alekibango | you remember | 02:00 |
alekibango | iam not sure which way will be best | 02:00 |
kpepple | alekibango: isi guys blueprint http://wiki.openstack.org/HeterogeneousInstanceTypes?highlight=%28gpu%29 | 02:00 |
Code_Bleu | kpepple: this is my nova.conf file now...restarted services and still doesnt work http://pastebin.com/MgftEtbx | 02:01 |
alekibango | Code_Bleu: kill dnsmasq first before the restart | 02:01 |
vishy | kpepple: it can be a lot of things | 02:02 |
vishy | kpepple: are you in flatdchp | 02:02 |
alekibango | vishy: its Code_Bleu who has the problem | 02:02 |
alekibango | :) | 02:02 |
vishy | my kill-objectstore patch has gotten quite large | 02:02 |
alekibango | he was on flat, but he removed the option right now imho | 02:02 |
Code_Bleu | still getting the metadata service error | 02:03 |
vishy | Code_Bleu: how many hosts are you running on? | 02:04 |
Code_Bleu | vishy: one | 02:05 |
vishy | Code_Bleu: do the instances get dhcp? | 02:05 |
*** mahadev has joined #openstack | 02:05 | |
vishy | in console output they show getting an ip address? | 02:05 |
vishy | Code_Bleu: are you running bexar or trunk? | 02:06 |
Code_Bleu | vishy: internal to openstack server i guess | 02:06 |
Code_Bleu | vishy: kpepple said i was at the latest version | 02:06 |
kpepple | vishy: he's on trunk | 02:06 |
alekibango | Code_Bleu: do you have some instances running | 02:07 |
alekibango | ? | 02:07 |
*** miclorb_ has joined #openstack | 02:07 | |
vishy | ok in nova-network log, do you get messages reporting leased ips? | 02:07 |
Code_Bleu | vishy: i just dont like the any of the config files saying "dhcp" i already have a dhcp server and i think these are conflicting some how | 02:07 |
Code_Bleu | alekibango: yes, running..but cant connect | 02:07 |
alekibango | on the same server? | 02:07 |
alekibango | you need to get rid of that dhcp :) | 02:07 |
Code_Bleu | alekibango: yes | 02:07 |
alekibango | nova-network needs to run its own | 02:08 |
vishy | Code_Bleu: why are you using flatdhcp? On one server the default VlanManager works just fine | 02:08 |
*** jsgotangco has joined #openstack | 02:08 | |
Code_Bleu | alekibango: I dont want to get rid of my current dhcp server. nova-network needs to work with existing dhcp servers | 02:08 |
vishy | Code_Bleu: it works fine with other dhcp servers | 02:09 |
vishy | Code_Bleu: as long as you are using different ip ranges | 02:09 |
Code_Bleu | vishy: im so confused....i dont know what i have anymore...ive pasted a crap ton of stuff... | 02:09 |
vishy | Code_Bleu: I recommend you kill everything and use ./nova.sh | 02:10 |
alekibango | lol | 02:10 |
vishy | Once things are actually running you can modify | 02:10 |
Code_Bleu | vishy: this is my current nova.conf http://pastebin.com/MgftEtbx | 02:10 |
alekibango | ./nova.sh works on one machine when you will not restart... | 02:10 |
alekibango | :) | 02:11 |
Code_Bleu | vishy: i dont have nova.sh | 02:11 |
Code_Bleu | vishy: why can i just not explain my network setup....copy and paste all my config files...and someone help me change what i need to change in the config files to get it to work? | 02:13 |
vishy | Code_Bleu: what ips are your vms getting? | 02:13 |
Code_Bleu | vishy: my private network is 10.0.0.0/24 and my openstack config for vms is 10.3.3.0/24 | 02:13 |
*** dendrobates is now known as dendro-afk | 02:13 | |
vishy | Code_Bleu: there are a lot of things that can go wrong with networking | 02:13 |
Code_Bleu | vishy: the instances are getting 10.3.3.x addrs | 02:13 |
vishy | and nova-network log? | 02:14 |
vishy | do the ips show as leased? | 02:14 |
Code_Bleu | vishy: let me look again... | 02:14 |
*** dendro-afk is now known as dendrobates | 02:14 | |
vishy | Code_Bleu: yes it is possible to fix it, but troubleshooting over irc can take quite a while | 02:14 |
*** jsgotangco has quit IRC | 02:16 | |
Code_Bleu | vishy: im gonna clear the log and restart services....reading the log is insane | 02:18 |
vishy | Code_Bleu: ok, but nova-network should have leased_ips every 2 minutes if dhcp is working | 02:19 |
alekibango | usually the answer is hidden in logs somewhere | 02:19 |
vishy | so it is pretty obvious | 02:19 |
*** sandywalsh_ has joined #openstack | 02:19 | |
*** vvuksan has quit IRC | 02:21 | |
Code_Bleu | vishy: dont know why i have this either - flat_network_dns : 8.8.4.4 | 02:22 |
Code_Bleu | vishy: floating_range : 4.4.4.0/24 ??? | 02:23 |
*** winston-d has joined #openstack | 02:23 | |
Code_Bleu | vishy: i have this too - flat_network_dhcp_start : 10.0.0.2 that ip is my normal private network router and dhcp server | 02:24 |
winston-d | Could someone tell me what version of sqlalchemy_migrate is required for Nova Bexar? I'm running it on RHEL 6. | 02:27 |
vishy | Code_Bleu: yeah you have to change that | 02:27 |
Code_Bleu | vishy: what do i change? | 02:27 |
vishy | --flat_network_dhcp_start should be 10.3.3.2 probably | 02:28 |
winston-d | I have SQLAlchemy-0.6.3 and sqlalchemy_migrate-0.6.1, but 'nova-manage db sync' doesn't work, reporting a 'import failure' | 02:28 |
vishy | if that is what you have set for your fixed_range | 02:28 |
Code_Bleu | vishy: where is it getting the 4.4.4.0/24 from? and the 8.8.4.4?? | 02:28 |
vishy | Code_Bleu: niether of those matter right now | 02:28 |
vishy | * neither | 02:29 |
Code_Bleu | vishy: ok | 02:29 |
Code_Bleu | vishy: i did a search for 'lease' in nova-network.log and it doesnt show its leasing any ips | 02:30 |
vishy | so that is probably due to --flat_network_dhcp_start | 02:31 |
vishy | i would set that | 02:31 |
vishy | do a killall dnsmasq | 02:31 |
vishy | then restart nova-netwrok | 02:31 |
vishy | * network | 02:31 |
Code_Bleu | vishy: ok, but you dont know why it took the 10.0.0.2 and not the 10.3.3.0 network? | 02:31 |
*** sebastianstadil has quit IRC | 02:31 | |
vishy | it is based on a separate flag | 02:32 |
vishy | because you can create networks manually in the database | 02:32 |
Code_Bleu | vishy: ok it says 10.3.3.2 now, but it still doesnt work | 02:35 |
*** EndEng|Desktop has joined #openstack | 02:38 | |
*** miclorb_ has quit IRC | 02:39 | |
*** sandywalsh_ has quit IRC | 02:41 | |
Code_Bleu | vishy: here is my nova-network.log http://pastebin.com/jwhjyGeD | 02:42 |
*** EndEng|Alt has quit IRC | 02:42 | |
Code_Bleu | vishy: still getting this from the euca-get-console-output of vm - http://pastebin.com/32q1D8Rs | 02:44 |
*** zenmatt has joined #openstack | 02:44 | |
*** miclorb_ has joined #openstack | 02:46 | |
vishy | did you killall dnsmasq before restarting? | 02:48 |
vishy | if you tail /var/log/syslog , do you see dhcppack requests? | 02:48 |
Code_Bleu | vishy: yes i killed dnsmasq first | 02:49 |
vishy | you should have something like the following | 02:49 |
vishy | Mar 7 01:53:11 nova dnsmasq-dhcp[29888]: DHCPACK(br100) 10.0.0.3 02:16:3e:1c:5d:0d i-00000001 | 02:49 |
vishy | Mar 7 01:54:12 nova dnsmasq-dhcp[29888]: DHCPREQUEST(br100) 10.0.0.3 02:16:3e:1c:5d:0d | 02:49 |
vishy | with diffierent values obv | 02:49 |
Code_Bleu | vishy: nope, not DHCP stuff..only when the server itself gets its IP via DHCP | 02:52 |
vishy | can you pastie me the output of ip addr | 02:54 |
*** miclorb_ has quit IRC | 02:57 | |
Code_Bleu | vishy: http://pastebin.com/76Jw0agi | 03:00 |
vishy | ugh that is a mess | 03:01 |
vishy | 10.3.3.1/25 | 03:01 |
vishy | that is your first problem | 03:02 |
jarrod | anyone seen this: http://paste.openstack.org/?reply_to=593 | 03:02 |
vishy | you started with vlan networking and your network table is messed up | 03:02 |
vishy | + your ips are out of order | 03:02 |
jarrod | basically, regarding Xen, the error is: ['INTERNAL_ERROR', 'XenguestHelper.Xc_dom_linux_build_failure(2, " xc_dom_find_loader: no loader found\\\\\\\\n\\\\\\"")'] | 03:04 |
*** miclorb_ has joined #openstack | 03:05 | |
*** pharkmillups has joined #openstack | 03:06 | |
Code_Bleu | vishy: can i just delete everything out of the DB and config files and start over? can you tell me what i need where? | 03:06 |
vishy | Code_Bleu: yes you can rm nova.sqlite | 03:06 |
alekibango | Code_Bleu: start by removing br100 from your network config.... nova will do it itself in vlan mode | 03:06 |
*** mahadev has quit IRC | 03:06 | |
vishy | then do a nova-manage db sync | 03:06 |
*** miclorb_ has quit IRC | 03:06 | |
Code_Bleu | vishy: im using mysql | 03:07 |
vishy | nova-manage network create 10.3.3.0/24 1 256 | 03:07 |
*** sebastianstadil has joined #openstack | 03:07 | |
vishy | ah well then you can delete and recreate the db | 03:07 |
Code_Bleu | vishy: so i dont have to recreate keypairs and stuff.. im just going to clear out all the ip related tables (networks, floating_ips...etc) | 03:09 |
alekibango | nova-manage db syncnova-manage db sync will make all tables and content needed | 03:09 |
alekibango | except the network | 03:09 |
alekibango | nova-manage db sync** only once | 03:10 |
vishy | sure you can clear out networks table and fixed_ip table | 03:10 |
vishy | and run that command above | 03:10 |
alekibango | you need to add some network by nova manage network create .... | 03:10 |
*** EndEng|Alt has joined #openstack | 03:11 | |
vishy | you probably should go ahead and do an ip addr del 10.3.3.1/25 brd 10.3.3.127 scope global dev br100 | 03:11 |
vishy | and an iptables -F | 03:11 |
Code_Bleu | vishy: what should my nova.conf look like? | 03:14 |
jarrod | hmm, looks like i need to do something with xe-edit-bootloader since i'm running openstack from domU | 03:14 |
*** EndEng|Desktop has quit IRC | 03:15 | |
*** azneita has quit IRC | 03:16 | |
Code_Bleu | vishy: do i need to config the nova.conf file before i do the db create? | 03:16 |
vishy | http://pastie.org/1641749 | 03:17 |
vishy | something like that | 03:17 |
Code_Bleu | vishy: what does $NET_MAN need to be? | 03:21 |
vishy | FlatDHCPManager | 03:21 |
Code_Bleu | vishy: http://pastebin.com/bP3RvHhn look right? | 03:26 |
vishy | yup | 03:27 |
jarrod | OOH. Is there a special xen instance I need to run in domU for openstack? | 03:28 |
Code_Bleu | vishy: should i be getting DEBUG output when i do the db sync now?...cause i am | 03:29 |
vishy | Code_Bleu: I thouhght you were going to leave the tables? | 03:30 |
vishy | Code_Bleu: probably doesn't matter anyway though | 03:31 |
Code_Bleu | vishy: i did leave the tables | 03:31 |
Code_Bleu | vishy: the db sync and create network worked...it is just displaying the DEBUG output after the command now...whereas before it didnt | 03:32 |
Code_Bleu | vishy: ok, ive cleared iptables, remove the ip addr you said. db synced and created network like you said...now what? | 03:33 |
Code_Bleu | vishy: what about my /etc/network/interfaces? | 03:33 |
vishy | well the vlans are left over from when you are using vlan mode | 03:34 |
vishy | b | 03:34 |
vishy | ut | 03:34 |
Code_Bleu | vishy: this is what it is - http://pastebin.com/hkTmvd4M | 03:34 |
vishy | i don't think it will get in the way | 03:34 |
vishy | you shouldn't have to do any manual setup | 03:35 |
vishy | oh that will be an issue | 03:35 |
vishy | you are dhcping on the bridge | 03:35 |
vishy | hmmm | 03:35 |
Code_Bleu | vishy: my host gets a static ip via dhcp | 03:36 |
vishy | can you just give it the static then? | 03:36 |
vishy | instead of dhcping for it? | 03:36 |
Code_Bleu | vishy: yes, but how is that the issue? | 03:36 |
vishy | here is the issue: in order for dnsmasq to respond to dhppackets, the ip that it listens on needs to be first in the list | 03:36 |
Code_Bleu | vishy: do i need to get rid of the br100 and just uncomment the last 2 lines? | 03:37 |
vishy | it should work at least temporarily | 03:37 |
Code_Bleu | vishy: confused....first in the list?? | 03:38 |
vishy | actually, you should dhcp on eth0 | 03:38 |
vishy | and remove br100 | 03:38 |
vishy | and let nova create it and move the ips for you | 03:38 |
Code_Bleu | vishy: but eth0 was a port of br100...isnt that the same thing? | 03:38 |
vishy | when network starts in flatdhcp mode | 03:39 |
Code_Bleu | vishy: i can leave eth0 dhcp and let my host get its ip via dhcp still ? | 03:39 |
vishy | it will add 10.3.3.1/24 to the bridge | 03:39 |
vishy | yes | 03:39 |
vishy | and since you don't have flat_network_interface set it will not bridge br100 in to eth0 | 03:40 |
Code_Bleu | vishy: edit /etc/network/interfaces..restart networking...then what? | 03:40 |
vishy | after the restart: ifconfig br100 down | 03:40 |
vishy | brctl del br100 | 03:41 |
vishy | then you should be good to run it | 03:41 |
vishy | bridging br100 into eth0 in flat mode has some gotchas, and if you are planning on leaving the system up, i would give it a static ip first | 03:42 |
Code_Bleu | vishy: i still have br100 and vlan100 in my ip addr...is that an issue? | 03:42 |
vishy | the two commands i gave you will handle br100 | 03:42 |
vishy | actually the second is : brctl delbr br100 | 03:42 |
vishy | if you want to get rid of vlan | 03:43 |
jarrod | all the xen support is asleep :) | 03:43 |
jarrod | what kind of techies are they | 03:43 |
vishy | ifconfig vlan100 down | 03:43 |
vishy | vconfig rem vlan100 | 03:43 |
*** miclorb_ has joined #openstack | 03:46 | |
Code_Bleu | vishy: ok i cleaned everything up...made sure no dnsmasq....restarted nova-network and started an instance and it just says "networking" | 03:48 |
vishy | hehe | 03:49 |
vishy | interesting | 03:49 |
vishy | any error in the network log? | 03:49 |
Code_Bleu | vishy: looking now | 03:50 |
Code_Bleu | vishy: log doest look updated. i just added --logdir=/var/log/nova to my nova.conf and will restart | 03:51 |
Code_Bleu | vishy: got this - CRITICAL nova [-] [Errno 13] Permission denied: '/usr/lib/pymodules/python2.6/nova/..//networks' | 03:52 |
vishy | oh yeah, you are probably using /var/lib/nova | 03:53 |
Code_Bleu | vishy: it says this again too: flat_network_dhcp_start : 10.0.0.2 | 03:53 |
vishy | Code_Bleu: make sure that flag is in the conf file i probably mistyped it | 03:54 |
vishy | Code_Bleu: you also need --state_path=/var/lib/nova | 03:54 |
Code_Bleu | vishy: Stderr: 'sh: /usr/lib/pymodules/python2.6/bin/nova-dhcpbridge: not found\n\ndnsmasq: cannot run lease-init script /usr/lib/pymodules/python2.6/bin/nova-dhcpbridge: No such file or directory\n' | 03:57 |
vishy | and logdir if you want it | 03:57 |
vishy | oh that is good we have made progress | 03:57 |
Code_Bleu | vishy: if you say so :) | 03:57 |
vishy | where is nova-dhcpbridge? | 03:57 |
*** sebastianstadil has quit IRC | 03:58 | |
vishy | you need these two | 03:59 |
vishy | --dhcpbridge=/usr/bin/nova-dhcpbridge | 03:59 |
vishy | --dhcpbridge_flagfile=/etc/nova/nova.conf | 03:59 |
vishy | assuming /usr/bin is actually where it is | 03:59 |
vishy | killall dnsmasq can't hurt either | 03:59 |
Code_Bleu | vishy: i do see the br100 interface with the 10.3.3.1 | 03:59 |
vishy | good deal | 03:59 |
*** miclorb_ has quit IRC | 04:01 | |
Code_Bleu | vishy: no errors pop out at me now...its showing ips in the instance, but still says "networking" and i cant ping it | 04:03 |
vishy | that instance is toast | 04:03 |
vishy | you have to start a new one | 04:03 |
Code_Bleu | vishy: i terminated it..and started again...and now the get-console command give me this: UnknownError: An unknown error has occurred. Please try your request again. | 04:04 |
vishy | what does describe show you? | 04:04 |
vishy | (if you get console before the console log has been created it might do that) | 04:05 |
Code_Bleu | vishy: INSTANCE i-0000000f ami-ehz2aqw2 10.3.3.4 10.3.3.4 networking mykey (adminproject, cloud1) 0 | 04:05 |
vishy | still showing networking? | 04:05 |
Code_Bleu | vishy: yes | 04:05 |
vishy | must have gotten another error in nova-network | 04:05 |
Code_Bleu | vishy: does this need to be added to the nova.conf ...from the log file....flat_interface : None | 04:07 |
vishy | no | 04:07 |
vishy | we're running without an interface | 04:07 |
vishy | is nova-network actually running? | 04:08 |
vishy | all of the useful info in the logs will be at the bottom btw | 04:10 |
Code_Bleu | vishy: yes nova-network is running. I dont see any errors that i can tell | 04:11 |
vishy | ok try sudo rabbitmqctl list_queues | 04:12 |
vishy | see if there is a number next to network.<hostname> | 04:13 |
Code_Bleu | vishy: bottom of the nova-network log file http://pastebin.com/yBwmHUJY | 04:14 |
*** miclorb_ has joined #openstack | 04:14 | |
Code_Bleu | vishy: all 0's | 04:14 |
vishy | do you have multiple copies of nova-network running? | 04:14 |
Code_Bleu | vishy: not that im aware of | 04:15 |
vishy | next check if there are any errors at the bottom of nova-compute log | 04:15 |
*** pharkmillups has quit IRC | 04:16 | |
Code_Bleu | vishy: yes there is an error....pastie coming | 04:17 |
Code_Bleu | vishy: http://pastebin.com/XmpfjwaZ | 04:17 |
vishy | looks like your stuff isn't using the same conf file | 04:18 |
vishy | did you start all of the workers with --flagfile=/etc/nova/nova.conf? | 04:18 |
vishy | if so you might just need to restart all of the other workers | 04:19 |
Code_Bleu | vishy: workers? | 04:19 |
vishy | nova-compute nova-api | 04:19 |
vishy | etc. | 04:19 |
Code_Bleu | --flagfile is not set in the nova.conf file...does it need to be | 04:20 |
Code_Bleu | vishy: do i need to add --flagfile=/etc/nova/nova.conf to nova.conf? | 04:21 |
vishy | no | 04:21 |
vishy | how are you starting all of the nova-* files? | 04:21 |
Code_Bleu | vishy: ok, i have only been restarting the nova-network...and ive only done it manually a couple of times when i was first configuring everything. | 04:22 |
Code_Bleu | vishy: how about a reboot...will that work? | 04:22 |
vishy | ah yes you need to restart everything if you are editing the conf | 04:22 |
vishy | how are they running? | 04:22 |
vishy | are you using upstart scripts? | 04:23 |
vishy | running them manually? | 04:23 |
Code_Bleu | vishy: as far as i know they all run after a reboot..other than that...i manually stop and start them | 04:23 |
vishy | ok I'm assuming you installed from packages or something | 04:25 |
vishy | in that case | 04:25 |
vishy | restart nova-compute | 04:25 |
Code_Bleu | vishy: yes i installed from packages | 04:26 |
Code_Bleu | vishy: guess what? | 04:26 |
Code_Bleu | vishy: i can ping the image now!!!! | 04:26 |
Code_Bleu | woooo whooo!!! | 04:26 |
vishy | hoyoo! | 04:26 |
vishy | you probably want to do a restart nova-api and nova-objectstore and nova-scheduler at some point | 04:27 |
vishy | see only 2 hours of troubleshooting | 04:27 |
vishy | :P | 04:27 |
Code_Bleu | vishy: insane....thanks for all your help though | 04:28 |
Code_Bleu | vishy: now im trying to login...dont know the password | 04:28 |
vishy | Code_Bleu: yw, pay it forward | 04:28 |
vishy | Code_Bleu: you need to create a keypair | 04:28 |
vishy | and run using -k <keypair> | 04:29 |
Code_Bleu | vishy: i will pay forward all that i know and understand ;) | 04:29 |
Code_Bleu | vishy: this is what i ran ssh -i mykey.priv root@10.3.3.2 | 04:29 |
Code_Bleu | vishy: get-console command gives me fingerprints | 04:30 |
vishy | and mykey.priv came from euca-add-keypair? | 04:30 |
Code_Bleu | vishy: yes | 04:31 |
vishy | and you ran with euca-run-instances -k mykey | 04:31 |
vishy | did you chmod 600 mykey.priv ? | 04:31 |
Code_Bleu | vishy: yes | 04:31 |
Code_Bleu | vishy: yes | 04:31 |
vishy | try using username ubuntu | 04:31 |
vishy | (possible the key injection failed) | 04:31 |
Code_Bleu | vishy: you da man...ubuntu worked | 04:32 |
vishy | good deal | 04:32 |
Code_Bleu | vishy: thanks | 04:33 |
Code_Bleu | vishy: do you know anything about virt-manager? just curious about something | 04:33 |
Code_Bleu | vishy: it sees the instance running..but says graphical console not configured | 04:34 |
Code_Bleu | vishy: no biggie...im just glad i can ssh into it...just wondering is all | 04:34 |
vishy | Code_Blue: they don't run with video | 04:34 |
vishy | Code_Bleu: you can modify libvirt.xml if you want to run with gfx | 04:34 |
vishy | but i don't know why you would want to | 04:35 |
Code_Bleu | vishy: say i run an instance of ubuntu desktop...how would i use the gui? | 04:38 |
vishy | well you probably would want to share it in the guest somehow | 04:38 |
vishy | running vnc for example | 04:39 |
vishy | but if you are using it locally, you might be able to stick sdl graphics into the libvirt.xml | 04:39 |
vishy | I've never tried it but it seems like it would work | 04:40 |
Code_Bleu | vishy: what is sdl graphics? im running this on ubuntu server without a gui | 04:40 |
vishy | oh well in that case no that won't work | 04:40 |
vishy | so you're going to have to export vnc then | 04:41 |
vishy | but you might as well do it inside the client | 04:41 |
vishy | but you can't actually connect to the client ip in the current mode | 04:41 |
Code_Bleu | vishy: ok | 04:42 |
vishy | (from outside the server i mean) | 04:42 |
Code_Bleu | vishy: is this standard operation? only connect to vm via the server? | 04:43 |
vishy | floating_ips | 04:43 |
vishy | :) | 04:43 |
vishy | for outside access | 04:43 |
*** azneita has joined #openstack | 04:43 | |
Code_Bleu | vishy: ok...i need to get to bed, its pretty late here....floating_ips for another day | 04:44 |
vishy | good deal | 04:44 |
Code_Bleu | vishy: again, thanks a lot | 04:44 |
Code_Bleu | vishy: ok, i had to look up floating_ips.....so can you have fixed and floating at the same time...or you have to use one or the other? | 04:48 |
Code_Bleu | vishy: ok im gone this time, thx | 04:50 |
*** azneita has quit IRC | 04:51 | |
*** azneita has joined #openstack | 04:55 | |
*** ovidwu has joined #openstack | 04:56 | |
*** HugoKuo has quit IRC | 05:00 | |
*** ovidwu has quit IRC | 05:13 | |
*** HugoKuo has joined #openstack | 05:17 | |
HugoKuo | If I want to use deployment tool | 05:23 |
HugoKuo | shoud I install puppet on each nodes first ? | 05:23 |
*** matiu has quit IRC | 05:33 | |
*** combo has joined #openstack | 05:35 | |
*** f4m8_ is now known as f4m8 | 05:44 | |
*** mahadev has joined #openstack | 05:59 | |
*** clayg has quit IRC | 06:12 | |
*** clayg_ has joined #openstack | 06:13 | |
*** clayg_ is now known as clayg | 06:16 | |
*** Daviey has quit IRC | 06:23 | |
*** cdbs_ has quit IRC | 06:23 | |
*** miclorb_ has quit IRC | 06:26 | |
*** cdbs has joined #openstack | 06:26 | |
*** Daviey has joined #openstack | 06:34 | |
*** miclorb has joined #openstack | 06:34 | |
*** konquertech has joined #openstack | 06:44 | |
konquertech | any one tried installing Openstack Dashboard with latest trunk ? | 06:45 |
*** openstack` has joined #openstack | 06:49 | |
*** openstack has quit IRC | 06:49 | |
*** jdarcy_ has joined #openstack | 06:50 | |
*** dillon-w has joined #openstack | 06:50 | |
*** openstack` is now known as openstack | 06:50 | |
*** cw_ has joined #openstack | 06:51 | |
*** anticw has joined #openstack | 06:51 | |
*** magglass2 has joined #openstack | 06:52 | |
*** guigui has joined #openstack | 06:53 | |
*** bludadept_work` has joined #openstack | 06:54 | |
*** blamar_ has joined #openstack | 06:54 | |
*** winston-d has quit IRC | 06:55 | |
*** blamar has quit IRC | 06:55 | |
*** anticw_ has quit IRC | 06:55 | |
*** Guest98035 has quit IRC | 06:55 | |
*** rdw has quit IRC | 06:55 | |
*** jk0 has quit IRC | 06:55 | |
*** ttx has quit IRC | 06:55 | |
*** openstackhudson has quit IRC | 06:55 | |
*** magglass1 has quit IRC | 06:55 | |
*** jdarcy has quit IRC | 06:55 | |
*** cw has quit IRC | 06:55 | |
*** rdw has joined #openstack | 06:55 | |
*** ttx has joined #openstack | 06:55 | |
*** ttx has joined #openstack | 06:55 | |
*** openstackhudson has joined #openstack | 06:56 | |
*** jk0 has joined #openstack | 06:57 | |
*** jk0 has joined #openstack | 06:57 | |
*** ChanServ sets mode: +v jk0 | 06:57 | |
*** gasbakid has joined #openstack | 07:04 | |
*** mgoldmann has joined #openstack | 07:04 | |
*** jfluhmann__ has joined #openstack | 07:08 | |
*** jfluhmann_ has quit IRC | 07:12 | |
*** ramkrsna has joined #openstack | 07:15 | |
*** ramkrsna has joined #openstack | 07:15 | |
*** mahadev has quit IRC | 07:22 | |
*** naehring has joined #openstack | 07:24 | |
*** CloudChris has joined #openstack | 07:24 | |
*** ramkrsna has quit IRC | 07:28 | |
*** fabiand_ has joined #openstack | 07:29 | |
*** konquertech has quit IRC | 07:30 | |
*** ramkrsna has joined #openstack | 07:46 | |
*** lionel has quit IRC | 07:51 | |
*** lionel has joined #openstack | 07:51 | |
*** fabiand_ has quit IRC | 08:00 | |
HugoKuo | hello | 08:00 |
*** EndEng|Desktop has joined #openstack | 08:02 | |
*** EndEng|Alt has quit IRC | 08:06 | |
*** naehring has quit IRC | 08:09 | |
*** drico_ has joined #openstack | 08:18 | |
*** drico_ has quit IRC | 08:21 | |
*** rcc has joined #openstack | 08:21 | |
*** skiold has joined #openstack | 08:25 | |
*** scyld has joined #openstack | 08:27 | |
*** skiold has quit IRC | 08:27 | |
*** scyld is now known as skiold | 08:27 | |
*** guigui has quit IRC | 08:29 | |
*** daveiw has joined #openstack | 08:31 | |
*** allsystemsarego has joined #openstack | 08:37 | |
*** allsystemsarego has joined #openstack | 08:37 | |
*** MarcMorata has joined #openstack | 08:37 | |
*** azneita has quit IRC | 08:52 | |
*** miclorb has joined #openstack | 08:58 | |
*** cascone has quit IRC | 09:05 | |
*** adjohn has quit IRC | 09:12 | |
*** adjohn has joined #openstack | 09:13 | |
*** adjohn has quit IRC | 09:14 | |
*** cascone has joined #openstack | 09:17 | |
*** nerens has joined #openstack | 09:23 | |
*** soren_ has quit IRC | 09:31 | |
*** soren_ has joined #openstack | 09:31 | |
*** ChanServ sets mode: +v soren_ | 09:31 | |
*** soren_ is now known as soren | 09:32 | |
*** ramkrsna has quit IRC | 09:47 | |
*** ramkrsna has joined #openstack | 09:47 | |
HugoKuo | what if I want to assign ips range 172.16.2.130-172.16.2.180 ....is that possible? | 09:49 |
*** citral has joined #openstack | 09:56 | |
*** CloudChris has quit IRC | 09:56 | |
*** CloudChris has joined #openstack | 09:56 | |
*** CloudChris has quit IRC | 10:04 | |
*** CloudChris has joined #openstack | 10:04 | |
*** londo has joined #openstack | 10:05 | |
*** cascone has quit IRC | 10:05 | |
*** EndEng|Alt has joined #openstack | 10:08 | |
*** EndEng|Desktop has quit IRC | 10:12 | |
*** DigitalFlux has joined #openstack | 10:14 | |
*** DigitalFlux has joined #openstack | 10:14 | |
*** rds__ has joined #openstack | 10:21 | |
*** EndEng|Desktop has joined #openstack | 10:22 | |
*** DigitalFlux has quit IRC | 10:26 | |
*** EndEng|Alt has quit IRC | 10:26 | |
*** cascone has joined #openstack | 10:28 | |
*** miclorb has quit IRC | 10:45 | |
*** EndEng|Alt has joined #openstack | 10:48 | |
*** EndEng|Desktop has quit IRC | 10:52 | |
*** ramkrsna has quit IRC | 10:54 | |
*** AhmedElGamil has joined #openstack | 10:56 | |
*** AhmedElGamil has quit IRC | 10:58 | |
*** DigitalFlux has joined #openstack | 10:58 | |
*** sarkski has left #openstack | 11:07 | |
*** EndEng|Desktop has joined #openstack | 11:08 | |
*** EndEng|Alt has quit IRC | 11:12 | |
*** adjohn has joined #openstack | 11:32 | |
*** ramkrsna has joined #openstack | 11:47 | |
*** ramkrsna has joined #openstack | 11:47 | |
*** lionel has quit IRC | 11:55 | |
*** citral has quit IRC | 11:55 | |
*** lionel has joined #openstack | 11:57 | |
*** citral has joined #openstack | 11:59 | |
sandywalsh | For the API people in the house: http://blog.apigee.com/detail/apigee_to_go/ | 12:13 |
*** skiold has quit IRC | 12:14 | |
*** skiold has joined #openstack | 12:22 | |
*** EndEng|Alt has joined #openstack | 12:39 | |
*** EndEng|Desktop has quit IRC | 12:42 | |
jaypipes | sandywalsh: nice :) | 12:50 |
sandywalsh | jaypipes, looks intriguing | 12:51 |
jaypipes | sandywalsh: indeed. | 12:52 |
dabo | sandywalsh: that looks interesting. I listen to soundcloud a lot when I'm coding. | 12:53 |
*** ramkrsna_ has joined #openstack | 12:58 | |
*** herki has joined #openstack | 13:00 | |
*** ramkrsna has quit IRC | 13:01 | |
*** pvo has joined #openstack | 13:01 | |
*** hadrian has joined #openstack | 13:08 | |
*** mustfg has joined #openstack | 13:14 | |
*** ramkrsna__ has joined #openstack | 13:15 | |
*** hadrian_ has joined #openstack | 13:15 | |
*** hadrian has quit IRC | 13:18 | |
*** hadrian_ is now known as hadrian | 13:18 | |
*** ramkrsna_ has quit IRC | 13:18 | |
*** EndEng|Desktop has joined #openstack | 13:21 | |
*** EndEng|Alt has quit IRC | 13:25 | |
*** mustfg has quit IRC | 13:31 | |
*** jfluhmann__ has quit IRC | 13:35 | |
*** ramkrsna__ has quit IRC | 13:43 | |
*** hadrian_ has joined #openstack | 13:45 | |
*** hadrian has quit IRC | 13:47 | |
*** hadrian_ is now known as hadrian | 13:47 | |
*** adjohn has quit IRC | 13:50 | |
*** dprince has joined #openstack | 13:51 | |
*** pvo has quit IRC | 13:54 | |
*** ppetraki has joined #openstack | 13:56 | |
*** ramkrsna has joined #openstack | 14:00 | |
*** zul_ is now known as zul | 14:05 | |
*** zul has joined #openstack | 14:06 | |
*** aliguori has joined #openstack | 14:09 | |
*** hggdh has quit IRC | 14:11 | |
*** kashyap has joined #openstack | 14:15 | |
*** rds__ has quit IRC | 14:16 | |
*** hggdh has joined #openstack | 14:16 | |
*** hggdh has joined #openstack | 14:16 | |
uvirtbot` | New bug: #730639 in nova ""nova-dhcpbridge init" output malformed" [Undecided,New] https://launchpad.net/bugs/730639 | 14:16 |
soren | uvirtbot`: nick uvirtbot | 14:18 |
*** uvirtbot` is now known as uvirtbot | 14:18 | |
*** jdarcy_ is now known as jdarcy | 14:21 | |
*** gondoi has joined #openstack | 14:22 | |
*** jfluhmann has joined #openstack | 14:25 | |
*** cascone has quit IRC | 14:26 | |
*** daveiw has left #openstack | 14:30 | |
*** EndEng|Alt has joined #openstack | 14:32 | |
*** EndEng|Desktop has quit IRC | 14:36 | |
*** vvuksan has joined #openstack | 14:41 | |
HugoKuo | hey guys | 14:42 |
HugoKuo | nova-NODE install script | 14:42 |
HugoKuo | has a word wrong at beginning | 14:43 |
HugoKuo | #!/bin/sh ===> #!/bin/bash | 14:43 |
HugoKuo | it should be correct | 14:43 |
soren | Which install script, exactly? | 14:44 |
soren | HugoKuo: Which install script, exactly? | 14:45 |
*** hggdh has quit IRC | 14:46 | |
*** hggdh has joined #openstack | 14:47 | |
*** hggdh has joined #openstack | 14:47 | |
*** f4m8 is now known as f4m8_ | 14:47 | |
HugoKuo | https://github.com/dubsquared/OpenStack-NOVA-Installer-Script/blob/master/nova-NODE-installer.sh | 14:48 |
*** kashyap has quit IRC | 14:49 | |
soren | HugoKuo: Why does it need bash? | 14:50 |
*** vvuksan has quit IRC | 14:51 | |
HugoKuo | while I run it on with sh | 14:51 |
HugoKuo | the OS version will be judged invalid | 14:51 |
soren | Oh, and read uses -e. | 14:51 |
HugoKuo | my OS is Lucid 64 | 14:51 |
HugoKuo | yes | 14:51 |
soren | Oh, right, and he's using [[ ]]. | 14:52 |
HugoKuo | :> | 14:52 |
soren | dubsquared doesn't seem to be around right now. | 14:53 |
HugoKuo | oh btw , I have this metadata error where the instance tries to get something from 169.254.169.254 .... | 14:54 |
HugoKuo | even after configuring iptables correctly on the nova-compute | 14:54 |
HugoKuo | any clue ? | 14:54 |
soren | "this metadata error"? | 14:55 |
HugoKuo | https://answers.launchpad.net/nova/+question/145062 | 14:55 |
HugoKuo | same as above | 14:55 |
HugoKuo | the instances can run but even after setting the correct rules (euca-authorize ....) I still can't ping nor SSH | 14:56 |
HugoKuo | an euca-get-console-output shows that metadata error | 14:57 |
soren | pastebin the output of iptables-save, please. | 14:58 |
HugoKuo | ok | 14:58 |
btorch | HugoKuo: I was battling that issue for 4 days last week until I finally was able to get it working :) | 14:59 |
btorch | HugoKuo: are you using flatManage or flatDHCPmanage ? when I used flatdhcpmanage it worked fine but it created duplicate ip issue on my localnet with my router. then I went back to flatmanage and it worked once I setup a second ip on the br100 for the network gateway | 15:00 |
HugoKuo | http://pastebin.com/kpy6XnzT | 15:01 |
HugoKuo | and the euca-get-console-output gives http://pastebin.com/DXXCnYT6 | 15:03 |
HugoKuo | btorch, I'm using flatManage | 15:03 |
HugoKuo | btorch, which ip did u setup, can you show me your nova-compute /etc/network/interfaces ? | 15:04 |
btorch | HugoKuo: paste your nova.conf too | 15:04 |
btorch | HugoKuo: sure let me access my box | 15:04 |
HugoKuo | btorch, here is my nova-compute's nova.conf http://pastebin.com/85vr5gYa | 15:05 |
HugoKuo | btorch, and my cc's nova.conf http://pastebin.com/ptQSu73r | 15:06 |
*** mray has joined #openstack | 15:07 | |
*** mahadev has joined #openstack | 15:10 | |
btorch | HugoKuo: http://pastebin.com/w06m6bdH | 15:11 |
btorch | HugoKuo: that one you see that br100 only has a regular IP that I assigned to the host box ... if I leave like that I will keep on getting that metadata crap | 15:12 |
HugoKuo | btorch, thanks I'll compare with what I have | 15:12 |
btorch | HugoKuo: but when I add the 172.16.20.97 gateway ip to br100 then it boots up fine since it can now find the gateway | 15:12 |
btorch | HugoKuo: I'm sure there are some options on my config that could be removed .. like the public_interface one ... but I haven't tried yet | 15:13 |
*** ramkrsna has quit IRC | 15:14 | |
*** ramkrsna has joined #openstack | 15:15 | |
btorch | HugoKuo: http://pastebin.com/fS7wax8N | 15:15 |
btorch | HugoKuo: http://pastebin.com/DjD8t2M0 and this is after I add the gateway ip | 15:17 |
soren | btorch: FlatManager won't work for that image. | 15:17 |
soren | Whoops. | 15:17 |
soren | HugoKuo: FlatManager won't work for that image. | 15:17 |
HugoKuo | oh | 15:17 |
HugoKuo | so, which image should i try ? | 15:17 |
soren | HugoKuo: Well, you referred to a question on Launchpad, saying you were seeing the same thing. Clearly you weren't. | 15:18 |
btorch | soren: for this one ? IMAGE ami-7g6y8ku3 bucket-1/maverick-server-uec-amd64.img.manifest.xml ? | 15:18 |
HugoKuo | btorch, what's your architecture ? mine is 1 compute node and 1 CC/CLC | 15:18 |
soren | HugoKuo: You could use an Ubuntu image. Or a Debian image. They work with FlatManager. | 15:18 |
soren | Or you could stop using FlatManager. | 15:18 |
HugoKuo | what should i use instead ? | 15:19 |
soren | btorch: No, that one is fine. sorry, my comment was meant for HugoKuo. | 15:19 |
soren | HugoKuo: Why did you choose FlatManager? | 15:19 |
btorch | HugoKuo: I'm have a all-in-one right now running on maverick 64bit | 15:20 |
HugoKuo | soren, I didn't choose anything, I just executed the scripts | 15:21 |
HugoKuo | btorch, what does 172.16.20.97 represents exactly in your network ? | 15:21 |
soren | HugoKuo: There are eleventy billion different scripts. | 15:21 |
btorch | soren: although that one should work, it doesn't unless one setup a gateway ip or have a gateway on the localnet .. at least that's what I found out | 15:21 |
soren | I hope you didn't execute all of them. | 15:21 |
soren | :) | 15:21 |
HugoKuo | soren, sorry https://github.com/dubsquared/OpenStack-NOVA-Installer-Script/ | 15:22 |
HugoKuo | soren, one script per machine | 15:22 |
soren | I've no idea why he would default to FlatManager. | 15:22 |
jarrod | Why would I be getting this with Xen: Failure: ['INTERNAL_ERROR', 'XenguestHelper.Xc_dom_linux_build_failure(2, " xc_dom_find_loader: no loader found\\\\\\\\n\\\\\\"") ? | 15:22 |
soren | FlatDHCPManager will probably work much better for you. | 15:23 |
HugoKuo | soren, ok, I will try that | 15:23 |
jarrod | I think it's related to me running openstack within a domU guest | 15:23 |
* soren takes off for some hours | 15:23 | |
btorch | HugoKuo: while digging on the db and tcpdump I saw that the vm box kept looking for a gateway ip , so I configured that on my host box too see what would happen.. since ip_forward is setup I didn't see any harm | 15:24 |
*** mahadev has quit IRC | 15:28 | |
*** mahadev has joined #openstack | 15:29 | |
btorch | HugoKuo: sent u a pm | 15:30 |
*** bcwaldon has joined #openstack | 15:30 | |
*** j05h has joined #openstack | 15:31 | |
*** mahadev has quit IRC | 15:33 | |
*** aliguori has quit IRC | 15:34 | |
*** dendrobates is now known as dendro-afk | 15:35 | |
*** aliguori has joined #openstack | 15:38 | |
*** mahadev has joined #openstack | 15:40 | |
*** EndEng|Alt has quit IRC | 15:40 | |
*** EndEng|Alt has joined #openstack | 15:42 | |
*** Guest95005 is now known as antonym | 15:46 | |
*** antonym has joined #openstack | 15:47 | |
*** ChanServ sets mode: +v antonym | 15:47 | |
*** bcwaldon has quit IRC | 15:47 | |
*** EndEng|Desktop has joined #openstack | 15:51 | |
*** hub_cap has joined #openstack | 15:51 | |
annegentle | Code_Bleu: thanks for pointing out the missing Creds section in the docs, I've added it in. | 15:52 |
*** jero has joined #openstack | 15:53 | |
*** EndEng|Alt has quit IRC | 15:54 | |
*** mahadev has quit IRC | 15:57 | |
*** skiold has quit IRC | 15:57 | |
*** dragondm has joined #openstack | 16:01 | |
*** bcwaldon has joined #openstack | 16:03 | |
*** EndEng|Alt has joined #openstack | 16:06 | |
*** mray has quit IRC | 16:06 | |
*** tr3buche` is now known as tr3buchet | 16:06 | |
*** EndEng|Desktop has quit IRC | 16:09 | |
*** smoser` is now known as smoser | 16:09 | |
*** HugoKuo is now known as fayce | 16:11 | |
*** z0 has joined #openstack | 16:12 | |
*** mray has joined #openstack | 16:12 | |
*** asksol_ is now known as asksol | 16:13 | |
*** ramkrsna has quit IRC | 16:16 | |
*** DigitalFlux has quit IRC | 16:16 | |
*** mahadev has joined #openstack | 16:16 | |
*** dendro-afk is now known as dendrobates | 16:21 | |
*** mgoldmann has quit IRC | 16:23 | |
*** skiold has joined #openstack | 16:30 | |
*** gregp76 has joined #openstack | 16:31 | |
*** citral has quit IRC | 16:35 | |
*** MarkAtwood has joined #openstack | 16:36 | |
*** skiold has quit IRC | 16:37 | |
*** EndEng|Desktop has joined #openstack | 16:45 | |
*** z0 has quit IRC | 16:46 | |
*** EndEng|Alt has quit IRC | 16:48 | |
vishy | soren: good catch on the init script being wrong. How did you get it to actually segfault? | 16:50 |
*** winston-d has joined #openstack | 16:51 | |
*** joearnold has joined #openstack | 16:52 | |
*** bcwaldon has quit IRC | 16:53 | |
*** z0 has joined #openstack | 16:55 | |
*** gregp76 has quit IRC | 16:56 | |
*** daveiw has joined #openstack | 16:56 | |
*** gregp76 has joined #openstack | 16:58 | |
*** rnirmal has joined #openstack | 17:03 | |
*** winston-d has quit IRC | 17:06 | |
jaypipes | antonym: thx for looking into the httpd logs for me. much appreciated. | 17:06 |
*** ccustine has quit IRC | 17:10 | |
*** ccustine has joined #openstack | 17:11 | |
*** hub_cap_ has joined #openstack | 17:14 | |
*** hub_cap has quit IRC | 17:14 | |
*** hub_cap_ is now known as hub_cap | 17:14 | |
*** imsplitbit has joined #openstack | 17:20 | |
*** dysinger has joined #openstack | 17:20 | |
*** gregp76 has quit IRC | 17:21 | |
*** daveiw has quit IRC | 17:23 | |
*** DigitalFlux has joined #openstack | 17:26 | |
jaypipes | eday: that was pretty much my original point on Glance understanding image formats... my comment was pretty sarcastic. | 17:29 |
jaypipes | sandywalsh: ^^ | 17:29 |
sandywalsh | jaypipes, gotcha ... thx | 17:30 |
*** kbringard has joined #openstack | 17:34 | |
*** mahadev has quit IRC | 17:34 | |
*** if01 has joined #openstack | 17:36 | |
*** iRTermite has quit IRC | 17:38 | |
*** iRTermite has joined #openstack | 17:38 | |
eday | jaypipes: ahh, sarcasm :) | 17:42 |
dubs | jaypipes: do you have a migration script for disk_format and container_format? | 17:44 |
jaypipes | dubs: https://bugs.launchpad.net/glance/+bug/730213 | 17:44 |
uvirtbot | Launchpad bug 730213 in glance "image-format needs db migration script" [High,Triaged] | 17:44 |
dubs | jaypipes: thank you sir :) i'll just create them manually for now | 17:45 |
jaypipes | dubs: I'd be most appreciative if you could try that attached migration script and, if failure, add your failure to the bug report. | 17:45 |
jaypipes | dubs: see the migration script on that bug (attachement) | 17:45 |
dubs | sure thing, i'll give it a shot now | 17:46 |
*** fayce is now known as HugoKuo | 17:47 | |
*** HugoKuo has quit IRC | 17:47 | |
jaypipes | dubs: thx mate | 17:48 |
*** dragondm has quit IRC | 17:54 | |
*** EndEng|Alt has joined #openstack | 17:54 | |
jarrod | is there no way to tell glance-upload it should reference a remote server? | 17:57 |
*** EndEng|Desktop has quit IRC | 17:58 | |
*** mahadev has joined #openstack | 17:59 | |
antonym | jaypipes: no prob, i'd snag them but i don't have access to that system | 18:01 |
*** dragondm has joined #openstack | 18:02 | |
kbringard | I realize this isn't an openstack question per se, but I am trying to delegate a subdomain from my upstream dns to the dnsmasq processes that openstack starts and I'm having some trouble | 18:03 |
kbringard | anyone have any experience with that? | 18:03 |
*** cloud0 has joined #openstack | 18:09 | |
*** EndEng|Alt has quit IRC | 18:14 | |
jarrod | I am attempting to boot a xen instance iwth openstack and it says running/active in both os and xen, but the console shows Running /scripts/init-bottom ... Done. | 18:14 |
jarrod | and that's it | 18:14 |
*** maplebed has joined #openstack | 18:17 | |
*** CloudChris has quit IRC | 18:22 | |
*** EndEng|Alt has joined #openstack | 18:27 | |
*** rcc has quit IRC | 18:32 | |
openstackhudson | Project nova build #600: SUCCESS in 1 min 58 sec: http://hudson.openstack.org/job/nova/600/ | 18:33 |
openstackhudson | Tarmac: Implementation for XenServer migrations. There are several places for optimization but I based the current implementation on the chance scheduler just to be safe. Beyond that, a few features are missing, such as ensuring the IP address is transferred along with the migrated instance. This will be added in a subsequent patch. Finally, everything is implemented through the Openstack API resize hooks, but actual resizi | 18:33 |
uvirtbot | New bug: #730806 in nova "XenAPI naming-scheme rework" [Undecided,New] https://launchpad.net/bugs/730806 | 18:36 |
*** hggdh has quit IRC | 18:39 | |
*** hggdh has joined #openstack | 18:41 | |
*** hggdh has joined #openstack | 18:41 | |
*** enigma1 has joined #openstack | 18:46 | |
jarrod | i cannot figure out why xen is giving me "_wait_for_boot" and stopping at scripts/init-bottom | 18:51 |
*** fabiand_ has joined #openstack | 18:52 | |
*** EndEng|Desktop has joined #openstack | 18:56 | |
*** if01 has joined #openstack | 18:58 | |
*** EndEng|Alt has quit IRC | 19:00 | |
*** MarcMorata has quit IRC | 19:00 | |
*** dprince has quit IRC | 19:01 | |
*** EndEng|Alt has joined #openstack | 19:03 | |
*** gregp76 has joined #openstack | 19:05 | |
*** EndEng|Desktop has quit IRC | 19:07 | |
*** dprince has joined #openstack | 19:16 | |
*** rds__ has joined #openstack | 19:31 | |
*** clauden_ has joined #openstack | 19:31 | |
*** kbringard has quit IRC | 19:38 | |
*** kbringard has joined #openstack | 19:38 | |
*** deepheat has joined #openstack | 19:40 | |
*** fabiand_ has quit IRC | 19:42 | |
*** hadrian has quit IRC | 19:48 | |
*** nelson has quit IRC | 19:49 | |
*** nelson has joined #openstack | 19:49 | |
*** daveiw has joined #openstack | 19:59 | |
nelson | creiht: thanks for your help over the past few months. You can now replace upload.wikimedia.org with alsted.wikimedia.org and your image will come out of the Swift cluster. | 20:02 |
*** mgoldmann has joined #openstack | 20:02 | |
nelson | It works if you add 208.80.152.232upload.wikimedia.org to your /etc/hosts file. | 20:02 |
*** rlucio has joined #openstack | 20:03 | |
nelson | It's a kinda-scary thought that we could seamlessly transition from the test cluster to the production cluster with nobody ever noticing. | 20:03 |
*** CloudChris has joined #openstack | 20:06 | |
nelson | It's also kinda-scary that I'm being paid to browse Wikipedia at this moment. | 20:06 |
nelson | And it's kinda-annoying how many articles have zero media content at all. | 20:07 |
*** maple_bed has joined #openstack | 20:08 | |
*** maplebed has quit IRC | 20:09 | |
nelson | It's serving up SVGs properly. http://alsted.wikimedia.org/wikipedia/commons/0/06/Poland_location_map.svg | 20:12 |
nelson | And PNGs and GIFs, and JPGs. | 20:12 |
kpepple | nelson: any chance you can share the deployment architecture behind this ? would love to see a picture of how people are using this in production (or near production) | 20:13 |
*** jaypipes is now known as jaypipes-afk | 20:18 | |
*** rlucio has quit IRC | 20:19 | |
*** daveiw has left #openstack | 20:21 | |
*** dendrobates is now known as dendro-afk | 20:22 | |
*** dendro-afk is now known as dendrobates | 20:24 | |
notmyname | nelson: that's awesome | 20:26 |
nelson | yes, awesome to see it finally working. :) | 20:26 |
nelson | kpepple: it's pretty straightforward. For now, one proxy, three machines, 2x 0.25TB each. | 20:27 |
nelson | kpepple: proxy has a plugin (filter) which maps the Wikipedia names into Swift names, and which fetches from the existing server. | 20:27 |
kpepple | nelson: any authentication integration ? | 20:27 |
*** msassak has joined #openstack | 20:28 | |
nelson | not yet. We currently are running a PHP script which handles the few non-public wikis. | 20:28 |
nelson | That's gonna have to be reimplemented somehow. | 20:29 |
*** dprince has quit IRC | 20:30 | |
*** ahmedelgamil has joined #openstack | 20:41 | |
annegentle | nelson: very cool. | 20:41 |
nelson | yeppers. We'll be publishing the code, of course. | 20:42 |
annegentle | nelson: I just said "quarter terrabyte" ten times fast :) | 20:42 |
nelson | Yeah, we'll have 20 available, which means 60 spinning once we're live. | 20:43 |
nelson | and the really really cool thing is that we never have to have a Flag Day. | 20:43 |
*** DigitalFlux has quit IRC | 20:43 | |
*** rlucio has joined #openstack | 20:44 | |
*** brd_from_italy has joined #openstack | 20:48 | |
creiht | nelson: congrats!!!! that is very awesome indeed | 20:54 |
nelson | Yes, I'm very excited. | 20:54 |
nelson | Been browsing Wikipedia all day. Aside from a couple of missing containers, it's been working a champ. | 20:55 |
creiht | cool | 20:55 |
*** mray has quit IRC | 20:56 | |
*** mray has joined #openstack | 20:57 | |
*** mahadev_ has joined #openstack | 20:59 | |
*** mahadev has quit IRC | 20:59 | |
*** fabiand_ has joined #openstack | 21:00 | |
notmyname | nelson: so is this simply a cname away from being live (primary) or is there more you have to do first? | 21:11 |
vishy | soren: are you around? | 21:13 |
nelson | notmyname: kinda-sorta. we're going to test it with 1/256th of the load first. | 21:20 |
*** grapex has joined #openstack | 21:26 | |
*** miclorb_ has joined #openstack | 21:29 | |
*** spectorclan_ has joined #openstack | 21:30 | |
*** nerens has quit IRC | 21:33 | |
*** gregp76 has quit IRC | 21:40 | |
*** gregp76 has joined #openstack | 21:41 | |
*** fabiand_ has quit IRC | 21:41 | |
*** dendrobates is now known as dendro-afk | 21:42 | |
*** MarkAtwood has quit IRC | 21:43 | |
soren | vishy: Yes. | 21:44 |
vishy | soren: we need qemu 14 to do snapshotting properly in libvirt. It is in natty. Would it be tough to backport it to the ppa? | 21:45 |
*** gasbakid has quit IRC | 21:45 | |
soren | vishy: Not at all. | 21:47 |
*** rlucio has quit IRC | 21:50 | |
*** rlucio has joined #openstack | 21:51 | |
*** CloudChris has quit IRC | 21:52 | |
*** littleidea has joined #openstack | 21:53 | |
zul | soren: ill update the bzr branch tonight | 21:56 |
soren | zul: No rush. | 21:57 |
*** dirakx has quit IRC | 21:57 | |
*** imsplitbit has quit IRC | 21:58 | |
*** clauden_ has left #openstack | 22:01 | |
*** littleidea has quit IRC | 22:08 | |
*** MarkAtwood has joined #openstack | 22:09 | |
*** ccustine has quit IRC | 22:10 | |
*** rdw has quit IRC | 22:10 | |
*** magglass2 has quit IRC | 22:10 | |
*** jdarcy has quit IRC | 22:10 | |
*** magglass1 has joined #openstack | 22:11 | |
*** jdarcy has joined #openstack | 22:11 | |
*** mahadev_ has quit IRC | 22:11 | |
*** brd_from_italy has quit IRC | 22:11 | |
*** mahadev has joined #openstack | 22:12 | |
*** rdw has joined #openstack | 22:12 | |
btorch | ok I have box-1 that has all nova services & DB and I'm able to bring kvm guests up and running on flatManage network | 22:12 |
*** ccustine has joined #openstack | 22:12 | |
kbringard | hey vishy, are there any plans to make a flag for nova-network to allow us to pass a dnsmasq config file location? | 22:13 |
btorch | now I want to configure box-2 and have that also setup with kvm .. so I assume that on that box I should only need nova-compute, nova-common and whatever dependencies ? | 22:13 |
*** mgoldmann has quit IRC | 22:13 | |
kbringard | it would be nice to be able to modify the behavior if necessary, but it looks like it's hard coded at the moment | 22:13 |
kbringard | I thought I saw a "bug" kind of related about the dnsmasq domain stuff | 22:14 |
vishy | no plans, but you could add it | 22:14 |
kbringard | OK, cool | 22:14 |
kbringard | it's nice to be able to set domain= :-) | 22:14 |
kbringard | thanks :-) | 22:15 |
*** bludadept_work` has quit IRC | 22:16 | |
soren | kbringard: You can. | 22:19 |
soren | kbringard: FLAGS.dhcp_domain. | 22:19 |
kbringard | oooooooo | 22:19 |
soren | i.e. --dhcp_domain=example.com | 22:19 |
kbringard | does it pass it straight along... so for instance, can I pass 2 --domains with subnet attributes | 22:20 |
kbringard | it's kind of a long story, but essentially I have a subdomain per project | 22:21 |
kbringard | so what I'm doing is | 22:21 |
jarrod | anyone know anything about openstack compatibility with Xen | 22:21 |
kbringard | --domain=project1.example.com,10.10.1.0/24 --domain=project2.example.com,10.10.2.0/24 | 22:21 |
kbringard | then I delegate down from example.com's NS | 22:22 |
kbringard | plus, there could be additional utility in specifying a config file, like for instance setting --no-resolv and bogus-priv | 22:23 |
*** littleidea has joined #openstack | 22:25 | |
*** kbringard has quit IRC | 22:28 | |
*** kbringard has joined #openstack | 22:29 | |
kbringard | anyway, I need to jam... I'll look into adding an option to nova-network to specify a dnsmasq config file | 22:30 |
kbringard | thanks guys, have a fab evening | 22:31 |
*** kbringard has quit IRC | 22:31 | |
*** hub_cap has quit IRC | 22:31 | |
uvirtbot | New bug: #730960 in nova "mangled instance creation in virt drivers due to improper merge conflict resolution" [Undecided,New] https://launchpad.net/bugs/730960 | 22:32 |
*** adjohn has joined #openstack | 22:36 | |
*** dendro-afk is now known as dendrobates | 22:36 | |
*** wedjat has left #openstack | 22:37 | |
*** jaypipes-afk is now known as jaypipes | 22:40 | |
jaypipes | soren, mtaylor: could one of you install Swift on the Hudson box. Glance now has Swift as a dependency... | 22:40 |
mtaylor | creiht: ^^^^ will this screw swift branches? | 22:41 |
soren | mtaylor: Would you mind? I'm trying desperately to stop working and have been failing for hours. | 22:41 |
creiht | heh | 22:41 |
mtaylor | soren: I can do it - but I'm going to be a butthole for a bit first | 22:41 |
soren | Wicked. | 22:41 |
tr3buchet | any xenserver gurus know what happens if you do a xenapi.VM.get_record() on an opaque ref for a nonexistent vm? | 22:41 |
creiht | mtaylor: not sure... depends on how it runs the tests | 22:42 |
tr3buchet | i can test it, but it takes some doing, figured i'd ask first | 22:42 |
*** adjohn has quit IRC | 22:42 | |
creiht | mtaylor: as long as the tests are run from the target branch directory, the local directories should override the main installation | 22:42 |
creiht | *should* | 22:42 |
creiht | :) | 22:42 |
soren | If not, that sounds like something that should be fixed anyway. | 22:43 |
*** grapex has quit IRC | 22:43 | |
jarrod | why would my Xen instance halt after finished /scripts/init-bottom ? | 22:43 |
*** spectorclan_ has quit IRC | 22:44 | |
jarrod | there are no errors in the logs and everything reports it is running | 22:44 |
*** rlucio has quit IRC | 22:47 | |
*** rlucio has joined #openstack | 22:48 | |
*** hadrian has joined #openstack | 22:53 | |
*** bkkrw has joined #openstack | 22:54 | |
*** z0 has quit IRC | 23:00 | |
openstackhudson | Project nova build #601: SUCCESS in 1 min 51 sec: http://hudson.openstack.org/job/nova/601/ | 23:03 |
openstackhudson | Tarmac: Addresses bugs 704985 and 705453 by: | 23:03 |
openstackhudson | 1) Adding new nova-api flag --paste_config, the value of which is used in place of the hard-coded "nova-api.conf" | 23:03 |
uvirtbot | Launchpad bug 704985 in nova "nova-api.conf hardcoded in bin/nova-api" [Wishlist,Fix committed] https://launchpad.net/bugs/704985 | 23:03 |
openstackhudson | 2) Defaulting the new --paste_config to "api-paste.ini" | 23:03 |
uvirtbot | Launchpad bug 705453 in nova "There are two nova-api.conf files" [Wishlist,Fix committed] https://launchpad.net/bugs/705453 | 23:03 |
openstackhudson | Project nova build #602: SUCCESS in 1 min 51 sec: http://hudson.openstack.org/job/nova/602/ | 23:08 |
openstackhudson | Tarmac: Inhibit inclusion of stack traces in the logs UNLESS --verbose has been specified. This should help keep the logs compact, helping admins find the messages they're interested in (e.g., "Can't connect to MySQL server on '127.0.0.1' (111)") without having to sort through the stack traces, while still allowing developers to see those traces at will. | 23:08 |
soren | :( | 23:09 |
*** cascone has joined #openstack | 23:10 | |
*** allsystemsarego has quit IRC | 23:12 | |
*** kang__ has quit IRC | 23:14 | |
*** MarkAtwood has quit IRC | 23:18 | |
Code_Bleu | can i have fixed and floating ips in the same project? | 23:21 |
jarrod | yes | 23:21 |
Code_Bleu | why are they called floating? | 23:21 |
Code_Bleu | do i add the floating_ip flag to the nova.conf file, then do a nova-manage network create with the same network range? my OpenStack host is 10.0.0.18 and it currently has fixed_ips for the instances of 10.3.3.X. When i do the floating_ip, I just use my 10.0.0.0 network? | 23:26 |
*** ctennis has joined #openstack | 23:26 | |
*** ctennis has joined #openstack | 23:26 | |
*** bcwaldon has joined #openstack | 23:29 | |
jarrod | because you can allocate and assign them to instances | 23:31 |
jarrod | i use the floating ips for my public | 23:31 |
jarrod | and the fixed for the actual instance assignmnt | 23:31 |
Code_Bleu | floating for public..got that....fixed for instance assignment?? | 23:32 |
jarrod | yea so when i create the instance | 23:33 |
jarrod | it gets assigned out of the fixed network | 23:33 |
Code_Bleu | can i specify the range without using CIDR? ie 10.0.0.100 - 10.0.0.150? | 23:33 |
jaypipes | mtaylor: are you done being a butthole? | 23:33 |
jarrod | oh i dunno | 23:34 |
Code_Bleu | jarrod: so when / how do you assign the floating then? | 23:34 |
jarrod | i always use cidr | 23:34 |
jarrod | after the instance is created | 23:34 |
jarrod | euca-allocate-address and euca-assign-address | 23:34 |
jarrod | or whatever | 23:34 |
jarrod | im sure there is an appropriate nova tools cmd | 23:34 |
Code_Bleu | so if i use the whole C class for floating, it shouldnt matter that im already using ips .1 - whatever...I just dont assign those to instances? correct? | 23:35 |
*** littleidea has quit IRC | 23:35 | |
jarrod | hmm | 23:36 |
jarrod | it allocates it for me | 23:36 |
jarrod | i dunno | 23:36 |
jarrod | i never included the entire subnet | 23:36 |
Code_Bleu | jarrod: that would be my problem. If i CIDR, and it assigns 10.0.0.2 for example..and im currently using that on my network..then that is a problem. So thats why i was wondering if i could specify a range that im not using | 23:37 |
Code_Bleu | anyone know how i can get the floating ips to work without CIDR and specifying which addresses to use? | 23:43 |
* Code_Bleu is thinking that he could specify the CIDR range, then go into the DB and remove the addresses he doesnt want | 23:44 | |
*** mray has quit IRC | 23:44 | |
*** MarkAtwood has joined #openstack | 23:45 | |
*** taihen_ has quit IRC | 23:46 | |
*** MarkAtwood has quit IRC | 23:48 | |
*** MarkAtwood has joined #openstack | 23:49 | |
*** pvo has joined #openstack | 23:52 | |
*** bkkrw has quit IRC | 23:52 | |
*** azneita has joined #openstack | 23:52 | |
*** azneita has joined #openstack | 23:52 | |
*** oldbam has joined #openstack | 23:55 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!