Sunday, 2012-05-13

*** littleidea has quit IRC00:02
*** littleidea has joined #openstack00:04
*** scalability-junk has joined #openstack00:08
scalability-junkhey I'm trying to learn more about openstack and how the backend works. to be specific I would like to know more about how requests are handled. a request to a public ip and so on. how is the routing how do you prevent the controlling machines to be the bottleneck etc. I couldn't yet find detailed information any direction you can point me?00:10
*** hermy|away is now known as hermy00:10
*** ozstacker has joined #openstack00:10
nvezscalability-junk: you will find all the really good docs here: http://nova.openstack.org/00:11
scalability-junkanother question I was asking on the mailinglist once, was how to cope with a non controlled network. so ip addresses are bound to servers. I imagined a private openstack vpn mesh network and some sort of gateway for publicip->nonpublicip transaction, but this would mean I have introduced a routing bottleneck as the gateway would handle all incoming/outgoing traffic and would have no failover.00:11
scalability-junknvez, I take a second look.00:12
nvezscalability-junk: http://nova.openstack.org/devref/index.html#background-concepts-for-nova -- there is alot of documentation on how the backend works there00:12
* scalability-junk shame on me I didn't yet find the dev docs thanks nvez 00:12
nvezscalability-junk: NP :) once you have the architecture figured out, you might be able to answer your questions by yourself (or you might be able to pose a more precise question about a specific component)00:13
scalability-junknvez, we'll hopefully see.00:13
nvezscalability-junk: but in re your first question, the request is receied by nova-api (which is just the frontend api, and can run on more than one machine)00:14
nvezscalability-junk: after it gets the request, it inserts it into the AMQP queue and then whatever compoenent has to take care of it will take care of it00:14
*** Entonian has joined #openstack00:15
nvezscalability-junk: essentially, afaik, most of nova-api work for "heavy" lift work makes rpc calls using AMQP, any normal calls to get information, you can just load balance on a big nova-api frontend00:15
scalability-junkyeah but what about a http request to say vm1. it will go through nova network to nova compute right?00:15
nvezscalability-junk: you mean just general traffic that goes through virtual machines?  nova-network doesnt actually do the data processing, but it paves the way for it by setting up the appropriate forwarding rules, bridges and vlans00:17
scalability-junkok so the actual distribution is done via the switches (which get the vm location via the ip announcement from the nova network i assume) seems like the non controlled network is not quite useful for openstack :P00:18
nvezscalability-junk: afaik, nova-network just sets up things, doesnt actually -route- the data etc, not sure what you mean by non controlled network, an env where people can do anything?  you can use the vlan model but again you'd have to setup the vlans for each tenant in the router00:20
*** Entonian has quit IRC00:20
nvezwith Quantum, you will be able to automate that including having routers automatically setup vlans/etc00:20
scalability-junk anyway another question. swift common requests are handled by the swift-proxy. so to scale the bandwidth for upload/download I need to scale swift-proxy sort of add another swift proxy to swift.org dns entry ...00:21
scalability-junknvez, non controlled in the sense of I can only access the servers. the routers/switches etc are not controlled by me, so ip adresses are only routed to one specific server, so floating ips are sort of impossible i assume :P00:22
nvezscalability-junk: sounds like it, you can just add up more proxies that will just serve traffic, but ive never used swift personally00:22
*** fukushim_ has joined #openstack00:22
nvezscalability-junk: no, well, you can give those servers ips in a local network (ex: 10.0.0.0) and have all those servers NAT behind a main IP00:22
scalability-junknvez, ok so the actual fault tolleranz would be failover ips or dns failover... kk00:22
nvezscalability-junk: devstack does that i believe, when it sets up a dev env, it creates a 10.0.0.0 range that is nat'd over the main machine IP00:23
scalability-junknvez, ok so it's sort of like: gateway (nat) -> private network00:23
nvezyep, on your own machine, you would only be able to access that private network from the same machine but the vms will have internet access00:23
*** nigwil has quit IRC00:24
*** fukushima has quit IRC00:24
scalability-junkso the gateway is the bottleneck, which seems hard to solve... the only way would be to have all vm dns entries point to the different gateway ips and distribute the traffic that way.00:24
*** nigwil has joined #openstack00:24
scalability-junknvez, ok not quite perfect. But i stop bothering you and try to get the gist of nova and swift with all the dev docs you pointed me to.00:25
nvezscalability-junk: nova cant distribute network load for you, it provides compute power, how you distribute your network load on it, that's up to you :)00:25
*** nigwil has joined #openstack00:25
*** nigwil has quit IRC00:27
*** rmartinelli has quit IRC00:27
scalability-junknvez, yeah that it's only providing compute power is right, but I have to get the traffic to the right vms in a distributed fashion... rackspace etc is using floating ips so each datacentre has an ip pool and each vm their own ip. so the dns entries are mapped to these ips. they control the switches and floating up can be assigned to the vm it should be. In my theoretical architecture I can't assign ips in this fashion.00:28
*** littleidea has quit IRC00:28
*** nigwil has joined #openstack00:29
*** e1mer has joined #openstack00:29
*** littleidea has joined #openstack00:29
*** littleidea has quit IRC00:29
scalability-junkI would need to have ip pools per compute node and then use dns to update if the vm is rebuild on a different compute node. But I haven't found anything to support per compute node ip pooling...00:30
*** littleidea has joined #openstack00:30
* scalability-junk probably too messed up thinking still in my head to ask THE right question ;) sorry for that nvez 00:33
*** jkyle has quit IRC00:40
*** e1mer has quit IRC00:41
*** ozstacker has quit IRC00:44
*** scalability-junk has quit IRC00:45
*** scalability-junk has joined #openstack00:45
*** aliguori has quit IRC00:49
*** Guest50362 has quit IRC01:03
*** Guest50362 has joined #openstack01:04
*** Ukto has joined #openstack01:05
Uktohey guys, I am feeling kinda dumb, can someone explain to me what openstack "does"? I see it described as a 'cloud'. what type? Does it run vps nodes? Or does it just 'cluster' all resources for whatever?01:06
*** albert23 has left #openstack01:06
*** seats has quit IRC01:14
*** seats has joined #openstack01:14
*** littleidea has quit IRC01:15
*** ozstacker has joined #openstack01:20
nvezUkto: openstack nova (the compute project) is essentially a software that manages a cloud using existing virtualization and storage technologies01:25
*** andresambrois has joined #openstack01:25
nvezUkto: it will take a bunch of citrix xenserver nodes, or kvm, or any of teh supported virtualization technologies and add an entire api that allows you to provide a service like EC2 with it01:26
*** littleidea has joined #openstack01:26
Uktoahhh01:28
UktoI have a small datacenter in Dallas01:28
Uktocurrently using some xen and vmware stuff on the dell blade chassis01:28
*** vincentricci has joined #openstack01:31
*** ninkotech has quit IRC01:31
*** ninkotech has joined #openstack01:31
*** jkyle has joined #openstack01:33
*** jkyle has joined #openstack01:33
*** vincentricci has quit IRC01:35
*** Guest50362 has quit IRC01:38
*** Guest50362 has joined #openstack01:40
*** scalability-junk has quit IRC01:42
*** jkyle has quit IRC01:46
*** CristianDM has quit IRC01:50
*** jkyle has joined #openstack02:01
*** osier has joined #openstack02:03
*** _ozstacker_ has joined #openstack02:07
*** jkyle has quit IRC02:07
*** ozstacker has quit IRC02:08
*** nerd-alert has joined #openstack02:24
*** Guest50362 has quit IRC02:28
*** Guest50362 has joined #openstack02:30
*** e1mer has joined #openstack02:32
*** Gordonz has joined #openstack02:41
*** aspiers has quit IRC02:42
*** ccustine has quit IRC02:44
*** ccustine has joined #openstack02:45
*** dendro-afk is now known as dendrobates02:45
*** ninkotech has quit IRC02:49
*** ninkotech has joined #openstack02:51
*** CristianDM has joined #openstack02:59
*** littleidea has quit IRC03:01
*** littleidea has joined #openstack03:05
*** Gordonz has quit IRC03:16
*** Guest50362 has quit IRC03:22
*** Guest50362 has joined #openstack03:24
*** dwcramer has quit IRC03:27
*** edygarcia has joined #openstack03:29
*** adalbas has quit IRC03:37
*** garyk has quit IRC03:38
*** edygarcia has quit IRC03:41
*** rnorwood has quit IRC03:42
*** edygarcia has joined #openstack03:54
*** edygarcia has quit IRC03:56
*** hermy is now known as hermy|away04:07
*** e1mer has quit IRC04:10
*** krow has quit IRC04:10
*** krow has joined #openstack04:14
*** rnorwood has joined #openstack04:14
*** Guest50362 has quit IRC04:14
*** Guest50362 has joined #openstack04:16
*** garyk has joined #openstack04:26
*** rnorwood has quit IRC04:31
*** joearnold has joined #openstack04:44
*** gohko_nao has quit IRC04:47
*** leetrout has joined #openstack05:01
*** nerd-alert has left #openstack05:25
*** mikal has quit IRC05:25
*** joearnold has quit IRC05:26
*** sandywalsh has quit IRC05:29
*** mikal has joined #openstack05:33
*** ozstacker has joined #openstack05:36
*** _ozstacker_ has quit IRC05:40
*** d1t2 has quit IRC05:43
*** e1mer has joined #openstack05:49
*** hattwick has quit IRC06:01
*** e1mer has quit IRC06:08
*** issackelly has quit IRC06:11
*** Guest50362 has quit IRC06:12
*** Guest50362 has joined #openstack06:14
*** littleidea has quit IRC06:21
*** littleidea has joined #openstack06:22
*** littleidea has quit IRC06:23
*** _rfz has quit IRC06:28
*** Kiall has quit IRC06:31
*** mhzarei has joined #openstack06:32
*** Kiall has joined #openstack06:33
*** ywu has quit IRC06:33
*** openstack has joined #openstack06:42
*** cdub has quit IRC06:46
*** cdub has joined #openstack06:47
*** davepigott has joined #openstack06:49
*** rmt has joined #openstack06:54
*** leetrout has quit IRC06:55
*** mhzarei has quit IRC06:57
*** leetrout has joined #openstack06:59
*** prakasha-log has quit IRC07:00
*** prakasha-log has joined #openstack07:00
*** dnaori has joined #openstack07:02
*** oubiwann has joined #openstack07:05
*** leetrout has quit IRC07:07
*** ccustine has quit IRC07:07
*** ccustine has joined #openstack07:09
*** pnavarro has quit IRC07:14
*** Guest50362 has quit IRC07:14
*** CristianDM has quit IRC07:15
*** Guest50362 has joined #openstack07:16
*** cdub has quit IRC07:26
*** ccustine has quit IRC07:28
*** pmezard has joined #openstack07:29
*** pnavarro has joined #openstack07:33
*** ccustine has joined #openstack07:36
*** davepigott has quit IRC07:42
*** hattwick has joined #openstack07:59
*** gasbakid__ has joined #openstack08:04
*** gasbakid has quit IRC08:07
*** AffE has joined #openstack08:11
*** CristianDM has joined #openstack08:11
*** glove has joined #openstack08:11
*** yazirian has joined #openstack08:11
*** Guest10650 has joined #openstack08:11
*** hingo_ has joined #openstack08:11
*** ahale has joined #openstack08:11
*** benner has joined #openstack08:11
*** dragondm has joined #openstack08:11
*** Jbain has joined #openstack08:11
*** mattrobinson has joined #openstack08:11
*** funzo has joined #openstack08:11
*** popey has joined #openstack08:11
*** kaz_ has joined #openstack08:11
*** derrick has joined #openstack08:11
*** henderb has joined #openstack08:11
*** Billy_Way has joined #openstack08:11
*** LanceHaig has joined #openstack08:11
*** dnaori has quit IRC08:11
*** dnaori has joined #openstack08:11
*** hunglin has quit IRC08:16
*** eglynn has joined #openstack08:18
*** gasbakid__ has quit IRC08:19
*** eglynn__ has quit IRC08:21
*** krow has quit IRC08:38
*** davidha has quit IRC08:51
*** gohko_nao has joined #openstack09:05
*** rendar has joined #openstack09:07
*** Ryan_Lane has quit IRC09:14
*** davidha has joined #openstack09:25
*** PiotrSikora_ has quit IRC09:27
*** PiotrSikora has joined #openstack09:29
*** nelson_ has quit IRC09:35
*** Guest50362 has quit IRC09:36
*** Guest50362 has joined #openstack09:37
*** arBmind has joined #openstack09:51
*** MarkAtwood has quit IRC09:53
*** localhost has quit IRC09:58
*** localhost has joined #openstack10:00
*** davidha has quit IRC10:08
*** dimitrig has joined #openstack10:13
*** CaptTofu has joined #openstack10:21
*** davidha has joined #openstack10:26
*** gasbakid has joined #openstack10:30
*** aspiers has joined #openstack10:31
*** pixelbeat has joined #openstack10:46
*** Trixboxer has joined #openstack10:48
*** CaptTofu has quit IRC10:51
Darksecondcan i set the gateway ip for the (public) floating ip's?10:51
*** e1mer has joined #openstack10:54
*** albert23 has joined #openstack10:57
*** glove has quit IRC10:58
*** dachary has joined #openstack11:00
*** glove has joined #openstack11:00
*** dachary has quit IRC11:01
*** glove has quit IRC11:10
*** glove has joined #openstack11:11
*** avishay has joined #openstack11:22
*** dimitrig_ has joined #openstack11:35
*** dachary has joined #openstack11:36
avishayHi all.  Can someone please guide me on how to set up my network configuration in devstack localrc?11:37
avishayMost of the tests in exercise.sh fail for me, and I suspect that's the cause...11:38
*** e1mer has quit IRC11:39
*** dimitrig has quit IRC11:39
*** andresambrois has quit IRC11:44
avishayCan somebody please help me with devstack?  I started with a simple configuration, and only 1/11 tests in exercise.sh pass11:48
avishayI also have a lot of messages "X11 connection rejected because of wrong authentication."11:48
*** dimitrig_ has quit IRC11:54
*** chrisfer has quit IRC11:54
*** chrisfer has joined #openstack11:54
*** dimitrig_ has joined #openstack11:54
avishayEverything returns either 404 or 50011:56
*** avishay has quit IRC12:05
*** littleidea has joined #openstack12:12
*** koolhead17 has joined #openstack12:17
*** dwcramer has joined #openstack12:18
*** glove has quit IRC12:18
*** koolhead17 has quit IRC12:18
*** AffE has quit IRC12:18
zykes-http://pastebin.com/9jNcnsuV < anyone seen this before when spawning an instance ?12:21
*** dimitrig has joined #openstack12:22
*** dachary has quit IRC12:24
*** dimitrig_ has quit IRC12:25
*** dimitrig_ has joined #openstack12:29
*** davidha has quit IRC12:31
*** dimitrig has quit IRC12:32
*** MyAzhax__ is now known as MyAzhax-v612:34
*** davidha has joined #openstack12:34
*** dimitrig_ has quit IRC12:35
LarsErikPzykes-: is the image public?12:37
zykes-yes12:37
zykes-it wouldn't show in the dashboard if not :p12:38
LarsErikPahh12:39
LarsErikPconnectivity problems between nova and glance?12:39
zykes-Not sure12:39
LarsErikPsound unlikely though, since you actually got the images listed in dashboard12:39
*** dipe has joined #openstack12:46
*** dipe has quit IRC12:57
*** Guest50362 has quit IRC13:06
Darksecondcan i set the gateway ip for the (public) floating ip's?13:06
*** Guest50362 has joined #openstack13:07
*** natea has joined #openstack13:08
*** e1mer has joined #openstack13:24
*** Guest34196 has quit IRC13:24
*** kiffer84 has joined #openstack13:24
*** dachary has joined #openstack13:31
*** willaerk has joined #openstack13:32
zykes-LarsErikP: I've even tried to re-add the image13:33
LarsErikPis just that particular image, or is it every image?13:33
zykes-every13:34
LarsErikPmust be a glance problem...13:37
LarsErikPbut, hey.. i'm no expert ;-)13:37
*** DavidLevin has quit IRC13:39
*** e1mer has quit IRC13:49
*** zul has joined #openstack13:51
*** DavidLevin has joined #openstack13:52
*** Guest10650 has quit IRC13:55
*** dachary has quit IRC14:02
*** DavidLevin has quit IRC14:02
*** arBmind_ has joined #openstack14:04
*** arBmind has quit IRC14:06
*** arBmind_ is now known as arBmind14:06
*** paulmillar has quit IRC14:15
*** ywu has joined #openstack14:16
*** rnorwood has joined #openstack14:18
*** rnorwood has quit IRC14:19
*** Guest95536 has joined #openstack14:23
Guest95536hello14:23
*** Guest95536 has left #openstack14:25
*** CristianDM has quit IRC14:25
*** CristianDM has joined #openstack14:26
*** dwcramer has quit IRC14:32
*** MarkAtwood has joined #openstack14:45
*** hunglin has joined #openstack14:46
*** ryanpetrello has joined #openstack14:51
*** davidha has quit IRC14:53
*** jackh has joined #openstack15:02
*** mhzarei has joined #openstack15:16
*** littleidea has quit IRC15:19
*** RicardoSSP has joined #openstack15:22
*** RicardoSSP has joined #openstack15:22
*** pixelbeat has quit IRC15:27
*** dwcramer has joined #openstack15:28
*** jackh has quit IRC15:31
*** nsavin has joined #openstack15:35
*** dnaori has quit IRC15:37
*** davidha has joined #openstack15:38
*** ryanpetrello has quit IRC15:41
*** littleidea has joined #openstack15:44
*** pixelbeat has joined #openstack15:54
*** gohko_nao has quit IRC15:55
*** nsavin has quit IRC15:56
*** edygarcia has joined #openstack15:56
*** mb1769 has joined #openstack15:57
mb1769hi all. quick question, when running separate compute nodes, which users is user for running libvirt commands locally on the compute host ? I am getting "libvirtError: Failed to connect socket to '/var/run/libvirt/libvirt-sock': Permission denied", when running attach disk command from controller host15:59
*** edygarcia has quit IRC16:01
*** gasbakid has quit IRC16:01
*** mhzarei has quit IRC16:04
*** arBmind has quit IRC16:06
*** arBmind has joined #openstack16:06
*** ejat has joined #openstack16:13
*** jkyle has joined #openstack16:14
*** garyk has quit IRC16:14
*** bgordy has joined #openstack16:18
*** krow has joined #openstack16:23
*** belliott has joined #openstack16:23
*** Ukto has left #openstack16:24
*** mb1769 has quit IRC16:24
*** monster_ has joined #openstack16:26
*** lloydde has joined #openstack16:29
bgordyCall for white papers at Texas Linux Fest, August 3-4, http://2012.texaslinuxfest.org/16:31
*** jkyle has quit IRC16:39
*** ryanpetrello has joined #openstack16:39
*** natea has quit IRC16:40
*** belliott has quit IRC16:41
*** Vivek is now known as Guest73416:43
*** ejat has quit IRC16:48
*** Guest734 is now known as Vivek16:52
*** littleidea has quit IRC16:58
*** monster_ has quit IRC17:00
*** ryanpetr_ has joined #openstack17:00
*** pretec has joined #openstack17:00
*** ryanpetrello has quit IRC17:02
*** garyk has joined #openstack17:10
*** krow has quit IRC17:18
*** mb1769 has joined #openstack17:18
*** tmichael has quit IRC17:28
*** rods has joined #openstack17:30
*** ryanpetr_ has quit IRC17:31
*** dachary has joined #openstack17:36
*** lloydde has quit IRC17:42
*** dwcramer has quit IRC17:43
*** dwcramer has joined #openstack17:48
*** dachary has joined #openstack17:48
*** dwcramer has quit IRC17:53
*** dwcramer has joined #openstack17:53
*** dachary has quit IRC17:54
*** natea has joined #openstack17:56
*** hermy|away is now known as hermy17:57
*** pmezard has quit IRC18:00
*** bgordy has quit IRC18:06
*** dwcramer has quit IRC18:07
*** dimitrig_ has joined #openstack18:12
Darksecondcan i set the gateway ip for the (public) floating ip's?18:12
*** pmezard has joined #openstack18:13
*** dimitrig has joined #openstack18:16
*** avishay has joined #openstack18:17
avishayHi all. Can someone please help me with a basic devstack setup? Almost all the tests in excercise.sh are failing.18:18
*** dimitrig_ has quit IRC18:18
*** esm has joined #openstack18:22
*** dwcramer has joined #openstack18:22
*** esm is now known as Guest4478618:22
*** dimitrig_ has joined #openstack18:22
*** dimitrig has quit IRC18:24
zykes-dimitrig_: ping18:25
avishayCan somebody please help me get my basic devstack working? (everything running on 1 machine)18:27
*** x86brandon_ has joined #openstack18:31
*** x86brandon has quit IRC18:35
*** x86brandon_ is now known as x86brandon18:35
*** mancdaz has quit IRC18:39
*** melmoth has joined #openstack18:41
*** dimitrig_ has quit IRC18:41
*** jkyle has joined #openstack18:42
*** CaptTofu has joined #openstack18:42
*** jfluhmann has joined #openstack18:44
*** mancdaz has joined #openstack18:46
*** okiwan has joined #openstack18:46
*** dwcramer has quit IRC18:48
*** dachary has joined #openstack18:48
*** ryanpetrello has joined #openstack18:48
*** ryanpetr_ has joined #openstack18:49
*** ryanpetrello has quit IRC18:49
*** alex88 has joined #openstack18:52
*** krow has joined #openstack18:53
*** ryanpetr_ has quit IRC18:54
alex88hello guys, i've a vps running everything except nova-compute and nova-storage and nova-network, i want to setup nova-compute and storage on 2 dedicated18:56
alex88when i create a vm and i assign it a floating ip, to which of those 2 servers i should bind the ip  in the control panel of my dedicated servers if the host which the vm is running is decided by nova-schedule?18:57
*** avishay has quit IRC18:59
*** Blah1 has joined #openstack19:01
*** littleidea has joined #openstack19:02
*** melmoth has quit IRC19:03
*** davepigott has joined #openstack19:05
*** davepigott has quit IRC19:06
*** Blah1 has quit IRC19:07
*** ryanpetrello has joined #openstack19:08
*** x86brandon has quit IRC19:08
*** osier has quit IRC19:13
*** osier has joined #openstack19:13
*** clopez has joined #openstack19:18
*** ahs3 has quit IRC19:21
*** _rfz has joined #openstack19:24
*** dwcramer has joined #openstack19:25
*** Guest44786 has quit IRC19:26
*** alex88 has left #openstack19:26
*** ahs3 has joined #openstack19:27
*** FallenPegasus has joined #openstack19:30
*** MarkAtwood has quit IRC19:32
*** dwcramer has quit IRC19:36
*** monster_ has joined #openstack19:38
*** Trixboxer has quit IRC19:40
*** egant has joined #openstack19:46
*** egant has quit IRC19:49
*** egant has joined #openstack19:49
*** rmt has quit IRC19:52
*** x86brandon has joined #openstack19:52
*** hermy is now known as hermy|away19:58
*** dachary has quit IRC20:03
*** jdpond has joined #openstack20:11
*** Ryan_Lane has joined #openstack20:12
kerouaci'm truly enjoying doing everything one could possibly do wrong with flatdhcpnetworking20:13
*** x86brandon_ has joined #openstack20:13
kerouacit's making me a better person20:13
*** monster_ has quit IRC20:15
*** x86brandon has quit IRC20:16
*** x86brandon_ is now known as x86brandon20:16
*** jfluhmann has quit IRC20:20
*** dachary has joined #openstack20:21
*** mb1769 has quit IRC20:21
*** dwcramer has joined #openstack20:24
*** belliott has joined #openstack20:25
*** huff has joined #openstack20:28
*** VeryHF has joined #openstack20:29
*** GeorgeH has joined #openstack20:29
*** sdake has quit IRC20:29
*** jkyle has quit IRC20:30
jdpondkerouac: I feel your pain.  I'm running across the infamous, but apparently nowhere resolved issue with Ubuntu/Essex when trying to get Horizon up and running (the Auth screen comes up, but you get an internal error message when you enter credentials):  [error] No handlers could be found for logger "openstack_dashboard"  Any ideas?20:32
*** mb1769 has joined #openstack20:33
jdpondAll other tests up to that point indicate success.20:34
kerouachah20:34
kerouacyeah, my images spin up and i can't connect20:34
kerouacno route to host20:34
kerouaccentos 6.220:35
jdpondHmm, I haven't even tried to spin up an image yet - thought getting dashboard to work would be an easier first step.  BTW, I noticed the bridging as set up in that documentation WILL NOT work, unless you use exactly "192.168.122.1" and use virbr0 instead of br10020:37
jdpondEven then, I don't see a link between virbr0 and any particular interface you might be using (e.g., Eth0, eth1, . . .)20:37
VeryHFHello All!    I have been reading and am still not fully understanding the differences b/w the citrix xen server and the openstack xen server, adv and dis.adv, I have met continuous problems with citrix xen and am looking for another platform.  I need to run multiple OS's including, debian, ubuntu, freebsd, and M$.  Any comments appreciated, TIA20:41
jdpondkerouac: YMMV, but this might give you some ideas. http://pastebin.com/ph0t9yNc20:47
kerouacindeed, i need an interface that is up and not attached to an ip20:49
kerouaci also corrupted a database, it seems20:49
kerouacreintalling20:49
kerouacthanks for the info20:49
kerouaci'm using centos, but the config info is still relevant20:49
jdpondkerouac: I may have the same issue - going back and deleting and rebuilding all dbases from scratch (AGAIN!)20:49
jdpondparticularly concerned I may have accidently entered duplicate user/role/tenant information which one post says will generate this error.  I'm SOOO confused.20:50
zykes-is anyone running quantum here ?20:52
*** issackelly has joined #openstack20:55
jdpondkerouac: Don't know if I'm helping you here, but you may want to look at: /etc/libvirt/qemu/networks/default.xml20:59
*** Guest50362 has quit IRC21:01
nvezjdpond: have you tried devstack to just make your life easier to try?21:01
jdponddevstack?21:01
nvezhttp://devstack.org/21:01
*** nmistry has joined #openstack21:01
nvezreally cool, fast and quick way to get a openstack dev env up :)21:01
*** mb1769 has quit IRC21:02
jdpondJust found it, thanks nvez!21:03
*** Guest50362 has joined #openstack21:03
nvezjdpond: its not for deployment but if you just wanna mess around with openstack, it's an easy way to get up and ready21:03
jdpondActually need to deploy.  That's the problem.  Working through one step at a time with multi-node.  Eucalyptus was never this hard.21:04
nvezjdpond: ah I see.  what are you having troubles with right now?  I would setup things one step at a time, keystone .. then nova-api, etc, etc21:05
zykes-nvez: are you using quantum ?21:06
nvezzykes-: no but if you're having a problem you should just try asking it21:06
jdpondnvez - I'm all the way up to Horizon now - stuck there.21:06
*** mancdaz has quit IRC21:06
nvezjdpond: does it refuse to start?21:07
zykes-nvez: just wondering if someone is actually using it except people using nicira or alike21:07
kerouacyeah,21:07
kerouaceveryone21:07
kerouaceven LG and Samsung have a cloud21:07
jdpondnvez, no, starts fine, but when I enter a valid user in Keystone (in this instance, "admin" with a supersecret password), I get "Internal Server Error <br>  An unexpected error occurred while processing your request. Please try your request again." on screen and "[error] No handlers could be found for logger "openstack_dashboard" in apache log file.21:10
*** jeblair has quit IRC21:12
nvezjdpond: do you have keystone setup?21:12
kerouacawwww yeah21:12
kerouaci did it21:12
jdpondnvez, keystone works great.21:13
kerouacable to log in ot the server after i reinstelled sqlalchemy21:13
kerouacand keystone is pretty nice21:13
kerouacabout to try the dashboard21:13
*** littleidea has quit IRC21:16
nvezjdpond: try turning debug on in the dashboard settings?21:16
nvezmake sure your endpoints are setup as well21:17
*** egant has quit IRC21:19
jdpond nvez, hold on a second - keystone was working fine BEFORE I rebooted, can't reach it now - that's probably the problem.  Need to check my nova.conf21:20
*** egant has joined #openstack21:20
nvezjdpond: keystone has it's own config file too so nova.conf might not be the issue21:20
nvezsee if you can do a user-list etc21:20
nvezi need to start a coding session, add fixed ip quotas, there is floating ip quotas but not fixed bleh21:21
jdpondjust tried - that failed, but had been working for a couple of days.21:21
nvezwell you got to figure that out first ;)21:21
jdpondyep21:21
jdpondnvez, btw, keystone works great when I explicitly state token and endpoint in command line.21:23
nvezjdpond: so that means it works, you just dont have the env variables setup so it works without them21:23
jdpondWhere would I insert for Horizon?21:23
nvezthere should be a local_settings.py file21:23
nvezhttp://wiki.openstack.org/OpenStackDashboard -- under "Keystone Configuration"21:24
jdpondAhh, there are the parameters not documented in the trunk/essex/ubuntu documentation - that helps!!!21:26
*** natea has quit IRC21:27
*** adavid has quit IRC21:31
*** koolhead17 has joined #openstack21:34
*** ryanpetr_ has joined #openstack21:35
*** ryanpetrello has quit IRC21:37
*** Ruetobas has quit IRC21:45
*** FallenPegasus has left #openstack21:47
*** Ruetobas has joined #openstack21:50
VeryHFDoes anyone know when Xen stop supporting Ubuntu server?21:52
koolhead17VeryHF, ?21:53
*** egant has quit IRC21:53
VeryHFI used to just load a VM with the Ubuntu server CD from the ISO, now I see blogs about creating a special ISO just for Xen?21:54
koolhead17VeryHF, i suppose XEN comes with default 12.04 LTS kernel21:55
*** egant has joined #openstack21:56
VeryHFIt is part of the Xen distro?21:57
*** pmezard has quit IRC22:00
koolhead17VeryHF, Xen is included with 12.04 version of ubuntu distribution22:00
*** dwcramer has quit IRC22:01
VeryHFI must *really* be missing something.  I can not seem to locate the included 12.04, is it available for creating VM's?  Can it only be accessed via the CLI?22:04
*** dtroyer_zzz is now known as dtroyer22:06
*** adavid has joined #openstack22:07
*** ryanpetr_ has quit IRC22:07
VeryHFI think I need to clarify: I want to install PV or HVM machines of Ubuntu on xenplatform, openstack, or xenserver, not install Xen on Ubuntu12.04.  I am seeing blogs about how Xen is now compatible with the Ubuntu distro and an alternative ISO must be created, but not seeing any consistency between the blogs.22:10
*** dwcramer has joined #openstack22:14
uvirtbotNew bug: #998908 in nova "Fixed IP quotas" [Undecided,In progress] https://launchpad.net/bugs/99890822:16
VeryHFI am seeing blogs about how Xen is _not_ compatible with the Ubuntu distro22:17
*** egant has quit IRC22:19
*** arBmind has quit IRC22:25
*** arBmind has joined #openstack22:25
*** rendar has quit IRC22:26
*** arBmind has quit IRC22:36
*** rods has quit IRC22:36
*** dachary has quit IRC22:39
*** Entonian has joined #openstack22:45
*** arrsim has quit IRC22:48
*** arrsim has joined #openstack22:51
*** willaerk has quit IRC22:54
*** paltman has quit IRC22:56
*** ryanpetrello has joined #openstack22:57
*** paltman has joined #openstack22:57
*** ryanpetrello has quit IRC22:57
*** shredder12 has joined #openstack22:58
*** miclorb has joined #openstack22:59
shredder12hi. I've a working dual node setup - a controller & compute node. I'm having some troubles setting up the vnc. The address "nova get-vnc-console" returns is 127.0.0.1:6080. That's why horizon isn't able to connect. Shouldn't it be the IP of my controller. You can find the configuration here http://pastebin.com/Yz8i7UE323:03
shredder12I'd really appreciate some help here23:03
*** Guest50362 has quit IRC23:04
*** CristianDM has quit IRC23:05
*** CristianDM has joined #openstack23:06
*** davidha has quit IRC23:06
*** Guest50362 has joined #openstack23:06
*** Entonian has quit IRC23:11
*** okiwan has quit IRC23:16
*** esm has joined #openstack23:23
*** esm is now known as Guest6720123:23
*** albert23 has left #openstack23:34
*** RicardoSSP has quit IRC23:44
*** VeryHF has quit IRC23:45
*** huff has quit IRC23:46
*** huff has joined #openstack23:58
*** VeryHF has joined #openstack23:58

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