Friday, 2011-11-25

*** TheOsprey has quit IRC00:00
*** lzyeval has joined #openstack00:02
*** rnorwood has joined #openstack00:10
*** JStoker has quit IRC00:11
*** JStoker has joined #openstack00:14
*** JStoker has quit IRC00:21
Kiallvyatta00:26
*** JStoker has joined #openstack00:27
*** n8 has joined #openstack00:32
*** n8 is now known as Guest3839400:32
*** pradeep has joined #openstack00:32
*** ahasenack has quit IRC00:33
*** matiu2 has joined #openstack00:36
*** rnorwood has quit IRC00:38
*** blur has joined #openstack00:41
*** JesperA has quit IRC00:44
*** troya has joined #openstack00:44
*** Guest38394 has quit IRC00:51
*** RicardoSSP has joined #openstack01:01
*** RicardoSSP has joined #openstack01:01
colikiall: have you seen my comment about your ec2_dmz_host in nova.conf from your scripts ?01:02
Kiallnope must have been lost in the netsplits!01:03
coliyou should set ec2_dmz_host to ip of a compute host and not to a ip of a controller, otherwise instance when contacting nova-api on the controler is not going to get the metadata (when compute and controler on different host)01:04
coliyou have nova-api on your computes but they are not used by instanaces01:04
Kiallthat doesnt sound right, since there could be 1000's of compute hosts?01:04
coliand each compute host has nova-api which directly talks to mysql01:05
colijust to show you what is happening:01:05
*** miclorb_ has quit IRC01:05
coli1) instance when starting tries to contact 169.254.169.25401:06
coli2) PREROUTING is DNAT'ing that request to controler ip and port 877301:06
coli3) routing takes place to go out of eth0 to controler host01:06
coli4) as this is remote host POSTROUTING takes place which is SNAT'ing the source to ip of compute host01:07
coli5) nova-api receives the request, and is looking up metadata for an instance based on the source ip address (which is not that of an instance but of an compute host) and doesn't find any01:08
*** blur has quit IRC01:08
coliif you set ec2_dmz_host to compues ip, then it contacts local nova-api and as it's local interface then no POSTROUTING takes place and source address is not nat'ed01:09
coliufff...01:09
*** woleium has quit IRC01:09
KiallAh yea.. I've actually got that in my 2nd+ node's nova.conf already .. Looks like its missing from the scripts!01:10
*** RicardoSSP has quit IRC01:11
colioverall your scripts are very nice and helped us a lot in undrestanding what is happening. thank you.01:11
Kiallno problem :)01:12
KiallBTW - In your searching, you didnt find a way to avoid nova-api on each compute node did you? ;)01:12
* Kiall keeps typing into the wrong keyboard01:13
*** n8 has joined #openstack01:13
Kiall(have a second PC at my desk for a few mins)01:13
*** n8 is now known as Guest5175701:14
colino in your solution, as you are using eth0 (public interface) to communicate with the controller, what causes all communication to be snat'ed01:14
KiallHumm, I wasnt aware any of the nova rules we're tied to a specific interface01:15
coliif you had separate network just to communicate with conroler then you can do it using dmz_cidr parameter, what would cause to accept the packet before it's snated and controler is going to know where to send reply to the privae ip address of the instance01:15
coli"tied to specific interface" ? I didn't get that01:16
Kiallas in, none of the iptables rules have "-i <some interface>"01:16
colihowever wormman is running nova-api on each compute host as well as he has discovered performance issues when using just one nova-api01:17
colikiall: none of them have -i and we are not tied01:17
KiallWormMan: noticed the issue with launching 200 instances at the same time :)01:17
Kialls/://01:17
colikiall we hope to get there... don't we ? ;-)01:18
KiallJust digging through the  code, and yea.. I'm setting dmz_cidr way off01:19
colilet me thnik.01:19
colino ideas right now how to do it otherwise in your setup01:20
cloudgeekgoing for exam01:21
coliin my opinnion the main architectural/desing flaw is that nova-api searches for metadata based on source ip address. or there is something what i'm missing01:21
cloudgeekstudy whole night bye openstack01:21
Kiallyea, eth1 should get an IP in some dmz_cidr, and that IP should be used in the ec2_dmz_host setting .. (Right now, I force my eth1's up without an IP)01:21
colicloudgeek goodluck01:21
Kiallgood luck01:21
cloudgeekcoli:Kiall:thanks01:21
colikiall you don't need that, as nova-api listens on all interfaces you can set ec2_dmz_host to public ip of the compute host01:22
*** livemoon has joined #openstack01:23
Kiallsure, and set dmz_cidr to the controllers public subnet, but my floating IPs are in the same subnet.. so setting dmz_cidr to the public subnet will end badly01:23
coliyou don't need to set dmz_cidr in my opinnion as the ec2_dmz_host is local so no POSTROUTING is happening and no source address rewriting (snat)01:24
coliall calls are going to be to local nova-api which in trun will talk to mysql directly01:24
KiallAh, I'm talking about when using 1 nova-api instance (or, dedicated nova-api servers) rather than co-locating it on every compute node01:24
colithen you need to do it01:25
colibut remember that packets going to controler will have source address of an instance (its fixed ip) so your controler needs to know how to route those01:25
Kiall1 nova-api per nova-compute is not really necessary IMO, even for larger deployments.. The added connections overhead to MySQL would be a PITA vs a pool of nova-api servers...01:26
coliyour setup is not designed for large deplyments as it can only support up to approx 4080 tenants01:26
coliyou are using vlan network mode01:26
KiallYea - thats a hard limit alright ;)01:27
colii'm just working out how to use flatDHCP instead in order to get rid of vlan's and have one large network on the fixed_ip side.01:27
*** pradeep has quit IRC01:28
Kiallcoli: feel free to send a pull request with any changes to the scripts, I'll try and merge them in as an option... People keep asking about flat DHCP ;)01:28
coliI have no idea what a pull request is :-) it's my first time I'm using git :-(01:29
KiallGithub has good git guides ;)01:29
coliwhen I get somewhere reasonably working I will let you know and send you my findings :-)01:29
KiallAnyway - I've like another 200 firewall rules to check before heading home :(01:29
coliget focused then01:30
troyahi all01:30
colihi01:31
troyacoli, do you have more experience use Flatdhcp ?01:33
colitroya: not yet, just starting01:33
troyai have some problem with my instances now, i cannot ping and accessing ssh into.whereas i have configure security rule to allowing ssh and icmp01:35
colidid you configure the policies through dashboard ?01:36
*** woleium has joined #openstack01:36
colidid you assign floating ip to the instance ?01:36
Kiallset interface openvpn vtun3 mode site-to-site01:36
Kialldooh01:36
troyai don't install dashboard01:38
coliok01:38
colidid you have a look at iptables and its counters ?01:38
troyaand i haven't configure float ip to isntances01:38
troyai think i haven't configure any rules on ip tables01:39
*** winston-d has joined #openstack01:41
troyaany aide ?01:41
colitroya: nova-network does the configuring of iptables for you01:43
colicheck if it did its job properly01:44
troyathis is nova-network.log , it's like normal01:47
*** krow has quit IRC01:50
*** livemoon has left #openstack01:50
*** rnorwood has joined #openstack01:51
*** debo-os has joined #openstack01:56
troyathis is pastebin of nova-compute.log >> http://pastebin.com/YHzwSwTW01:58
*** crescendo has joined #openstack02:02
*** crescendo has joined #openstack02:02
*** lzyeval_ has joined #openstack02:04
*** lzyeval has quit IRC02:04
*** rnorwood has joined #openstack02:09
troyaKiall, can you explains me, if i install nova without create volume ?02:09
*** osier has joined #openstack02:10
*** songyan has joined #openstack02:11
*** rustam has quit IRC02:13
*** songyan has quit IRC02:14
*** _diana_1 has left #openstack02:21
*** lzyeval_ has quit IRC02:30
*** lzyeval has joined #openstack02:30
*** shang has quit IRC02:30
*** dolphm has joined #openstack02:32
*** dolphm has quit IRC02:37
*** MarkAtwood has quit IRC02:43
*** MarkAtwood has joined #openstack02:44
*** MarkAtwood has left #openstack02:44
*** MarkAtwood has joined #openstack02:45
*** MarkAtwood has left #openstack02:46
*** rods has quit IRC02:47
*** shang has joined #openstack02:48
*** CaptTofu has joined #openstack02:52
*** debo-os has quit IRC02:53
*** songyan has joined #openstack03:00
*** deshantm_laptop has joined #openstack03:02
*** lzyeval has quit IRC03:11
*** lzyeval has joined #openstack03:11
*** rnorwood has quit IRC03:16
*** pradeep1 has joined #openstack03:20
*** cloudgeek has quit IRC03:24
*** hadrian has quit IRC03:24
*** rnorwood has joined #openstack03:36
*** miclorb_ has joined #openstack03:37
*** CaptTofu has quit IRC03:42
lzyevalI've just finished reading most of the important code of nova.03:44
lzyevalAnybody interested in talking about it, email me.03:44
lzyevallzyeval gmail03:44
*** koolhead17 has quit IRC03:53
*** sdake has quit IRC03:53
*** map_nw_ has joined #openstack03:55
*** rnorwood has quit IRC03:57
*** map_nw has quit IRC03:58
*** deshantm_laptop_ has joined #openstack04:02
*** rnorwood has joined #openstack04:02
*** deshantm_laptop has quit IRC04:05
*** sdake has joined #openstack04:05
*** gohko_air has quit IRC04:13
*** deshantm_laptop_ has quit IRC04:21
*** deshantm_laptop has joined #openstack04:21
*** Arminder has quit IRC04:35
*** Arminder has joined #openstack04:36
*** supriya has joined #openstack04:44
*** rsampaio has quit IRC04:48
*** wariola has quit IRC04:57
*** dotdevops has joined #openstack05:02
*** rnorwood has quit IRC05:08
*** wariola has joined #openstack05:16
*** dysinger has joined #openstack05:18
*** wariola has quit IRC05:19
*** wariola has joined #openstack05:20
*** dysinger has quit IRC05:20
*** dysinger has joined #openstack05:20
*** Guest51757 has quit IRC05:21
*** n8 has joined #openstack05:22
*** n8 is now known as Guest3532205:22
*** dysinger1 has joined #openstack05:24
*** mjfork has quit IRC05:25
*** wariola has quit IRC05:25
*** dysinger has quit IRC05:27
*** dysinger1 has quit IRC05:31
*** pradeep1 has quit IRC05:32
*** dysinger has joined #openstack05:33
*** wariola has joined #openstack05:38
*** Guest35322 has quit IRC05:40
*** shaon has joined #openstack05:46
*** dysinger has quit IRC05:50
*** localhost has quit IRC06:00
*** localhost has joined #openstack06:01
*** vernhart has joined #openstack06:18
*** lzyeval has quit IRC06:18
*** arBmind has joined #openstack06:28
*** MarkAtwood has joined #openstack06:32
*** pradeep has joined #openstack06:34
*** dnjaramba has quit IRC06:38
HugoKuo_ is there have API for checking the security_group of an instance?06:42
*** redconnection has quit IRC06:45
*** shaon has quit IRC06:46
*** koolhead17 has joined #openstack06:49
*** redconnection has joined #openstack06:50
*** miclorb_ has quit IRC06:53
*** sdake has quit IRC06:53
*** debo-os has joined #openstack06:54
*** wariola has quit IRC06:56
*** tjikkun has quit IRC06:57
*** tjikkun has joined #openstack06:58
*** redconnection has quit IRC06:59
*** kaigan_ has joined #openstack06:59
*** mindpixel has joined #openstack07:00
*** redconnection has joined #openstack07:02
*** tjikkun has quit IRC07:03
*** TheOsprey has joined #openstack07:05
*** tjikkun has joined #openstack07:05
*** redconnection has quit IRC07:07
*** wariola has joined #openstack07:09
*** nerens has joined #openstack07:10
*** janpy has quit IRC07:15
*** negronjl has quit IRC07:19
*** livemoon has joined #openstack07:23
*** guigui has joined #openstack07:26
*** negronjl has joined #openstack07:32
*** yamahata_ has quit IRC07:33
*** tsuzuki_ has joined #openstack07:34
*** janpy has joined #openstack07:34
*** deshantm_laptop has quit IRC07:36
*** ritesh has joined #openstack07:37
riteshmy nova.compute gives error:-Unable to load the virtualization driver: No module named XenAPI07:38
ritesheven i had defined --connection_type=xenapi --xenapi_connection_url=http://169.144.104.73 --xenapi_connection_username=root --xenapi_connection_password=red32hat07:39
*** redconnection has joined #openstack07:39
*** yamahata has joined #openstack07:41
*** debo-os has quit IRC07:43
*** thickskin has joined #openstack07:45
thickskinis there someone?07:46
*** pradeep has quit IRC07:53
*** pradeep has joined #openstack07:53
*** pradeep has quit IRC07:56
*** pradeep has joined #openstack07:56
*** wariola has quit IRC08:00
*** cw has quit IRC08:01
*** debo-os has joined #openstack08:02
*** pradeep has quit IRC08:02
*** cw has joined #openstack08:06
*** arBmind has quit IRC08:08
*** shang has quit IRC08:12
*** nati2_ has joined #openstack08:16
*** reidrac has joined #openstack08:16
*** nati2 has quit IRC08:18
*** dobber has joined #openstack08:19
*** dev_sa has joined #openstack08:19
*** Vek has quit IRC08:22
*** nerens has quit IRC08:25
*** shang has joined #openstack08:31
*** Russell has joined #openstack08:31
*** Russell is now known as Guest8808:32
zykes-notmyname: around ?08:36
*** vdo has joined #openstack08:37
*** woleium has quit IRC08:38
*** livemoon has left #openstack08:42
zykes-doh, probably not around for another few hours ;p08:47
*** miclorb_ has joined #openstack08:56
*** oonersch has joined #openstack08:56
zykes- anyone here got clues on replication on swift?08:57
reidracwhat kind of clues? :)08:58
*** uksysadmin has joined #openstack08:59
*** koolhead17 has quit IRC09:02
*** janpy has quit IRC09:02
*** dirkx has joined #openstack09:03
*** thickskin has left #openstack09:03
*** guigui has quit IRC09:05
*** javiF has joined #openstack09:09
*** tudor has joined #openstack09:11
zykes-reidrac: we're wanting to do09:15
zykes-2 nodes pr location09:15
zykes-with 4 zones09:15
zykes-does that sound reasonable ?09:15
reidrac2 nodes per location?09:15
zykes-2 servers09:15
zykes-for replication09:16
zykes-2 in each DC09:16
zykes-bad idea or ?09:16
reidracare you building a cluster split in several DC?09:16
reidracif you have a very good link between them, it shouldn't be a problem09:16
zykes-do you need 4 nodes in a seperate cluster ?09:16
*** mu574n9 has quit IRC09:17
reidracthe zone is supposed to be the biggest point of failure you're going to deal with09:17
zykes-so you can have like 2 zones in one dc and 2 in another ?09:18
reidracie. a zone can be a server, each server with different power bar in a different rack09:18
reidracif you do that, and you lose 1 dc, you're out with 2 zones missing09:18
zykes-so basically screwed ?09:18
reidracthe zones are used for replication09:19
zykes-yeah09:19
zykes-but like09:19
reidracyou're guaranteed to have data replicated into different zones09:19
zykes-we have 1 "data" room here in the office building and also a colocation datacenter09:19
zykes-we are looking at having 2 servers (2 zones) pr location09:19
zykes-would that be doable ?09:20
reidracas long as you have good connection between locations (bandwidth is vital!), yep09:20
zykes-what happens if i loose the connection in between then for say 3-5 hours ?09:20
reidracyou loose 2 zones in the cluster09:20
zykes-but is the "replicas" still fine ?09:21
zykes-or will i suffer from data loss09:21
reidracif you're using 4 zones with 3 replicas and lose 2 zones, you can't operate09:21
zykes-:/09:21
zykes-so no swift for uss then09:21
reidracI wouldn't split the zones in different DCs at first09:22
tudoranybody have experience setting up live migration? i set it up as per documentation and get a "TRACE: AMQPConnectionException: (503, u"COMMAND_INVALID - second 'channel.open' seen", (20, 10), 'Channel.open')09:22
reidracit's an expensive design choice and there's not big benefit IMHO09:22
*** wi3dzma has joined #openstack09:23
zykes-reidrac: wouldn't you need that for off site distasters ?09:23
reidracI think that if you lose a DC, something that SHOULD be very unlikely, it's fine your storage is unavailable ;)09:23
reidraczone = server it's usually a good idea, because hw can fail, and losing  1 server it's not impossible09:24
reidracbut using different DCs as zones, that's a completely different level :D09:25
zykes-reidrac: that's one thing, but what about having other copies of the data ?09:25
zykes-i mean off site from the datacenter09:25
reidracyou can have backups offsite09:25
zykes-using swift or ?09:26
reidracas a recovery plan09:26
*** nacx has joined #openstack09:26
reidracnot using swift09:26
zykes-that's kind of the deal, we're only within 8 km from the DC09:26
zykes-so it's simple enough except from bw to replicate over the link09:26
reidracwhat are we talking about?09:26
reidracwhat kind of disaster?09:27
zykes-reidrac: say a fire within the dc ?09:27
zykes-has happened before :)09:27
reidracfire on  the DC or it's just a matter of availability09:27
reidracah, I see09:27
reidracI would recommend looking for a different DC09:27
reidrachehe09:27
zykes-reidrac: not like that, but it's not impossible for it to happen09:27
*** matiu2 has quit IRC09:27
*** guigui has joined #openstack09:29
*** Arminder has quit IRC09:32
zykes-reidrac: can't one do cross dc replication then ?09:35
reidracyou need lots of bandwidth between the storage nodes09:36
reidraccan be done, probably not worth it09:36
*** pixelbeat has joined #openstack09:36
*** katkee has joined #openstack09:36
zykes-so then basically it's useless09:36
zykes-for what we wanted it for ;p09:36
zykes-then my idea died, so sad :p09:38
*** dysinger has joined #openstack09:38
reidracask for a second opinion, I may be wrong09:38
reidracyou know... on the internet nobody knows you're a dog ;)09:39
zykes-:p09:39
uvirtbotNew bug: #894683 in nova "nova.service does not handle attribute specific exceptions and client hangs " [Undecided,New] https://launchpad.net/bugs/89468309:41
uksysadminreidrac, I've just been reading this conversation - many people to site to site storage replication (we shift Tbs a day across the equiv of dark fiber) - what is large storage and lots of bandwidth?09:41
zykes-uksysadmin: how many zones pr location ?09:42
uksysadminDo you know of any benchmarks/recommendations on this?09:42
zykes-or so09:42
uksysadminwe're not using Swift - was wondering what the impact of Swift would be09:42
reidracuksysadmin: it's just our experience09:42
*** nati2_ has quit IRC09:42
Davieyuksysadmin: what do you use for storage?09:43
uksysadminNetApp09:43
*** nati2 has joined #openstack09:43
zykes-ah ok09:43
*** Guest88 has quit IRC09:43
uksysadminit was just out of curiosity - we've no plans to implement Swift but handy to know the design requirements and limits should we want to09:44
*** darraghb has joined #openstack09:47
*** songyan has quit IRC09:47
*** dev_sa has quit IRC09:49
*** jedi4ever has joined #openstack09:49
*** cloudgeek has joined #openstack09:53
*** dev_sa has joined #openstack09:55
*** koolhead11 has joined #openstack09:55
*** debo-os has quit IRC09:56
*** rustam has joined #openstack09:58
*** debo-os has joined #openstack09:59
*** lzyeval has joined #openstack10:01
*** debo-os_ has joined #openstack10:02
*** debo-os has quit IRC10:03
*** nati2_ has joined #openstack10:04
*** debo-os has joined #openstack10:04
*** guynaor has joined #openstack10:06
*** debo-os_ has quit IRC10:06
*** nati2 has quit IRC10:06
*** guynaor has left #openstack10:07
*** cloudgeek has left #openstack10:13
*** supriya has quit IRC10:17
*** Vek has joined #openstack10:18
*** guigui has quit IRC10:23
*** dysinger has quit IRC10:23
*** lzyeval has quit IRC10:24
*** guigui has joined #openstack10:27
*** ritesh has quit IRC10:27
*** nati2_ has quit IRC10:32
*** nati2 has joined #openstack10:33
*** PotHix has joined #openstack10:33
*** massoud has joined #openstack10:39
*** supriya has joined #openstack10:42
*** dev_sa has quit IRC10:46
*** dev_sa has joined #openstack10:46
zykes-notmyname: you around now ?10:48
*** dirkx_ has joined #openstack10:50
*** dirkx has quit IRC10:52
*** dirkx_ is now known as dirkx10:52
*** troya has quit IRC11:00
*** binbash_ has quit IRC11:01
*** mgoldmann has joined #openstack11:01
*** binbash_ has joined #openstack11:01
*** osier has quit IRC11:07
*** lzyeval has joined #openstack11:12
*** nati2_ has joined #openstack11:16
*** nati2 has quit IRC11:18
*** matiu_ has joined #openstack11:23
*** matiu_ has joined #openstack11:23
*** yshh has joined #openstack11:31
*** koolhead11 has left #openstack11:33
*** GheRivero has quit IRC11:36
*** dirkx has quit IRC11:41
*** miclorb_ has quit IRC11:42
*** GheRivero has joined #openstack11:42
*** lionel has quit IRC11:44
*** lionel has joined #openstack11:45
*** rsampaio has joined #openstack12:01
*** matiu_ has quit IRC12:01
*** lzyeval has quit IRC12:06
*** lzyeval has joined #openstack12:07
*** Arminder has joined #openstack12:12
*** javiF has quit IRC12:13
*** dirkx has joined #openstack12:15
*** lzyeval has quit IRC12:22
zykes-notmyname: ? ;p12:23
*** supriya has quit IRC12:24
*** mnabil_ has joined #openstack12:24
*** praefect_ has quit IRC12:30
*** praefect has joined #openstack12:30
*** dolphm has joined #openstack12:34
*** marcuz has joined #openstack12:38
*** dolphm has quit IRC12:38
*** rsampaio has quit IRC12:43
*** Ramonster has joined #openstack12:48
*** guigui has quit IRC12:55
*** tsuzuki_ has quit IRC12:56
uvirtbotNew bug: #894733 in openstack-ci "Jenkins periodic jobs no longer run" [Critical,Confirmed] https://launchpad.net/bugs/89473312:56
*** dysinger has joined #openstack12:57
*** mgoldmann has quit IRC12:59
*** rustam has quit IRC13:04
*** JStoker has quit IRC13:05
*** troya has joined #openstack13:06
uvirtbotNew bug: #894741 in glance "'glance index' and 'glance details' empty" [Undecided,New] https://launchpad.net/bugs/89474113:11
*** supriya has joined #openstack13:15
*** JStoker has joined #openstack13:16
*** andersem has joined #openstack13:20
andersemhi, when trying to save an object via object.load_from_filename() in python-cloudfiles I sometimes get a 400-error like this: ResponseError: 400: Bad request syntax ('\xaa\xaa\x00\x00\x014\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaaE\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa13:22
andersemoops, a little long13:23
andersemanyway, when retrying to upload the file, it usually succeeds13:23
andersemit's my own swift-install I'm uploading to13:24
andersemand it has worked perfectly for a long time13:24
andersemanyone got an idea where I could find the reason for this error?13:25
andersemthe syslog doesn't give me a lot of help, except for listing that a 400 and a 404 was sent13:26
*** foexle has joined #openstack13:26
*** mnabil_ has quit IRC13:26
foexlehiho13:26
*** mjfork has joined #openstack13:28
*** andersem has quit IRC13:39
*** omsynge has joined #openstack13:39
*** rods has joined #openstack13:40
omsyngehello everyone, I keep getting stuck on the first stage of installing an open stack deve server, nova-manage network create novanetwork 192.168.87.200/24 1 6413:41
omsyngeCommand failed, please check log for more info13:41
omsyngecould anyone give me a hand on the early stages of networking setup for open stack13:41
asksolDoes OpenStack target Python 2.4?13:42
omsynge2011-11-25 14:41:09,818 CRITICAL nova [-] --bridge is required to create a network.13:42
omsynge(nova): TRACE: Traceback (most recent call last):13:42
omsynge(nova): TRACE:   File "/usr/bin/nova-manage", line 2340, in <module>13:42
omsynge(nova): TRACE:     main()13:42
omsynge(nova): TRACE:   File "/usr/bin/nova-manage", line 2328, in main13:42
omsynge(nova): TRACE:     fn(*fn_args, **fn_kwargs)13:42
omsynge(nova): TRACE:   File "/usr/bin/nova-manage", line 768, in create13:42
omsynge(nova): TRACE:     raise exception.NetworkNotCreated(req='--bridge')13:42
omsynge(nova): TRACE: NetworkNotCreated: --bridge is required to create a network.13:42
omsyngeroot@sky403:~# python13:42
omsyngePython 2.7.2+ (default, Oct  4 2011, 20:06:09)13:42
*** supriya has quit IRC13:42
omsyngeroot@sky403:~# lsb_release -a13:42
omsyngeNo LSB modules are available.13:42
omsyngeDistributor ID: Ubuntu13:42
omsyngeDescription:    Ubuntu precise (development branch)13:42
omsyngeRelease:        12.0413:42
omsyngeCodename:       precise13:42
omsyngeor I can be RHEL 6.013:42
omsyngewhich ever OS you like13:43
foexlecheck you nova options, if the bridge flag is set13:43
omsynge# cat /etc/nova/nova.conf13:44
omsynge--dhcpbridge_flagfile=/etc/nova/nova.conf13:44
omsynge--dhcpbridge=/usr/bin/nova-dhcpbridge13:44
omsynge--network_manager=nova.network.manager.FlatDHCPManager13:44
omsynge--flat_network_dhcp_start=192.168.87.20013:44
omsynge--public_interface=eth013:44
omsynge--logdir=/var/log/nova13:44
omsynge--state_path=/var/lib/nova13:44
omsynge--lock_path=/var/lock/nova13:44
omsynge--force_dhcp_release13:44
omsynge--use_deprecated_auth13:44
omsynge--iscsi_helper=tgtadm13:44
omsynge--verbose13:44
*** guigui1 has joined #openstack13:44
omsyngesould I add soem thign like --bridge=eth013:45
omsyngeoh tried that on the command line and it seems to work13:46
omsyngenova-manage network create novanetwork 192.168.87.200/24 1 64 --bridge=eth013:46
omsyngeseems to work13:46
omsynge(having been playing with libvirt and simple scripts for soem time I am expecting the cloud to be a networking pain in ***)13:47
*** dev_sa has left #openstack13:49
tudoranybody has experience with setting up live migration on diablo?13:56
*** GheRivero has quit IRC13:58
omsyngesorry tudor not that far, and assume you need a shared file store fro migration, if you do I think its not applicable to the size I want to scale our services too, but understand for smaller sites this may be practical13:59
omsyngeWe have a XEN based cloud doing this and netapp back ends, and performance is nto good enough on IO, so we went fibre channel and still performance is not great14:00
tudorthx omsynge, i just ran into some nfs permission problems i don't see getting arround, i was wondering if anybody did14:00
omsyngeHi Tudor, We never tried  NFS for long, but went , iSCSI -> fibrechannel14:05
omsynge(its one of nice things about working in Public Science, we are allowed to play with big hardware and to talk about things that went wrong and not hide them)14:08
coli--flat_network_dhcp_start i ddepriciated afaik14:09
omsyngeoh thanks coli14:09
omsyngeI have got further than ever before in open stack now, am begging to fight the beast, seems not as bad as early days of the  grid projects, but still not got it all running nice yet14:13
omsyngethanks14:14
notmynamezykes-: what time zone are you in?14:14
*** cloudgeek has joined #openstack14:14
cloudgeekHi all14:14
tudoromsynge: so you got live migration to work with nfs on diablo release? what about iscsi, what distribuited file system did you use?14:21
*** mcclurmc has quit IRC14:22
*** mcclurmc has joined #openstack14:23
cloudgeeklooking for a student project in cloud computing (openstack+hadoop)is there any ?14:24
Glaceeyou mean runnning hadoop clusters in a nova setup?14:26
*** rsampaio has joined #openstack14:31
omsyngesorry tudor no we got live migration working with the citrix xen system working14:33
omsyngeThis said, I dont think NFS is a very scalable solution to back end VM storage until NFS 4.1 is standard and only then it may change14:35
*** deshantm_laptop has joined #openstack14:35
*** dolphm has joined #openstack14:35
*** hggdh has quit IRC14:38
zykes-notmyname: gmt+1 ;)14:39
*** rustam has joined #openstack14:41
*** hggdh has joined #openstack14:42
uvirtbotNew bug: #893961 in nova "nova-api does not use flags of  osapi_host " [Undecided,Invalid] https://launchpad.net/bugs/89396114:42
coliI have a network of 16 fixed_ip's assigned to tenant (project), I did create and terminate number of instances, now I have no instances running, however when creating a new one I get NoMoreFixedIps exception.14:43
colilooked into source code and even worked out which sql query checks for the fixed ips in the mysql, however cannot work out why I get this exception. any ideas ?14:43
cloudgeekGlacee:I used Hadoop ?! but not with openstack but i will try to experiment after my exams14:44
*** pradeep has joined #openstack14:44
cloudgeekcoli:project !14:44
cloudgeekwhere is vidd14:45
colicoudgeek: what do you mean ?14:45
uvirtbotNew bug: #894776 in horizon "run_test.sh does not work without virtualenv" [Undecided,New] https://launchpad.net/bugs/89477614:46
cloudgeekcoli: is project avail ?14:46
colicouldgeek: still don't undrestand your question, sorry :-)14:47
*** _rfz has joined #openstack14:47
praefectcoli: --update_dhcp_on_disassociate --force_dhcp_release --fixed_ip_diassociate_timeout14:47
praefectcoli: these and a patch of manager.py did the trick for me14:48
*** helfrez has joined #openstack14:48
cloudgeekcoli: i just asked about a project ! then you post something about project ! that is misconception my be now it's okay14:48
*** TheOsprey has quit IRC14:48
praefectcoli: do you use auto_assign ?14:48
praefectof floating14:48
colipraefect: not atm14:48
colipraefect: which patch did you use ?14:48
_rfzpraefect, how do you configure auto_assign of floating addresses?14:49
praefectcoli: I'll look it up, it is a single line to change in network/manager.py but it makes a lot a difference when you use auto assign of floating14:49
cloudgeekwhat is meaning of round shape blue point infront of some guy in IRC  like mtaylor , redbo soren !14:49
cloudgeekcan anybody tell about what does that mean are they primes in irc !14:49
praefect--auto_assign_floating_ip=true but if you don't patch manager.py your floating will never release, with the patch it's flawless!14:49
coliprafect: my problem is with fixed_ips at the moment14:50
_rfzpraefect, where can I get the patch?14:50
colipraefect: but if you can find the one line patch I will be grateful14:50
praefectcoli: I'm looking for it, wait a sec I'll just do a diff it'll pop right back14:51
_rfzcoli, what problem you having with fixed_ip?14:51
coli_rfz: I have a network of 16 fixed_ip's assigned to tenant (project), I did create and terminate number of instances, now I have no instances running, however when creating a new one I get NoMoreFixedIps exception.14:51
_rfzhave you got --force_dhcp_release=True on all your nova.conf?14:53
_rfzcoli, are you using kiall's repo?14:54
praefectcoli: https://review.openstack.org/#patch,sidebyside,1328,3,nova/network/manager.py this is what I changed, I'm using rpm packages for nova so our code may be different, for example of the 2 changes listed in this URL, one was already in place in my code, not the other.. I applied this and auto_assign works flawlessly14:55
coli_rfz: it's not a repo, but started with his scripts.14:55
*** sdake has joined #openstack14:55
_rfzso how did you install nova-compute?14:55
coli_rfz: corrected his ec2_dmz_host setting as well14:56
coli./nova-compute.sh14:56
praefect_rfz: since I'm on centos, I don't have access to the dhcp_relase binary which you guys get access to in ubuntu, hence I just generate errors currently when trying to force dhcp release of fixed ip, but to answer your question, this error only appears on my network node so you just need this switch on your controller(network) I guess14:56
coliand that is all14:56
coliremember to change ec2_dmz_host to a public ip of your compute host14:56
praefectall works well without dhcp_release, the force-dhcp-release is just a way to speed things up, upon termination the fixed ip will be release automatically14:57
praefectif not there is a timeout and the fixed ip will be cleaned eventually14:57
_rfzpraefect, what guide did you use to install openstack  on centos?14:57
colipraefect: do you have nova-network on a controler or on computes ?14:57
_rfzyou need them on both14:57
praefect_rfz: ALL OF THEM! there is not much but start with the official one (search RHEL on openstack.org)14:58
_rfzpraefect, hehe14:58
praefectcoli: I have nova-network only on my controller, (I'm not using multi_host)14:58
troyahi all14:59
coliok14:59
praefectcoli: I think you need 2 NICs on all compute nodes if you want them to be network controllers (and use floating ips)14:59
praefectwhich I don't14:59
colipraefect: I have three hosts are present, one controler and two computes. each has two nics15:00
praefectI channel everything to my controller (running nova-network) and traffix goes out through its public NIC (floating IP)15:00
colianybody attending DCD next week ?15:00
praefectcoli: then in this setup you could run multi_host=T (when creating your network) this will spawn a nova-network on all nodes and route traffic individually, the goal is that with this setup, if you loose the controller, spawned instances will still have access to the network (internet)15:01
colipraefect: that is how I got it setup right now.15:01
praefectwhile in my case, if I loose the controller, even if the instances are up they are effectively cut off from the network15:01
*** CaptTofu has joined #openstack15:02
andyandy_do you know if I can have more then one nova-volume ? thanks.15:03
praefectcoli: I have 2 clouds here, one with 2 powerful servers (24 cores each), and one cloud with desktops (8 cores xeon)... I'm going to play with zones and scheduling today)... but anyway, my setup is really nice now, no more IP management problems, not more lock file problems (only affecting centOS)15:03
praefectit is not easy to have this working on CentOS, griddynamics did a terrific job and their repo is now better than ever15:03
praefectso it officialy works on centos with minimum hassle15:04
praefectcurrently15:05
*** catintheroof has joined #openstack15:05
Kiall"<_rfz> -you need them on both" actually, you dont need both nova-network and nova-compute on every node.. it just makes sense to!15:10
_rfzKiall, what do you mean by making sense? :)15:12
*** andrewbogott has joined #openstack15:13
_rfzpraefect, I added --auto_assign_floating_ip=True to nova.conf and it's not assigning floating point Ip's automatically15:13
Kiallwhy have a single point of failure? combined with the overhead of "proxying" all traffic via a central nova-network15:13
*** supriya has joined #openstack15:13
_rfzOkay, so i did undertand it15:13
*** daMaestro has joined #openstack15:13
Kiall_rfz: if you're using my packages.. it should! I fixed that bug a while back15:13
_rfzthanks15:13
*** hadrian has joined #openstack15:14
daMaestroWhat do I need to do to diagnose why I'm getting a 401 from object servers when doing a PUT but not a GET?15:14
daMaestroI'm attempting to make a PUT be authorized by a signed URL via the swift3 interface.15:15
Kiallsorry daMaestro, not a swift user :)15:15
*** cp16net has joined #openstack15:15
_rfzKIall, it's working now15:16
Kiall_rfz: did you restart both network and compute after making the nova.conf change?15:16
*** cp16net has quit IRC15:16
_rfzI thought i did, but obviosly I didn't :)15:16
_rfzit's working now15:16
*** cp16net has joined #openstack15:16
_rfzKiall, BTW that bios error with libvirt went away on its own15:17
Kiallon its own?? That doesnt make sense!15:17
KiallAnd is slightly worrying, since I cant remember how I fixed it either ;)15:17
_rfzHahaha yes15:18
*** PeteDaGuru has joined #openstack15:18
*** daMaestro has quit IRC15:26
andrewbogottI switched my nova install from diablo to master, and now nova-api won't start up because of python dependency problems (at the moment, 'No module named metadatarequesthandler').  Can anyone suggest what packages I might need?15:27
andrewbogottOr is there documentation someplace listing dependencies for master rather than just diablo?15:27
*** javiF has joined #openstack15:30
*** rnirmal has joined #openstack15:34
*** JStoker has quit IRC15:36
*** JStoker has joined #openstack15:42
sorencloudgeek: It means we have the "voice" bit set. In an open channel, this doesn't have any technical meeting, but in this channel (and many others), it's used to denote people who are somehow core to the project.15:43
*** marrusl has quit IRC15:44
Ramonster:wq15:48
Ramonsteroops, wrong window sorry15:48
*** cmasseraf has joined #openstack15:51
*** deshantm_laptop has quit IRC15:52
*** dolphm has quit IRC15:54
uvirtbotNew bug: #843069 in keystone "Tests failing on memcache backend (memcache testing disabled in trunk)" [High,Confirmed] https://launchpad.net/bugs/84306915:56
uvirtbotNew bug: #894807 in nova "nova-manage vm list output is not consistent with nova cli - changes _ to - in name !" [Undecided,New] https://launchpad.net/bugs/89480715:56
*** kaigan_ has quit IRC16:00
*** mindpixel has quit IRC16:00
uvirtbotNew bug: #894808 in nova "nova keypair-delete cannot cope with keypairs with complex names" [Undecided,New] https://launchpad.net/bugs/89480816:01
*** dolphm has joined #openstack16:04
*** reidrac has left #openstack16:04
*** cereal_bars has joined #openstack16:04
*** uksysadmin has quit IRC16:04
*** troya has quit IRC16:06
*** wi3dzma has quit IRC16:08
*** freeflyi1g has joined #openstack16:11
*** freeflying has quit IRC16:14
*** guigui1 has quit IRC16:17
*** katkee has quit IRC16:20
*** dirkx has quit IRC16:23
_rfzKiall, have you done run stress tests on your openstack environment?16:23
KiallNothing major .. noticing any issues?16:25
KiallWormMan is probably the guy to talk to re stress testing ;)16:26
KiallI know he's done a fair bit of tuning...16:26
_rfzI've started to run some tests now (creating 100vms) so far it's running okay16:27
_rfzbut the dashboard is real sloow16:27
Kiallmy default apache config is.. lacking..16:27
KiallBut, I believe thats an issue with the diablo dash anyway..16:28
Kiallthe essex dashboard seems faster to kme16:28
Kiallme*16:28
Kiall(I've got the essex dash packaged up @ http://launchpad.net/~managedit/+archive/openstack-testing)16:28
KiallIts (mostly) compatible..16:28
Kialland by mostly, I reckon they are just bugs in the essex dash16:28
andrewbogottHm... is anyone about who can advise me about using devstack with the nova master branch?  Or is anyone about who knows about devstack, at all?16:32
*** yshh has quit IRC16:33
*** rnorwood has joined #openstack16:33
*** cloudgeek has quit IRC16:34
*** nerens has joined #openstack16:37
*** dobber has quit IRC16:40
*** supriya has quit IRC16:41
_rfzKiall, only 30 machines lauched of the 100 - and for the most part nova was unresponsive16:43
*** pradeep has quit IRC16:43
*** cloudgeek has joined #openstack16:48
dubenstein«glance add» is taking too long, bursting machine load to maximum, have someone experienced an issue like that ?16:50
*** marcuz has quit IRC16:51
*** zefry has joined #openstack16:52
zefryhello16:52
coli_rfz: how did you lunch instances ?16:52
zefryI have trouble on openstack16:53
zefrycan u help me??16:53
zefryanyone16:53
zefryroot@server1-cloud:/home/localadmin/creds# euca-describe-availability-zones verbose16:54
zefryWarning: failed to parse error message from AWS: <unknown>:1:0: syntax error16:54
zefryNone: None16:54
zefryhello anyone16:54
Kiall_rfz: really? only 30? anything interesting in the logs?16:55
_rfzcoli, with a script that uses euca-run-instances16:55
_rfzkiall, not much the compute service needed to be restarted a few times16:56
Kiallno errors out of it? it just hung?16:56
Kiallzefry: usually that means your EC2 credentials are incorrect16:57
Kiallare you using keystone or not?16:57
coli_rfz: do you run nova-api on seprate host ? did you do sleep X; between starting instances ?16:57
Kiallzefry: and, how did you install nova? from ubuntu repos? devstack? something else?16:58
zefryi'm install openstack on ubuntu server 11.1016:58
_rfzcoli,  I just run nova.api on the controller host, no sleep between creating the instances16:58
Kiallzefry: and the other question re keystone?16:59
coli_rfz: remaind me how many computing hosts ?16:59
coli_rfz: remember that instances use nova-api as well when booting in order to get the metadata.17:00
zefryKiall: have a solutions??17:00
coli_rfz: did you try to spread the nova-appi onto compute hosts ?17:00
Kiallzefry..maybe.. if you can answer the questions ;)17:00
_rfzcoli, I will try installing nova-api on the compute nodes - and let you know how it goes17:01
*** nerens has quit IRC17:02
_rfzKiall, no errore just hangs17:03
Kiall_rfz: yea.. the EC2 metadata part of nova-api is being split into a new service in essex i believe.. well, not a new service.. but something you can run a nova-api for just the MD17:03
*** dolphm has quit IRC17:05
_rfzkiall, when I try install nova-api on the compute node I get this error: ImportError: No module named keystone.middleware.ec2_token17:06
colikiall: it's garbing it from the central mysql so it's still a bottleneck however nova-api middleware is working on the compute hosts. I cannot see the reason for spliting it into a special part just for metadata, however I have seen some other blueprints for essex which don't make any sens from architectural and design point of view (just for interest of some comapnies)17:06
Kiall_rfz: python-keystone is needed to17:06
Kialltoo*17:06
_rfzcheers17:06
Kiallif you use keystone, since the API paste references a keystone class for keystone auth17:07
cloudgeekbye all17:07
coli_rfz: you need python-keystone17:07
*** katkee has joined #openstack17:07
*** vdo has quit IRC17:07
*** chemikadze has quit IRC17:08
*** chemikadze has joined #openstack17:09
*** debo-os has quit IRC17:11
*** dolphm has joined #openstack17:12
*** fysa has joined #openstack17:14
*** zefry- has joined #openstack17:17
*** Ramonster has quit IRC17:21
*** woleium has joined #openstack17:21
*** _rfz has quit IRC17:21
*** negronjl has quit IRC17:23
*** omsynge has quit IRC17:23
*** katkee has quit IRC17:26
*** rnorwood has quit IRC17:26
*** rnorwood has joined #openstack17:30
*** hugokuo has joined #openstack17:34
*** koolhead17 has joined #openstack17:38
*** javiF has quit IRC17:38
*** buzzy has joined #openstack17:38
buzzyI have problems using variables in Hive. I hope someone in here knows. I use something like hive -hiveconf test=hello -f /tmp/test.sql17:39
buzzybut I cannot read the variable in the .sql file. I have tried with "set test; describe ${test}"17:39
*** shaon has joined #openstack17:41
zykes-hiveconf ?17:41
zykes-what does that have to do with openstack buzzy ?17:41
koolhead17hola zykes-17:41
zykes-ello17:41
koolhead17buzzy: yoor in wrong channel17:41
koolhead17winston-d: hells17:42
koolhead17hellos17:42
koolhead17zykes-: wassup17:42
zykes-very little17:42
zykes-we're concidering doing OS Swift @ Work17:42
zykes-which is cool news17:42
buzzythe #hadoop channel told me to ask in here :)17:43
zykes-nothing here buzzy for that17:44
zykes-;)17:44
koolhead17;-)17:44
Kialllol17:45
*** krow has joined #openstack17:46
*** buzzy has left #openstack17:47
*** oonersch has quit IRC17:50
hugokuo12345...17:50
*** magg has joined #openstack17:51
magghello17:51
* koolhead17 kicks hugokuo :P17:51
* koolhead17 wonders where did razique disappeared :P17:51
hugokuokoolhead , did not get your mail ….17:51
*** darraghb has quit IRC17:52
maggim getting a Boot failed not a bootable disk, No bootable device17:53
maggon the vnc console17:53
maggim using an oneiric image from kiall scripts17:53
Kiallmagg: I had that once, seems qemu-nbd got itself it a twist. I never found the root cause, but a reboot fixed it17:54
maggoh17:54
*** cereal_bars has quit IRC17:55
*** GheRivero has joined #openstack17:56
koolhead17hugokuo i have taken few days break from all openstack related brain storming :D17:56
shaonkoolhead17,  :P17:56
*** catintheroof has quit IRC17:57
*** rustam has quit IRC17:57
*** andrewbogott has quit IRC17:58
*** mikhail has joined #openstack18:00
*** hallyn has joined #openstack18:03
maggkiall: no luck with the oneiric image i get the boot failed.... the lucid one hangs... the tty image works fine18:05
Kialldont suppose you rebooted?18:06
koolhead17hey mtaylor18:06
mtaylorhi koolhead1718:06
colimagg: what do you mean oneiric failed ? what have failed ?18:06
maggkiall: an instance reboot or machine reboot?18:07
Kiallmachine, its the only think I could find to get it out of that state.18:08
maggcoli: i get a Boot failed not a bootable disk, No bootable device when  try to connect with vnc18:08
*** chomping has joined #openstack18:08
maggoh i did an instance reboot lol18:09
*** foexle has quit IRC18:09
KiallFrom memory, qemu-nbd --attach (or was it kpartx?) was failing, Nothing I did would let me succeed18:09
*** cereal_bars has joined #openstack18:09
*** rnorwood has quit IRC18:09
Kiall(I wasn't even able to mount the image manually without nova...)18:09
*** catintheroof has joined #openstack18:10
*** chomping has left #openstack18:10
*** jedi4ever has quit IRC18:17
*** adjohn has joined #openstack18:17
*** egant has joined #openstack18:18
maggnope that didn't do it18:22
Kiallmagg: humm those images do work, maybe its a a bad download?18:23
Kiallor a bad upload to glance, or a bad download from glance to nova18:23
magg...damn18:23
Kiall(There is basically no error checking in all that I believe)18:23
Kiallanyway, I'm off! cyas18:28
*** koolhead17 has quit IRC18:30
*** CaptTofu has quit IRC18:31
*** TheOsprey has joined #openstack18:33
*** Ryan_Lane has joined #openstack18:33
*** map_nw_ has quit IRC18:35
*** andreacloud has joined #openstack18:35
*** obino has quit IRC18:36
*** map_nw has joined #openstack18:36
maggto bale to ping the instance or connect with ssh do i need to use euca tools18:37
maggto be able**18:37
*** pasm has joined #openstack18:41
pasmandreacloud: ciao andrea18:41
maggcuz on the compute node i can't ping or connect to the instance18:41
*** andreacloud has left #openstack18:41
*** pasm has left #openstack18:42
*** koolhead17 has joined #openstack18:42
*** Ryan_Lane has quit IRC19:00
*** llang629 has joined #openstack19:01
*** cereal_bars has quit IRC19:02
*** redconnection has quit IRC19:02
*** nerens has joined #openstack19:03
*** fysa has quit IRC19:03
magg? help19:04
*** llang629 has left #openstack19:04
*** krow has quit IRC19:06
maggi have this rule on the dashboard19:11
maggtcp 22 22 0.0.0.0/019:11
maggbut i cant connect with ssh19:11
magganybody?19:11
*** arBmind has joined #openstack19:12
*** _rfz has joined #openstack19:12
*** cereal_bars has joined #openstack19:15
*** nati2_ has quit IRC19:15
maggor how do i use euca-tools with keystone19:15
*** nati2 has joined #openstack19:16
*** andrewbogott has joined #openstack19:18
*** dubenstein has quit IRC19:21
*** obino has joined #openstack19:23
*** bhall has quit IRC19:26
colimagg: check iptables on the host with that VM and see if it's got right rules, nova-network during creation of an instance is creating appropirate rules in iptables based on security groups19:28
maggkk19:29
maggcoli: http://pastebin.com/jNetJipU19:38
*** cmasseraf has quit IRC19:40
*** hallyn has quit IRC19:43
*** bengrue has joined #openstack19:46
*** shaon has quit IRC19:46
*** tjikkun has quit IRC19:56
*** bhall has joined #openstack19:59
colimagg: did you analyse these iptables rules ?19:59
maggcoli: yeah20:02
*** hugokuo has quit IRC20:02
maggon the filter table it adds a rule for tcp and udp on port 2220:02
*** pixelbeat has quit IRC20:04
*** PotHix has quit IRC20:19
maggok i got it to work20:28
*** arBmind has quit IRC20:32
*** magg has quit IRC20:41
*** mnabil has joined #openstack20:43
*** TheOsprey has quit IRC20:43
*** adjohn has quit IRC20:50
*** adjohn has joined #openstack20:50
*** adjohn has quit IRC20:50
*** Ryan_Lane has joined #openstack20:54
*** catintheroof has quit IRC20:57
Ryan_Laneugh21:02
Ryan_Lanein diablo users still need to be in both a global and a project group to be considered to be in a group?21:02
*** praefect has quit IRC21:02
*** n8 has joined #openstack21:04
*** n8 is now known as Guest1215421:04
*** chemikadze has quit IRC21:05
*** chemikadze has joined #openstack21:06
*** cereal_bars has quit IRC21:11
*** adjohn has joined #openstack21:14
*** bhall has quit IRC21:22
*** Guest12154 has quit IRC21:25
*** jaypipes has joined #openstack21:29
*** mikhail has quit IRC21:30
*** negronjl has joined #openstack21:32
*** troya has joined #openstack21:33
*** bhall has joined #openstack21:38
*** Ryan_Lane has quit IRC21:39
*** magg has joined #openstack21:41
*** mikhail has joined #openstack21:43
*** n8 has joined #openstack21:43
*** n8 is now known as Guest7879521:44
*** tjikkun has joined #openstack21:45
*** tjikkun has joined #openstack21:45
*** Ryan_Lane has joined #openstack21:45
*** dolphm has quit IRC21:47
*** magg has quit IRC21:49
*** magg has joined #openstack21:50
magghey kiall: are u sure the oneiric image is working21:50
maggthe lucid one and the tty one are though21:50
maggi mean i got it to boot21:51
maggi get a grub21:51
maggbut doesnt start21:51
maggsomething is fishy about that image21:51
maggi can smell it21:51
*** gohko_nao has quit IRC21:52
Kiallmagg, so lucid and tty boot?21:54
Kialland oneiric doesnt? or?21:54
*** gohko_nao has joined #openstack21:55
*** GheRivero has quit IRC21:55
*** hingo has quit IRC22:03
*** Ryan_Lane has quit IRC22:05
maggyeah22:07
maggoneiric does boot22:07
maggi the grub screen22:07
maggi get**22:07
maggbut doesnt start22:07
maggbrb22:07
*** dolphm has joined #openstack22:11
*** magg has quit IRC22:11
*** magg has joined #openstack22:12
maggback22:13
*** hky has joined #openstack22:13
*** Guest70665 has joined #openstack22:14
maggso kiall?22:20
*** debo-os has joined #openstack22:20
*** Ryan_Lane has joined #openstack22:22
*** rnirmal has quit IRC22:23
*** andrewbogott has quit IRC22:24
*** mattstep has joined #openstack22:24
*** bengrue has quit IRC22:25
*** Guest70665 has quit IRC22:26
*** dolphm has quit IRC22:27
*** afm has joined #openstack22:32
afmevening all.  following the openstack docs for the first time.. running 'euca-register mybucket/server.img.manifest.xml' returns UnknownError: An unknown error has occurred. Please try your request again.22:33
afmtried from scratch twice now… can't seem to get the image and or bundle registered22:33
*** cloudgeek has quit IRC22:34
*** admgre has joined #openstack22:39
afmUploaded image as images/ubuntu-11_x64.img.manifest.xml22:39
afmroot@ubuntu:~# euca-register images/ubuntu-11_x64.img.manifest.xml22:39
afmUnknownError: An unknown error has occurred. Please try your request again.22:39
*** dolphm has joined #openstack22:39
*** magg has quit IRC22:44
*** bengrue has joined #openstack22:45
*** cloudgeek has joined #openstack22:47
*** bengrue has quit IRC22:54
*** mnabil has quit IRC23:01
*** PeteDaGuru has quit IRC23:08
*** krow has joined #openstack23:09
*** matiu_ has joined #openstack23:13
*** matiu_ has joined #openstack23:13
*** mnabil has joined #openstack23:13
*** matiu_ has joined #openstack23:14
*** matiu_ has joined #openstack23:14
*** rsampaio has quit IRC23:15
*** matiu_ has joined #openstack23:15
*** matiu_ has joined #openstack23:15
*** adjohn has quit IRC23:17
*** matiu_ has quit IRC23:19
*** debo-os has quit IRC23:20
*** adjohn has joined #openstack23:21
*** adjohn has quit IRC23:21
*** mikhail has quit IRC23:22
*** arBmind has joined #openstack23:23
*** rustam has joined #openstack23:26
*** nerens has quit IRC23:31
*** nati2 has quit IRC23:31
*** nati2 has joined #openstack23:33
*** troya has joined #openstack23:34
duffmanIs it difficult to migrate from proxmox to openstack?23:46
*** Ryan_Lane has quit IRC23:49
*** ryan_fox1985 has quit IRC23:54
*** Guest78795 has quit IRC23:56
*** HugoKuo__ has joined #openstack23:57
*** magg has joined #openstack23:59
maggyo!23:59

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