[00:21] New bug: #966707 in vsftpd (main) "not built with all hardening features" [Undecided,New] https://launchpad.net/bugs/966707 [00:58] roaksoax: FYI, regardin maas and rabbitmq.. we should fix MaaS to not fail if RMQ is not running yet, rather than try to coordinate w/ upstart. They won't always live on the same box, so its not really viable to believe we can control the bootup order of machines in a distributed setting. [00:59] SpamapS: +1 [01:02] this problem exists in tons of services.. but stuff we are writing *now* should not repeat that mistake. :) [01:10] boot order isn't deterministic even on a single host, when using upstart [01:20] twb: its not supposed to be. Things that can start in parallel, should. [01:22] twb: only "plumbing" should need ordering really. [01:22] just sayin [02:04] SpamapS: agreed, however, this is not really an issue of maas failing, but rather, this is an issue of not being able to successfully install maas due to rabbitmq stalling the installer, and this is just a work around that allows us to successfully install maas from the installer [02:05] SpamapS: and this is the only way Daviey and I could figure out to do so === Jasonn is now known as juicy [03:16] hey all, how do I find out under what user my apache process is running? [03:17] It's www-data unless you've messed up [03:17] you would find out by looking at ps output or pgrep and /proc [03:18] or by checking apache's config file [03:20] thanks [03:20] twb [03:20] myhrlin: well if you trust config files ;-) [03:20] Could be config was changed since apache was last started [03:21] ah, hopefully you wouldn't have any untrusted users on the machine to do that and not restart the daemon [03:21] fsvo untrusted users = idiot coworker sysadmins, but yeah [03:22] yeah I wouldn't trust them [03:23] Fucking cups and its stupid conflation of conffile and state file [03:23] http://paste.debian.net/161199/ my etckeeper logs are FULL of that crap [03:46] quick check - any dangers on giving www-data write access to a folder containing a website? [03:47] Yes [03:47] Tell your web app author to get a goddamn clue [03:47] Also probably better to discuss this on #httpd [03:52] yeah, if the httpd has write access to any directories which contain scripts or could contain scripts, invariably when the website code vulnerabilities are found they will use it to upload nasty things [03:53] Especially if you enable scripts ;-) [03:53] * twb comes from the "static HTML or GTFO" school [04:04] hmm [04:04] ty [04:04] np dragon [05:22] roaksoax: yeah that makes sense. My main point is simply that it is better solved upstream by maas itself. [05:22] roaksoax: the mistake is in the way maas did things.. you're just working around that. [05:32] New bug: #781949 in txaws "Must check certificates for validity" [High,In progress] https://launchpad.net/bugs/781949 [06:16] I changed some things on my server (none of which should have caused this) and suddenly I'm getting 403 errors from apache on ALL my host names even with the file/folder permissions set to 777. wat do? [06:21] New bug: #960713 in quantum (universe) "more debian/control issues" [Low,Fix released] https://launchpad.net/bugs/960713 [06:38] gd mrnng [07:23] hello all, [07:23] i am having problems with processes blocking for more than 120 seconds [07:24] i have a raid card, and 10 hdd's installed in jbod, each disk is an array (using it as a sata expansion card), and jfs [07:24] during rsync, after all the memory 16 (gb) fills up [07:27] the rsync will go into D state, and when i dmesg, i get the following -> http://pastebin.com/ZYqehBxa [07:35] i've googled long and hard, and have come to no conclusion, [07:35] kernel is 3.0.X [07:36] acidflash: do you have swap? [07:36] twb: yes [07:36] It's probably swap thrashing if memory is full [07:37] 2.6 *sucks* at swap IME [07:37] Dunno abuot 3.x [07:37] take a look at pastebin its dmesg [07:37] Those aren't helpful without more context [07:38] You say you have jfs and JBOD SATA disks -- is there anything in between (mdadm, LVM, ...) ? [07:38] yes, sorry, there is LVM [07:38] no mdadm [07:39] so what each SATA HDD is a PV and they're all one VG, and you have a jfs on top of that, spanning PVs? [07:39] yes sir [07:39] OK. You realize your MTBF is pretty fucked in that layout, right? [07:40] why would it be? its just a sata expansion, it shouldnt be [07:40] Because the failure of any one disk will lose your entire array [07:40] each disk is a seperate array, and then put into lvm [07:40] You're effectively got an unstriped raid0 [07:40] twb, each disk is seperate array [07:40] Right so you have zero redundancy [07:40] zero parity [07:41] there is a way to replace a disk in lvm, only losing data on that disk [07:41] these files are not mission critical [07:41] OK, so long as you realize that [07:41] its just a bunch of videos cached from youtube [07:41] And jfs would probably be pretty pissed off about having a 2TB chunk of its blocks zeroed, obviously [07:41] yes, i realise there is no redundancy [07:41] Okey dokey [07:42] How are you calling rsync? [07:42] truth is i havent tested with jfs, ext 4 is not to shabby about it [07:42] And how big are the source and destination dirs [07:43] rsync -avHP --ignore-existing --exclude '1oBrGpbCGqs' -e ssh root@XX.XX.XX.XX:/videos/youtube /videos/ [07:43] thats how i am calling rsync, [07:43] source dir is about 8.8TB [07:43] destination DIR has upper limit of 28 TB [07:44] Do you need -H? That probably pisses it off. [07:44] no, not necessarily [07:44] would be nice to have though [07:44] i have done 8.3 TB with it [07:44] if i stop now, will it effect anything negatively? [07:44] as in interrupt rsync? [07:44] because the remaning data will be in the same dir [07:45] I wouldn't think so [07:45] no, not interrupt, i need to recall rsync [07:45] i mean data integrity [07:45] I don't follow [07:45] H = hard link [07:45] 8.3 TB of data with hard links [07:45] the remaning 600 Gigs not hard link [07:45] would that be a problem ? [07:45] Not using -H just means if foo.c and bar.c are hard-linked on the source, they won't be hard-linked on the destination [07:45] mmmmmmmmmmmmm [07:45] ok [07:46] If you don't use links extensively, it shouldn't be a big deal [07:46] i dont [07:46] You can always relink them post-facto with perforate's finddup -l [07:46] ok ill try without -H [07:46] Other than that I can't think what else would be giving you grief [07:46] so the swap is causing hte problem you think? [07:47] swap thrash just means the system will hang instead of killing off naughty procs [07:47] Look at free -m or free -g during the issue and if swap is being used that's a tip off [07:48] btw next time I would suggest doing raid0 w/striping in mdadm rather than using lvm for this use case [07:49] why would you recommend that over lvm [07:49] for performance? [07:49] because that's what it's for [07:49] atm if you do synchronous writes, they'll all go to one disk and the rest will idle [07:50] (Unless you've explicitly striped in LVM, anyway) [07:50] Look at iostat and see if all your writes are bunched into one or two disks [07:50] nah, they are spread across many [07:50] hum. [07:50] there is a nice util called saidar [07:50] I find that surprising, but whatever [07:50] shows me disk, network, cpu, io etc. [07:51] cute [07:52] Ah, free supports -h in recent versions. [07:53] there isnt much stress in reads on these disks, and i need them to just be one large chunk, thats why i avoided raid0, because if 1 fails, all fails, with lvm, i just replace empty hdd, put UUID of old hdd on it, fsck, 0 the place that that hdd held, and go on like nothing happened [07:53] only losing data on that disk [07:53] raid1 would be nice, but i need double the storage [07:53] acidflash: you should be able to do that with raid0 as well [07:54] I haven't done it myself because usually if I need volatile storage I just put in a shitload of RAM [07:55] twb: then obviously raid0 is a better choice, but ive never actually done it or come across someone doing that with raid0, i was unaware you could, [07:55] mdadm is pretty flexible [07:55] obviously you should test it first; ICBW :-) [07:56] yeah, ill test it on a small storage [07:57] im doing it now without -H [07:57] see if its hangs, [07:57] if that doesn't work try turning swap off entirely (temporarily at least) with swapoff -a [07:57] from what i read on google, heavy io with rsync in any type of raid, is blocking for whatever reason, and it hasnt been solved (in any of the articles in 2011) [07:57] aha [07:57] ok [07:58] That might just be me being an anti-swap bigot [07:58] well its worth a try [07:58] just to finish rsync [07:59] i probably wont be having these problems once i start serving from it [07:59] average io is not more then 45 mb/s read [07:59] The other thing you could do is just use tar or something and be super lazy [07:59] 15 mb/s write [07:59] Hi, I'm trying to add cgi support to apach but every time I open localhost, the browser asks me to download. I'm following the doc http://httpd.apache.org/docs/2.2/howto/cgi.html and here is my httpd.conf http://paste.ubuntu.com/903495/ . Please help, thanks! [07:59] but rsync is doing close to 350-400 mb/s [07:59] tar over nc instead of ssh I mean [07:59] mm [07:59] Or nfs, or whatever [08:00] There are lots of ways to just shove shit from one place to another [08:00] yeah [08:00] whats your preferred raid card? [08:00] areca? [08:06] Uh, no. mdadm. [08:06] Hardware raid an expensive, buggy, unreliable pain in the arse. [08:07] what if you need lots of ports, what do you do [08:07] ie: i need atleast 20 sata [08:07] other then the 7 on board [08:07] You get a $10 SATA to PCIe bridge and put it in jbod mode [08:07] any _good_ pci-x to sata only has 2 on it [08:08] 2 x 6 pci-x = 12 [08:08] still 8 short [08:08] pcix? That's not dead yet? [08:08] pci-express [08:08] That's pcie [08:08] depends where you are ;) [08:08] If you are putting more than 6 disks in a machine you probably need to consider getting a fancy-pants enterprise case or mobo, or a NAS or a SAN [08:08] correct terminology is probably pci-e [08:09] pcix was a competing standard [08:09] i can use SAN or NAS for my caching systems [08:09] it needs to write to local disks, [08:09] it cant write to network storages [08:10] Shrug. I'm just giving you my opinions. You don't have to follow them. [08:11] I'd have to run the numbers, but I expect the PCIe or QPI backplane of a workstation mobo can't sustain a whole lot more than 6 or 8 disks [08:11] bandwidth wise it can [08:11] 66 Mhz is plenty [08:12] That's a clock cycle rate, not bandwidth [08:12] its bus speed for port [08:12] Daviey, Morning Sir! Can I get you to have a look at bug 882540? I think it would be ready for some sponsorship, sir! ;-) [08:12] Launchpad bug 882540 in iscsitarget "kernel crash whenever it is accessed" [Undecided,In progress] https://launchpad.net/bugs/882540 [08:12] you can calculate bandwidth from it, cant you [08:13] oh i forgot to mention, these disks are 3 TB GPT [08:13] twb: does that change anything? [08:13] 66MHz appears to be a PCI clock. PCI-e v3.0 is rated at 1GB/s per lane. [08:13] 33 Mhz = pci [08:13] acidflash: well, it means you'll get some write amplification if your blocks aren't aligned. [08:13] PCI-E 2 is 66 mhz [08:14] acidflash: ref. https://en.wikipedia.org/wiki/PCIE and https://en.wikipedia.org/wiki/PCI [08:14] smb: looking [08:14] (morning smb, btw o.) [08:14] "As a point of reference, a PCI-X (133 MHz 64-bit) device and PCIe device at 4-lanes (×4), Gen1 speed have roughly the same peak transfer rate in a single-direction: 1064 MB/sec." [08:15] yes i saw that [08:15] but PCI-X @ 133 Mhz is definitely not correct [08:15] if by PCI-X they mean the old PCI [08:16] its plausible for express [08:16] Daviey, The problem itself is probable valid back to oneiric (at least I think I remember reports that had 3.0 kernels in them), but I have not, yet prepared a debdiff for that... [08:16] No, as I said PCI-X was a competitor to PCIe and it is now obsolete. [08:16] https://en.wikipedia.org/wiki/PCI-X [08:16] ahhhhhh [08:16] ok [08:16] yes very possible then [08:17] smb: looks good! Whilst not /required/, it's good pratice to use dep-3 patch headers (tagging).. Have you come across it before, http://dep.debian.net/deps/dep3/ ? [08:17] Backplane on a Z68 (for example) appears to be "DMI" now, not PCIe or QPI [08:17] Daviey, Not yet, will have to look at the documentation [08:17] "The original implementation provides 10 Gbps each direction (using a x4 link). DMI 2.0 (introduced in 2011) doubles the transfer rate to 20 Gbps with a x4 link." [08:18] yeah i can believe it [08:18] smb: skip directly to the end, there are some examples, slightly higher up there is detailed explanation.. if you wanted to do that, i'd be happier.. but i'm not going to make it a requirement. [08:18] especially with ocz pushing their HSDL's [08:18] acidflash: that's between the north and southbridges [08:18] if you ptu a bunch of ssd's in raid0, they are doing amost 2TB/s [08:18] sorry [08:18] acidflash: i.e. between the CPU and the peripherals [08:18] 2 GB/s [08:18] Daviey, I am using a format like we have for the kernel right now (to have s-o-bs and references to bugs and origin) [08:19] Given that SATA can do a theoretical 6Gbps, that means you can have up to three disks before you bottleneck at the backplane [08:20] thats a good point [08:20] Of course the heads can't pull data off spinning metal at 6Gbps, but you see my point that you at least need to run these numbers rather than just shoving a shitload of disks in a case and hoping for the best [08:20] smb: Yep.. so i can upload as is, but if you want to change to dep3, i'll hold out. [08:20] twb: I normally dont use the onboard sata for more then the system and logs [08:21] normal throughput is probably not even 2Gb/s [08:21] but the load is on the PCI-Express cards [08:21] thats a different story [08:21] I dont think the backplane applies to them [08:21] otherwise its not possible to push 20 Gb/s with 4 OCZ's Raid0 striped [08:21] and its been doen [08:22] Daviey, Seems more or less I already got the information in, just not exactly in the right format. But if you are ok with it, I think for now I would prefer to keep it that way and try to comply better for future changes. [08:22] done* [08:22] acidflash: uh, if you plug a pcie card in, that goes disk --sata--> pcie card --pcie--> southbridge --dmi--> northbridge --> cpu [08:22] then something is off with the numbers :) [08:22] Probably [08:22] not my numbers [08:22] Or the OCZ guy was lying, or he didn't use a 4 lane DMI backplane [08:22] read about OCZ-Vertex 3 Max IOPS [08:23] mm [08:23] yes thats possible also [08:23] not 4 lane [08:23] Enterprise gear, like blade racks, will have different backplanes [08:23] yes thats 100% true [08:23] acidflash: 4 lanes on the mobo between north and south bridge, not pcie x4 [08:23] yes i understand [08:26] Daviey: ping [08:29] rbasak: I have a call starting in 30 seconds, after that.. Fancy a chat? [08:29] Daviey: OK [09:03] tried without rsync without -H and still same problem [09:04] is here no solution to this? [09:04] there* [09:04] morning o/ [09:32] hi, when I open 127.0.0.1 the script works but the browser asks me to download if I open localhost. anyone can help? Thanks [10:58] is there some nice lvm manager made in curses? [11:04] ok this is EXTREMELY annoying [11:36] New bug: #967037 in samba (main) "package samba-common 2:3.4.7~dfsg-1ubuntu3.8 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1" [Undecided,New] https://launchpad.net/bugs/967037 [12:21] I want a easy webplatform, for my consulting website, should I use webpress [12:21] wordpress [12:21] I am hosting on a ubuntu server, should if I go with wordpress use the pakcage in repostory or should I choose another platform all togther === jvdz_ is now known as jvdz [12:31] New bug: #967082 in rabbitmq-server (main) "package rabbitmq-erlang-client 2.7.1-0ubuntu3 failed to install/upgrade: subprocess new post-removal script returned error exit status 1" [Undecided,New] https://launchpad.net/bugs/967082 === bladernr_afk is now known as bladernr_ [13:25] roaksoax: ping [13:36] Daviey, are we thinking today's cloud images should be tested ? [13:36] for beta-2 [13:39] smoser: There isn't anything i'm aware of that makes a change to cloud-images packages pending. [13:40] lynxman pong [13:41] roaksoax: morning sir, I have a couple questions for you orchestra related [13:41] roaksoax: I got the new precise profile in place (thanks!) and while trying to juju bootstrap the machine I marked as net bootable reinstalls properly but doesn't install zookeeper or anything extra [13:42] roaksoax: http://pastebin.ubuntu.com/903894/ [13:42] roaksoax: have you found this issue before? [13:43] jamespage, that means to you, an we run full test ? [13:43] roaksoax: juju is 0.5+bzr401-1juju1~oneiric1 [13:43] of the 20120328 [13:44] lynxman: let me see [13:45] Daviey: ping im going to replace the console patch that we carry with the new one [13:46] zul: I assume you'll put it through CI, and make sure it DTRT [13:47] Daviey: yep [13:48] lynxman: that's done by cloud-=init are you sure it is running on boot? [13:48] roaksoax: it is afaict [13:48] roaksoax: just PMed you credentials if you fancy a look [13:48] lynxman: so check the cloud init logs [13:49] roaksoax: I reckon cloud-init running is attached to the profile right? === smb` is now known as smb [13:54] smoser: I can kick that off now [13:54] thank you, mr. page. [13:55] smoser: 20120328 to confirm todays image? [13:56] yeah. [13:56] OK running now [13:59] hallyn, i responded to your performance mail [13:59] and then had one more thought. [14:00] i gues i'd like to see what we're doing by default in ubuntu with cache= [14:00] as the kvm man page says: "Some block drivers perform badly with cache=writethrough, most notably, qcow2." [14:01] if we're doing that combination by default.. maybe we at least want to know if qed would make a difference. i probably woudn't advocate for changing from qcow at this point as default, but a good data point. [14:11] Daviey/smoser: nnnnnghhh [14:13] smoser: http://paste.ubuntu.com/903947/ [14:43] hallyn, [14:43] http://paste.ubuntu.com/903859/ [14:43] oops [14:48] hallyn, http://paste.ubuntu.com/904000/ [14:49] basically 512 (default bs for dd) is what is completelyh sucking [14:49] hallyn, hi. We didn't really think apport info was necessary for bug 959352 but we just added it anyway because we didn't see any action on it. Do you happen to know any behind-the-scenes information on the kernel side of it? [14:49] Launchpad bug 959352 in lxc "Ephemeral containers have "/rootfs" prefix in /proc/self/maps entries" [High,Confirmed] https://launchpad.net/bugs/959352 [14:51] hallyn, then, when going to file in root disk, http://paste.ubuntu.com/904004/ (including sync) we still get good speed. [15:26] hggdh, i suspect bug https://bugs.launchpad.net/ubuntu/+source/fence-agents/+bug/961232 [15:26] Launchpad bug 961232 in fence-agents "running multiple 'cobbler system reboot --name=xxx' at the same time, fence_cdu lists ALL reboots" [Undecided,New] [15:26] is fairly important to you [15:26] ? [15:27] smoser: sort of: I think it is just mixing the commands & responses received (on the many different ssh sessions to the PDU) [15:28] if this is the case, then I do not really care, I can live with the excess output [15:28] wait. what? [15:28] is it rebooting the systems or not. [15:29] at this point in time, I am commanding reboot on 4 systems, via 4 different jenkins jobs [15:29] each job deals with ONE and ONLY ONE machine [15:29] but the output shows the commands and responses of ALL machines [15:30] and the systems do get rebooted [15:33] smoser: my itch is (apart, of course, of seeing more than I should see): is this just the PDU crappy code mixing the output, or, somehow, fence_cdu is commanding all to reboot when called with just one [15:33] I frankly think the latter option quite farfetched. But this is software :-) [15:33] hggdh, right. [15:34] that should be easily testable, though, hggdh [15:34] if you issue a reboot of one system, and all reboot .... [15:34] then we need to fix that [15:34] :) [15:34] yeah. I intend to check on it as soon as beta2 ends [15:35] when I opened the bug I had just had a WTF moment seeing the output, and decided to get it recorded ASAP [15:45] utlemming, did you just kickoff a precise ec2 test run [15:45] ? [15:45] jamespage: yes [15:45] did I mess something up? [15:46] utlemming, hrm - no its running fine [15:46] smoser got me to press the button about two hours ago - https://jenkins.qa.ubuntu.com/view/ec2%20AMI%20Testing/view/Overview/job/precise-server-ec2/6/ [15:46] **\0/** all green! [15:47] can you cancel the run? or should we just let it run through? [15:47] * jamespage thinks bout that one [15:47] utlemming, lets just let it run [15:48] utlemming, if its less green I'll delete it [15:48] k [15:49] smoser, Daviey: https://jenkins.qa.ubuntu.com/view/ec2%20AMI%20Testing/view/Overview/job/precise-server-ec2/6/ all looking good [15:49] thats the first entirely successful run we have ever had on a full test [15:50] jamespage, but then utlemming had to run it again ? [15:50] is that what i see above? [15:50] way to ruin a good result, u [15:50] utlemming, [15:50] :) [15:50] smoser, like I said - I'll delete the second set of results if they are less green :-) [15:51] jamespage: lets delete the second run if they fail too :) [15:51] then I don't ruin smoser's happy day [16:14] hi all [16:31] arosales: SpamapS: looks like https://blueprints.launchpad.net/ubuntu/+spec/servercloud-p-juju-charm-testing needs some DONE or POSTPONE love ;) [16:33] SpamapS: should we postpone the charms and other providers except canonistack and EC2? [16:33] Essex/Precise screencast https://vimeo.com/39299140 [16:33] looks interesting without audio though [16:35] hi: what is your suggested way of backing up your KVM virtual machines? [16:35] indeed, I'll postpone some stuff [16:56] New bug: #967296 in php5 (main) "package libapache2-mod-php5 5.3.5-1ubuntu7.7 failed to install/upgrade: subprocess installed post-installation script returned error exit status 10" [Undecided,New] https://launchpad.net/bugs/967296 [16:58] SpamapS: thanks for adding the updates to Juju charm testing. If its ok with you I am also going to mark deploy framework against ec2 and canonistack as "INPROGRESS" [16:59] arosales: I don't really think it is in progress ?? [17:00] SpamapS: Is that what m_3 is working on? [17:00] or is that more of the implement work item? [17:00] m_3: are you working on getting the test suite runnign with an ec2 and canonistack config? [17:00] arosales: they can certainly be decoupled [17:09] SpamapS: ok. [17:10] * arosales will wait to see what m_3's current status is. [17:21] New bug: #967311 in whois (main) "Incorrect 6to4 handling" [Undecided,New] https://launchpad.net/bugs/967311 [17:28] SpamapS: yes [17:28] smoser: interesting [17:28] gary_poster: I don't know of any behind-the-scenes action, sorry. Oh, though apw was going to try merging the latest upstream [17:29] (of overlayfs) [17:29] arosales SpamapS: I'm working to get the current charmtesting framework working against ec2 and canonistack [17:33] m_3: SpamapS: would it be reasonable to mark deployment against ec2 and canonistack as in progress @ https://blueprints.launchpad.net/ubuntu/+spec/servercloud-p-juju-charm-testing then? [17:35] arosales: just updated that [17:36] ack thanks hallyn [17:42] m_3: thanks === Jasonn is now known as juicy [17:44] arosales: np [17:45] gary_poster: the shame is this is horribly interesting to me, i'd love to dig into exactly what's happening; but i need to focus on libvirt's stability [17:47] Is there a quick and easy way i can set apache back to default configuration? [17:50] jjohansen: terribly sorry.. but jamespage saw a reoccurance of bug 925024 [17:50] Launchpad bug 925024 in linux "apparmor makes it impossible to install postgresql-common on Precise" [Medium,Fix released] https://launchpad.net/bugs/925024 [17:50] SpamapS: howdy! So I was wondering whether you think is best to do this : initctl emit --no-wait rabbitmq-server-running or [ -n "$UPSTART_JOB" ] && initctl emit --no-wait rabbitmq-server-running [17:50] SpamapS: in rabbitmq's init script [17:51] adam_g, if you have an unmodified ubuntu precise openstack installation running, could you pastebin 'virsh dumpxml instance-id' and ps -axww | grep kvm ? [17:51] roaksoax: thas the right way to do it if you want to coordinate on a single node. [17:51] i'm just curious to see what all we're setting, and to lazy to do it myself. [17:51] smoser: yeah, one sec [17:52] roaksoax: rather, just calling initctl without a [ -n ] [17:52] SpamapS: cool, thanks [17:52] smoser: oh actually, what do you mean unmodified? i just updated to trunk at home, i can get you that from CI lab probably, but its running a version thats different than precise atm [17:53] well, give me what you can. and guess if it is differeent. [17:53] roaksoax: should also open a task upstream w/ maas to make it wait for the rabbitmq server rather than failing if its not available though. :) [17:53] ie, is the CI lab likely to have changed the libvirt xml ? and kvm? [17:53] roaksoax: not to beat on a dead horse. ;) [17:53] smoser: heres xml: http://paste.ubuntu.com/904274/ [17:53] hallyn, completely understand. [17:54] smoser: http://paste.ubuntu.com/904276/ kvm proc [17:54] carp, hallyn, you see that ^ ? [17:54] cache=none on the root disk. [17:54] SpamapS: heh, yeah well the issue is not really maas not waiting for rabbitmq, but rather, the creation of user/vhost/permissions fail on CD installation [17:55] SpamapS: since this is done in maas postinst, then on the installer things fail, while on a normal apt-get it works [17:55] smoser: oh, actually, on that node i am running 2012.1~rc1-0ubuntu2 [17:56] smoser: yeah, looks like all disks are hard-coded as cache='none in libvirt.xml.template [17:57] adam_g, actuallyu, i dont see cache= at all in the libvirt [17:57] in the xml [17:57] meaning libvirt mus be doing that by default [17:57] or i'm missing it [17:58] roaksoax: I see.. definitely makes sense then. [17:58] smoser: ? [17:59] roaksoax: shouldn't the udeb depend on rabbitmq though? [17:59] roaksoax: then it would be guaranteed to be configured before. [18:00] SpamapS: it's not a udeb, it's the package being installed in-target [18:00] SpamapS: but since rabbitmq is not running on installer time, then it does not create the stuff needed [18:01] adam_g, what file is that in ? [18:01] i dont see it in nova source [18:01] roaksoax: you're allowed to 'invoke-rc.d rabbitmq-server start' in a postinst... [18:01] roaksoax: though this seems more complicated than that [18:02] smoser: i pulled that from the pastebin [18:02] roaksoax: can maas use a remote rabbitmq? If so, is there a debconf question? [18:02] SpamapS: invoke-rc.d in the installer won't work directly because of policy.d [18:02] smoser: http://paste.ubuntu.com/904288/ [18:02] smoser: /usr/share/pyshared/nova/virt/libvirt.xml.template [18:02] Daviey: *uggh* [18:03] smoser: apparently users can provide their own template to be used instead of the default, though ive not done that [18:03] what a freakni mess [18:03] Daviey: how then is maas started to create the user? [18:03] SpamapS: it just needs more gaffa tape [18:03] adam_g, not in longer. [18:03] not on trunk [18:03] that file is gone [18:03] Daviey: https://bugs.launchpad.net/ubuntu/+source/rabbitmq-server/+bug/913464 [18:03] Launchpad bug 913464 in rabbitmq-server "rabbit creates new PAM session" [Medium,Fix released] [18:03] SpamapS: invoke-rc.d --force or /etc/init.d/ override policy.d :) [18:03] ^^ gaffa tape. [18:03] Daviey: Error: "^" is not a valid command. [18:04] Daviey: see above patch, I think that fixes our issues [18:04] https://review.openstack.org/#change,5621 [18:05] smoser: yeah, i know about that. but i thought we were talkin about essex? :) [18:06] oh, thats not essex. [18:06] ok. [18:06] thats fine. [18:06] Daviey: ah no, that is already merged [18:07] Daviey: indeed.... [18:07] * SpamapS backs away slowly [18:12] well, hallyn adam_g it looks like cache=none has been default for a while. [18:12] https://review.openstack.org/#change,5769 [18:12] (it was before tha too) [18:13] cache is for wussies [18:14] ah. [18:14] for some reason i always had in my head that none == unsafe [18:14] or at least ~ unsafe [18:17] adam_g: still around? [18:17] zul: yeah [18:18] adam_g: so im doing some work on the nova packaging branch, im going to make it fail if the tests suites (it needs a fix in python-netadr which i will upload tomorrow) and i swapped out the conosle patch with the new console patch as well [18:18] zul: what is the status of the new patch? [18:19] adam_g: fails some pep8 tests right now but it has been reviewed with asking a bigger file size to check [18:20] zul: hmm looking for the gerrit proposal [18:20] adam_g: https://review.openstack.org/#change,5873 [18:21] I hosed my apache2 install. I reinstalled all the apache2 packages and it's back to default config, but still doesn't work. It cant see anything in /var/www even with permissions wide open. What can i do? [18:22] zul: oh, thats cool libvirt upstream is looking to solve this [18:22] adam_g: da [18:23] zul: id really prefer we wait to get some more 1+'s from upstream before carrying it. can we run it in proposed and do some heavy testing on it first? [18:23] adam_g: yeah its alreayd in the proposed tree [18:23] zul: ok, lemme run it through. in theory we should be able to dump gigabytes to the console logs with no issues [18:24] zul: did that swift test suite fix get uploaded? id like to enable keystones tests if os [18:24] adam_g: not til the beta freeze is off [18:26] adam_g: where is libvirt tracking it? [18:27] Daviey: not sure, its mentioned in zul's proposal by someone from (i assume) libvirt [18:27] Daviey: https://review.openstack.org/#change,5873 [18:29] Daviey: since its totally libvirts fault [18:31] adam_g: also im starting to look at out of tree patches that mgith not get into final [18:32] is it possible to install 10.04 from a 11.04 minimal install disk? [18:32] I have an apple xserve and 10.04 does not boot from the disk, but the 11.04 does. I need to test out 10.04 though. Can this be done? [18:36] urthmover: i highly doubt it. [18:42] zul: is it, or kvm's fault? [18:42] Daviey: libvirt [18:50] ok KM0201 I'll take your word for it [18:51] urthmover: i fail to see how you think it would be possible.. [19:01] New bug: #967410 in samba (main) "Windows clients cannot connect to shared printers " [Undecided,New] https://launchpad.net/bugs/967410 [19:26] New bug: #966069 in horizon "/etc/apache2/conf.d/dashboard.conf contains wrong paths in the Ubuntu package" [Medium,Triaged] https://launchpad.net/bugs/966069 [19:31] New bug: #967424 in cobbler (main) "Cobbler package silently creates invalid install if /var/www/cobbler directory already exists" [Undecided,New] https://launchpad.net/bugs/967424 [19:36] New bug: #967430 in cobbler (main) "Switching to internal python tftp server fails due to file name change" [Undecided,New] https://launchpad.net/bugs/967430 === will is now known as Guest69534 === Guest69534 is now known as linlin [20:28] aw crud. kvm-spice -vga qxl is not working ofr me (at least with precise alternate iso) [21:10] sigh === bladernr_ is now known as bladernr_afk === pdtpatrick_ is now known as pdtpatrick [21:12] zul: will all of these pass once that upload of yours goes in? https://jenkins.qa.ubuntu.com/view/Precise%20OpenStack%20Testing/job/precise-openstack-essex-nova-trunk/669/console [21:13] Status Code: 404 [21:13] it should [21:14] zul: hmm. did you disable the tests or something again? nova just finally built successfully [21:14] adam_g: i disabled the tests [21:14] ok [21:14] adam_g: ill re-enabled them after the netaddr stuff is uploaded tomorrow [21:14] k === Lcawte is now known as Lcawte|Away [22:06] folks, I will need help with bug 967815 [22:06] Launchpad bug 967815 in cobbler "/var/lib/tftpboot directory permissions destroyed" [Undecided,New] https://launchpad.net/bugs/967815 [22:16] New bug: #967815 in cobbler (main) "/var/lib/tftpboot directory permissions destroyed" [Undecided,New] https://launchpad.net/bugs/967815 === Arc_ is now known as a5m0 [22:42] hi, what mail server should I install for mail() to work in php? [22:43] Nicolas_Leonida2, how about postfix [22:47] default ubuntu server doesn't come with smtp service installed? [22:49] where do i put my wpa_supplicant.conf? [23:00] I'm having problems mounting nfs4 share from lucid server to precise client. It looks like bug http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=622146 - does anyone have idea if that's fixed in lucid? changelog seems to say "no" [23:00] Debian bug 622146 in nfs-kernel-server,src:krb5 "nfs-common: compatibility between squeeze and sid broken" [Normal,Fixed] [23:25] yup, seems related.. oh well, I'll have to see if I can backport the patches