[00:14] trying to get phpmyadmin going and get this message "Cannot load mysqli extension. Please check your PHP configuration" . Where do I configure for mysqli? I've cheked and php works, apache2 works and mysql is ok. thanks for any help ...been hours searching myself on internet [00:16] david_: is it installed ? [00:17] I don't know where to look exactly.... have been in [00:19] have been in /etc/php5/conf.d and it is there [00:20] and whats inside the file [00:20] h0rjulf: ; configuration for php MySQL module [00:20] extension=mysqli.so [00:21] is uncomented, so it should be loaded [00:21] mjfork, around ? [00:22] h0rjulf: that is my thought [00:22] you can check by creating a file with the phpinfo() function [00:22] soren, a few weeks ago you asked about booting images outside of a "cloud" [00:22] and i didn't have much doc for you. [00:23] i just wrote some: http://bazaar.launchpad.net/~cloud-init-dev/cloud-init/trunk/view/head:/doc/ovf/README [00:23] h0rjulf: I may see something here...is uncommented mean no ";" ? [00:24] h0rjulf: becasue even though it does not show up in my paste in IRC I see a ";" at the beginning of the line (; configuration for php MySQL module [00:24] david_: yes [00:25] h0rjulf: oo! let me try that...I am very new to Linux [00:26] david_: the "extension=mysqli.so" part is what counts [00:26] david_: the first line is only a comment [00:34] ok let me look again....no there is not comment just "extension=mysqli.so" [00:40] h0rjulf: what file calls the extension? [00:44] h0rjulf: in config.inc.php exists "$cfg['Servers'][$i]['extension'] = 'mysqli';" [00:51] h0rjulf: thanks for the help. must go cheers [01:07] Hi, all. Is there a specific package for Juju charms to deploy in Oneiric? Namely for OpenStack deployment? === macrocosm_ is now known as macrocosm [01:10] enmand, you might want to ask in #juju [01:11] Okay, I will give that a shot [01:11] I guess the bigger question is the Ubuntu Cloud Infrastructure stuff -- does that all use Orchestra and Juju to deploy Openstack? [01:13] I mean, I've installed juju in Oneiric, but there doesn't seem to be any predefined charms? [01:58] i am doing a do-release-upgrade on hardy i get this warning: Failed to read mirror file? [01:58] how bad it is [02:13] libpam0g : Services to restart for PAM library upgrade: postgresql-8.3 but not mysql? is this normal? [02:21] still upgrading, desinstalling and installing... hopefully everything will work [02:31] New bug: #873800 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/873800 [02:35] smoser: yes [02:35] mjfork, i'm still around . [02:35] whats up? [02:36] i was talking with dustin about cloud-init and using it to install the proper set of packages based on machine role [02:37] it sounded as if there may be a repository of ready-made scripts for some common ones (apache web server, mysql db server, etc) [02:38] hm.. [02:38] well, not so much. [02:39] there are some things in awstrial (which backs http://try.cloud.ubuntu.com) [02:39] they're likely to partially exist in the form of "cloud-config" snippits. [02:39] and you definitely *can* do such things with cloud-init [02:40] however i think the way most people turn a stock image into something useful is puppet, chef, or juju or something like that. [02:40] they'll use cloud-init to bootstrap them into one of those and let that take over. [03:06] ok [03:07] so far so good!! only postgresql doesn [03:07] doesn't work, something about pg_upgradecluster... [03:09] wip: what was your old vresion of postgres? [03:09] 8.3 = hardy default [03:09] and the new one? [03:09] do-release-upgrade removed it and installed 8.4 [03:09] major update, but now no more database (data) [03:10] i don't know what to do now [03:10] did you have a database there you needed migrated? [03:10] mjfork: yes, i have a dump_all [03:11] not sure if i need to do pg_upgradecluster!? [03:11] ok, so you dumped it to a text file and can load from that. you don't need the existing data director? [03:11] i would love to avoid using the backup and simply tell pg to use the "old" data [03:11] ok [03:11] is that what pg_upgradecluster do? [03:12] i believeso, but have never used it. [03:12] pg_upgradecluster -v 8.4 8.3 main not sure about main [03:13] http://ubuntuforums.org/showthread.php?t=1473404#3 [03:13] check out that thread. [03:13] * wip reading [03:13] then this one [03:13] http://ubuntuforums.org/showthread.php?t=1487895 [03:15] mjfork: i don't want to install 8.3 but keep 8.4 and have the data [03:16] right, i read that to mean the pg_upgradecluster requires both 8.3 and 8.4 to be installed [03:16] you can try and upgrade [03:16] pg_upgradecluster 8.3 main [03:16] run that, lets see if it works. [03:18] mjfork: Error: specified cluster is not running [03:18] right, looks like you need to have both postgresql 8.3 and 8.4 installed. [03:19] "I could not use the 'pg_upgradecluster' utility to upgrade postgresql 8.3 to 8.4 because 8.3 is replaced by 8.4" [03:20] baed on the first link, you need to stop postgresql, run "apt-get update && apt-get install postgresql-8.3" [03:20] and then try upgrade [03:20] is it possible to have 8.3 and 8.4 install at the same time?! [03:21] thats how i read the the first link [03:24] * wip install pgsql8.3 [03:25] damn so close: * The PostgreSQL server failed to start. Please check the log output: [03:25] FATAL: invalid value for parameter "lc_messages": "en_CA" [03:26] was that in the upgradecluser? [03:26] mjfork: no just trying to start 8.3 [03:29] locale -a there's no en_CA [03:30] locale-gen en_CA.UTF-8 en_CA [03:32] twb: THX! [03:32] You really should be using en_CA.UTF-8, not en_CA [03:32] Creating new cluster (configuration: /etc/postgresql/8.4/main, data: /var/lib/postgresql/8.4/main)... [03:32] The latter will use an obsolete encoding. [03:33] twb: ok will see where i should change this in pgsql [03:33] wip: update-locale LANG=en_CA.UTF-8 or so [03:33] wip: it's in /etc/default/ or so, not pg specifically [03:33] twb: is this pgsql related? [03:33] twb: ok [03:33] No, it's system-wide [03:36] it works!! i have my data [03:36] Shrug [03:46] New bug: #873816 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/873816 [04:04] hallyn_, around ? [04:05] howdy al, i am wanting to migrate the OS (Lucid) of a physical file-server with soft-raid /dev/md0 /dev/md1 etc to a VM on another box -- i was thinking about using Clonezilla but from memory last time i tried to clone partitions of a raid i ran into problems ... any advice [04:05] *? [04:12] hi I have a bunch of host os's running debian and all the guest vm's running on ubuntu 10.10 . I am primarily using open source Xen Hypervisor. I have been wondering if I should upgrade them all to 11.10 . I basically want to keep the same os for guest and host and I want to be able to switch from Xen hypervisor to KVM whenever needed. Just wanted to check if there are any obvious hurdles or major changes that I might have to worry [04:12] I performed an apt-get upgrade ruby [04:12] and now none of my ssh users can authenticate [04:12] nothing seems wrong in the ssh config, but I'm lost [04:14] any ideas? [04:14] just to addto my earlier post above, I am using the server edition. Any comments or suggestions will help. [04:46] wow any one? [04:47] let me look [04:48] is it broken? :) [04:48] if it isn't, why are you fixing it? ;) === sdfsad is now known as macrocosm [06:00] Hi guys, I just did a dist upgrade to upgrade my server from 8.04 to 10.04 and now my raid array is no longer attached to md0, any help on how to recover my array? [06:08] i'm trying to install fluxbox on ubuntu-server [06:08] do i need to install xubuntu-desktop first? [06:10] SinnerNyx: you do not [06:10] twb. how do i start it after i do apt-get install fluxbox [06:10] SinnerNyx: however you probably want to install the X server as well (apt-get install xserver-xorg or so) [06:11] ok and will that start automatically? [06:11] No [06:11] I suppose in that case you also want to install a display manager [06:11] New bug: #873859 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/873859 [06:12] twb, not to be a pester, but is there a standard one? [06:13] Well, gdm would probably Just Work, but pull in a lot of shit [06:13] Of course you could instead just install xinit, log in at the tty, then start your GUI session by hand [06:14] twb, i think i'll go xinit. i'll try to research how to get it working. thx for all the help [06:14] http://cyber.com.au/~twb/.xinitrc [06:15] That's an elaborate example, you really only need something like "xterm & exec fluxbox" [06:15] sweet. thx [06:18] Why do you want a GUI in the first place? [06:19] If it's just to run an app, you might be better to e.g. install the app and run it remotely with "ssh -X your-server the-app" [06:19] twb, actually I run bg %1 and bg 1 and the background app still is STOPPED [06:20] i've tried everything, and I need to be able to switch between apps [06:20] uh that's because your app is daft [06:20] Alright I'm back. I'm trying to figure out how to recover my raid array after doing a dist-upgrade. I thought it would just save all my setup from before and let me mount md0 like I always have. [06:20] the app is grep [06:20] You probably just want nohup, or if you want to be fancy, GNU Screen [06:20] my array was built with mdadm by the way [06:20] its a virtualbox and i'm using ttys [06:20] SinnerNyx: pastebin the command or whatever that you're doing [06:21] grep -r "https://...." / [06:21] Hdale85: so what, you're stuck in the initramfs? [06:21] grep -r "https://...." / > inittest [06:21] thats the actual command [06:22] twb, i just did the dist upgrade and it's logged in but there is no md0 device now. I'm just not sure how to recover the array without losing the data that's on it. [06:22] or if recover is even what I want to do? [06:22] i did a dist-upgrade from 8.04 to 10.04 to stay on the newer LTS [06:22] Hdale85: oh, so you aren't booting from the array? [06:22] nooo i have a separate OS drive [06:22] OK, pastebin /proc/mdstat's contents [06:23] ok give me a sec [06:23] ubottu: eol [06:23] End-Of-Life is the time when security updates and support for an Ubuntu release stop, see https://wiki.ubuntu.com/Releases for more information. Looking to upgrade from an EOL release? See https://help.ubuntu.com/community/EOLUpgrades [06:24] Hdale85: AFAICT some packages within 8.04 are maintained until 13.04 [06:24] I was trying to add some features to the server and was running into issues which is what prompted the upgrade, until now it's mostly just been a file server so I haven't cared much [06:25] Shrug [06:27] http://pastebin.com/4yrCw6Un [06:27] looks like it's listing 4 drives [06:27] out of 6 [06:28] Now see if the drives are in /proc/partitions [06:28] the OS drive is IDE so I believe the array was sda-f [06:28] Oh, I see what has happeend [06:29] You raided partitions, right? That paste shows it trying to assemble drives, not partitions [06:29] no I believe I raided the drives and then built a partition on top of it? [06:29] I could be wrong though it's been about 3 years since I've messed with it [06:29] Hm, OK, that is unusual [06:30] http://pastebin.com/eNp74ZHP [06:30] I have seen this kind of problem before, where what happens is this: you have partitions, and then RAID the partitions together. Then later on, mdadm sees the *disks* as being part of the array, and never looks at the partition table [06:30] So then it tries to assemble the whole disks, and explodes [06:30] hmm [06:31] This is because the partition goes all the way to the very end of the disk, and the mdadm metadata (used to) live at the end of the parittion [06:31] So when it sees stuff at the end of the disk, it could be either disk or partition, and at at lucid, the former "wins" [06:31] so if I did raid the partition rather then the disks, how do we make it see the partitions instead of the disks? [06:31] Hmm, but there are no partitions on your disks (according to /proc/partitions), so it looks like you are seeing something different [06:32] oh [06:32] What I would try is this: mdadm /dev/md_d0 --stop ; mdadm --assemble /dev/md0 /dev/sda /dev/sdb ... [06:32] :( I really hope I don't lose everything, 5TB's of data pretty much as the array was almost full [06:32] hopefully that will give an error, or work [06:32] if they weren't originally assembled in that order would it matter? [06:33] Order doesn't matter [06:33] spares vs. active might matter, I don't normally have spares. I don't THINK it matters [06:33] i didn't have any spares, just a raid 5 array with a single redundancy drive === ENOSLEEP is now known as greppy [06:34] afk pub [06:34] hmm failed to create /dev/md0 [06:35] ok [06:36] mdadm: cannot open device /dev/sda: Device or resource busy [06:36] mdadm: /dev/sda has no superblock - assembly aborted [06:45] ugh....I'm worried now lol [06:49] sudo xterm & exec fluxbox returns: "Warning: failed to open file(/usr/share/fluxbox/nls/en_CA.UTF-8/fluxbox.cat)" [06:56] seems all my drive letters are 1 off what they used to be, would that matter for anything? [06:58] used to be /dev/sdb-g but now it's /dev/sda-f [07:08] WOOT! got it on my own haha. Ok so I did a mdadm --examine each device to check they were all good and ok, then a did an mdadm -- assemble --uuid=cecc1b14:18a97724:462a36bb:f8f383a4 /dev/md0 [07:08] with that it mounted all 6 drives and started the array [07:09] so I guess if you build an array with drives instead of partitions it's best to mount with the uuid [07:11] i think you should usually use uuid except when using lv partition (snapshot has same uuid) [07:12] hmm well everything I read said to just assemble by listing each drive [07:12] either way though glad that worked I was freaking out a bit and now I know a bit more about mdadm again....hopefully it's not 3 years before I use it again or else I'll just forget [07:12] hi all [07:13] although should be adding new drives soon as I'm getting a bit desperate for space [07:31] smoser: Cool, thanks! [07:36] New bug: #873899 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/873899 [07:41] New bug: #873903 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/873903 [08:07] ? [08:08] Hdale85: don't forget to check that it is still working after a reboot [08:09] yeah, I'd definitely notice lol [08:09] how can i launch my software with the terminal after i install it using ape-get [08:09] it should save the assembly though right? [08:09] Depends, hence check [08:10] lol [08:11] twb: do you know how can i launch my software with the terminal after i install it using ape-get [08:11] cocoongg: plonk [08:11] <_ruben> ape-get: the apt-get for monkeys! [08:11] ape-get does not have sun wukong powers [08:12] !zh [08:12] 如欲獲得中文的協助,請輸入 /join #ubuntu-cn 或 /join #ubuntu-tw [08:12] 。。 [08:12] sorry [08:16] Non-working upgrades are so frustrating :[ [08:16] 英语还是不行阿,交流有问题 [08:20] !english [08:20] The #ubuntu, #kubuntu and #xubuntu channels are English only. For a complete list of channels in other languages, please visit https://wiki.ubuntu.com/IRC/ChannelList [08:25] sorry [08:33] Is there a way of looking at the mail sent from an exim server? [08:37] <_ruben> weird .. reading from a raid1 mdadm array only seems to touch 1 of the 2 disks according to iostat [08:39] Well, duh [08:39] why would it need to read both [08:42] <_ruben> increased performance, when done properly ... then again, as in this case it should be all pretty linear, it wouldn't help much anyway indeed [09:02] New bug: #873969 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/873969 [09:42] New bug: #873993 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/873993 [09:44] hi guys. I'm using Lucid server for a couple of machines, and I've come across the consolekit memory leaking bug. I've read that it's safe to simply remove consolekit on servers, as they dont require any X processes. Just wanted to make sure, before uninstalling it, as I dont have physical access to the machines if it fails. So, is it safe to remove consolekit? [09:44] the current consolekit version: 0.4.1 [09:45] smoser: Merged you branches for ec2 testing - also did *alot* of tidyup and pushed a new version of the package to ppa:ubuntu-server-ec2-testing-dev/testing for oneiric [10:31] New bug: #874047 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/874047 [10:36] New bug: #874050 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/874050 [10:36] rbasak, did that work on the samba post-removal script get included in oneiric? [10:37] jamespage: no [10:37] jamespage: so I sent it to debian to see what happens there as we have time now this cycle [10:38] rbasak, what was the bug id? *lots* of 11.10 upgrade errors in the new queue this morning - think they might be related [10:38] I have a question, on my ubunu linux server with postfix, dovecot and mail-stack-delivery, everything was woking fine, but now dovecot's sasl for postfix smtp stopped working unexplicably to me. dovecot-auth is not created anymore in /var/spool/postfix/private/ [10:39] how can i fix it? it appears /etc/dovecot/auth.d/01-mail-stack-delivery.auth is not included in dovecot's config anymore [10:39] jamespage: bug 862129 [10:39] Launchpad bug 862129 in samba "samba postrm depends on packages not guaranteed to be configured" [High,Triaged] https://launchpad.net/bugs/862129 [10:39] rbasak, yep - its the same problem [10:40] jamespage: yeah I agree [10:41] webirc1231, which version of ubuntu are you running [10:42] 11.10, have set up everything on the beta about ten days ago [10:42] i cannot say with certainty that an update broke the configuration... [10:43] webirc1231, hmm - well it might have done [10:43] 11.10 introduced a new version of dovecot [10:43] got 2.x? [10:43] and the mail-stack-delivery configuration was borked for a while [10:43] patdk-wk, yep [10:43] yes, but I have been using 11.10 from the start, so no major version jumps in my config [10:44] he doesn't mean version bumbs [10:44] I should have backed up the working config files, then I could have run a diff.... [10:44] he means configuration and package setup changes, without dovecot versionchanges [10:45] something must have changes, that's for sure, before dovecot-auth was created in postfix' private directory now it isn't [10:49] I will just purge the mail packages and start over again, then I will see if it's working and what the difference is, but I don't have a lot of time to do that. i have searched the bugDB, could not find similar reports [10:50] unfortunately because the structure of the configuration files has apparantly changed so much, I cannot find a lot of info [10:51] webirc1231, before you do please let me take a look; I did the fix on the mail-stack-delivery config for oneiric - it may have been an oversight on my behalf [10:53] My guess would be /etc/dovecot/auth.d/01-mail-stack-delivery should be included somewhere. As the listeners appear to be created by 10-master.conf i would put the commands there, but i don't have a clue really... [10:55] what does the last lines of your dovecot.conf file contain? [10:58] at the end two files are included: !include conf.d/*.conf !include_try local.conf [10:58] dovecot 1.x included - !include_try /etc/dovecot/auth.d/*.auth [10:58] lynxman: hey [10:58] 2.x does not [10:59] i have searched for any inclusion of 01-mail-stack-delivery or auth.d/*.auth there is none [10:59] 01-mail-stack-delivery.auth .conf is included [11:00] i had to edit some files to use pgsql as a backend by the way, could that have broken an update? [11:01] editing any file, will cause updates to that file to break [11:01] if that matters or not, largely depends on the update [11:01] and it will prompt you what you want to do [11:03] No prompts, I suppose it should still have worked if any update did not changed the edited files, except if there are some interconnections that were changed, but I suppose filling in db-passwords and commenting out auth-sql should not break things like that [11:03] New bug: #874059 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/874059 [11:03] New bug: #874061 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/874061 [11:03] just add: !include_type /etc/dovecot/auth.d/*auth [11:03] to the end of dovecot.conf [11:04] patdk-lap, I think that the 01-mail-stack-delivery.auth won't work with 2.x (looking at my test install anyways) [11:05] hmm, if he installed from beta, shouldn't he have always had 2.x? [11:06] webirc1231, you installed dovecot from 11.10 right? you didn't install it from something else, then upgrade to 11.10? [11:07] no, I installed from beta, so no previous versions, i can check in the apt-log what versions of mail-stack-delivery were installed [11:07] patdk-lap: hmm [11:08] Daviey: lots of samba 11.10 upgrade errors BTW on postrm [11:08] 2.0.13-1ubuntu3 no updates to that package in the logs [11:09] mail-stack-delivery:i386 2.0.13-1ubuntu3 for clarity (no samba ;) ) [11:10] That version landed on the 29/09 [11:10] sorry 27/09 [11:11] up until that point mail-stack-delivery was broken; the config mean't that dovecot would not start [11:12] 2011-10-03 was the date I installed [11:13] wait a second.... the log is not complete... probably there is an update as I remember in sebtember [11:15] first installation of mail-stack-delivery on 28-9 mail-stack-delivery:i386 (2.0.13-1ubuntu2) but I purged that version... [11:16] and reinstalled, updated on 28-9 (UTC) and purged that one again on 2011-10-03 so I suppose the base for my setup is a clean 2.0.13-1ubuntu3 [11:17] webirc1231, and postfix -> dovecot sasl auth was working? [11:17] yes [11:17] * jamespage scratches his head [11:18] no issues at all, but I cannot recall if/what I (had to) edit [11:18] I will just purge again and set it up again [11:19] if it does not work i will mention it here (or as a bug report) again, but it can take some time, I have to leave the channel now, duty calls! Thank you for your feedback [11:24] Daviey: think dovecot will need an SRU to fix that up ^^ [11:24] * jamespage goes to work on that === twister004_ is now known as twister004 [11:36] hi [11:38] i know it's probably a stupid question: but how can i fix logical volume? i've freshly installed ubuntu /not server version: but i recognise that here i'm most likely to receive help/, during firs start i got problems with /dev/lg_linugrat/lv_home /its on /dev/md1- raid10/- lvdisplay shows that this logvol is not available. any ideas what could go wrong? [11:48] ok, fixed. bye [12:14] jamespage, bah. i just saw that the install laid down a link in /usr/bin. [12:14] i had documented modifying path to /usr/share/ubuntu-server-ec2-testing/python/ [12:15] smoser: ah - I missed that for some reason [12:16] New bug: #874130 in krb5 (main) "Canonicalize fallback only works for different realm (MITKRB RT #6917)" [Undecided,New] https://launchpad.net/bugs/874130 [12:17] jamespage, source code is mjuch less confusing now. [12:17] with only one program that looks like it will run tests in src/ [12:17] smoser: yes it will [12:17] I had left all the different ways I though about running tests in the branch - sorry [12:17] it did confuse things [12:18] but you are the first person other than me to look at the code - I think I just blanked them out [12:19] jamespage, and i just saw my inbox. . hooray for core dev. [12:20] smoser: ta [12:20] zul: when you start your day could do with a review of bug 874135 [12:20] Launchpad bug 874135 in dovecot "mail-stack-delivery does not install postfix->dovecot sasl authentication with dovecot 2.x" [Undecided,New] https://launchpad.net/bugs/874135 [12:21] zul: a bit of a pita but I think the fix is good [12:21] New bug: #874135 in dovecot (main) "mail-stack-delivery does not install postfix->dovecot sasl authentication with dovecot 2.x" [Undecided,New] https://launchpad.net/bugs/874135 [12:24] * RoyK tried upgrading his home server to 11.10 and found netatalk failing completely, rolling back to lucid.... [12:36] Hi, all. I'm a little confused about the Ubuntu Cloud Infrastructure stuff. If I wanted to deploy OpenStack to a group of servers, do I use Orchestra and Juju? Or is there another way that I'm missing entirely for Ubuntu Cloud Infrastructure? [12:37] jamespage: you dont need me to upload it anymore :) [12:37] zul: I don't - I just want your opinion on the changes to the mail-stack-delivery configuration [12:37] jamespage: ahhhh thats different [12:41] jamespage: lemme know when you have something [12:43] zul: http://paste.ubuntu.com/707967/ is my proposed dovecot configuration [12:43] based on reading: http://wiki2.dovecot.org/HowTo/PostfixAndDovecotSASL [12:43] and reviewing the 1.2.x configuration in natty [12:45] Or is there a specific CD image for Ubuntu Cloud Infrastructure? [12:48] jamespage: looks good [12:48] zul: appears to work OK [12:48] I can see the socket being created and suchlike === med_out is now known as medberry [12:52] enmand: we are a little behind on the documentation of the process for orchestra and juju. I believe kim0 is working on this as we speak [12:55] zul: OK - I'm pretty happy thats all working OK [12:55] jamespage: ok fire one off [12:56] enmand: watch for a blog post on cloud.ubuntu.com about this in the next few hours [13:04] nijaba: ah, great. That would have notes on Ubuntu Cloud Infrastructure and OpenStack and all that as well [13:06] what do brackets mean in output of ps ? [13:13] New bug: #874192 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/874192 [13:14] orudie: kernel process === MagicFab is now known as Guest82646 [13:21] smoser: was out yesterday, here today [13:22] hallyn_, is it possible to make 'shutdown', 'poweroff', 'halt' or 'reboot' work correctly in lxc container ? [13:22] <_ruben> orudie: from the manpage: "Sometimes the process args will be unavailable; when this happens, ps will instead print the executable name in brackets." [13:24] smoser: in a *lxc* container, yes. libvirt-lxc, perhaps not. [13:25] a piece of kernel functionality is missing, so lxc emulates it by watching the guest's utmp [13:25] libvirt-lxc probably doesn't do that, so it has no way of telling what a guest is doing [13:26] weekend begins!! [13:27] hallyn_, you gonna fix that by the end of the day ? or should i give you till Monday. :) [13:32] no rush or anything :) [13:37] New bug: #874209 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/874209 [13:37] smoser: no, if you want that fixed, push dlezcano on #lxcontainers to push the kernel container reboot patchset [13:38] (or use, as stgraber calls it, "a real lxc" :) [13:38] hallyn_, i was willing to give you till monday [13:38] dont' be rude [13:38] :) [13:38] i appreciate that [13:39] smoser: let me think a bit on whether there might be an easy way to fake it [13:39] (but i suspect not, else lxc woldn't go tot he trouble to watch utmp) [13:40] i'd think that 'kill -9 1' would result in "halt" [13:41] Ahhhhhhhhhhhhhhhhhhhhhhhhhh [13:42] * koolhead17 pours a glass of water to coll down Daviey !! [13:43] * RoyK hands Daviey a towel [13:44] So i did an do-release-upgrade in natty, seemed to complete ok until after reboot where it freezes after adding swap ( http://dl.dropbox.com/u/30654423/oneiric_bootfail.PNG ) how could i debug this? I tried recovery mode and it went with remount and resume :[ [13:44] *went ok [13:46] * RoyK thinks 11.10 isn't really good enough yet [13:46] smoser: kill -9 from inside the container will not kill the init process. [13:47] biab [13:51] w00, your issue is probably not related to swap [13:52] you can try booting with 'verbose', which will flood you with much more information. [13:53] hm, let's see [14:11] New bug: #874245 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/874245 [14:17] New bug: #874251 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/874251 === JanC_ is now known as JanC [14:50] Good morning. Anybody have a good suggestion for a GUI Database program that can connect to MySQL and MSSQL? [15:36] New bug: #874339 in openldap (main) "package slapd 2.4.23-6ubuntu6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1" [Undecided,New] https://launchpad.net/bugs/874339 [15:55] * koolhead17 wonders what happened to bzr branch lp:openstack-dashboard [15:55] :( [15:56] soren: around [15:57] it moved to github [15:59] i thought we had planned to sync the same on launchpad :( [16:01] zul: so i should modify the docs pointing github now? [16:01] k [16:01] yes [16:02] New bug: #874368 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/874368 === medberry is now known as med_out [16:16] New bug: #874389 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/874389 [16:18] Sure are a lot of duplicates of that samba bug. [16:41] New bug: #874414 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/874414 === MagicFab is now known as Guest60106 [17:21] jamespage: could I get you to sponsor http://people.canonical.com/~serge/bacula-gawk.debdiff for me (for bug #645082)? [17:21] Launchpad bug 645082 in bacula "bacula misses requirement of gawk" [High,In progress] https://launchpad.net/bugs/645082 [17:21] * hallyn_ biab [17:25] utlemming: ping the arm images are armv7 right? [17:26] zul: yup [17:26] the arch type is "armel" [17:28] New bug: #874439 in krb5 (main) "canonicalize fallback bug in krb5-user prevents ssh with older KDC" [Undecided,New] https://launchpad.net/bugs/874439 [17:28] utlemming: thanks thats what i thought [17:28] zul: are they not working for you? [17:29] utlemming: they are...im just going to get nova to recognize it as an armv7 rather than i386 [17:30] zul: ah, that might be a prudent idea :) [17:59] hallyn_, SpamapS why do you think https://code.launchpad.net/~serge-hallyn/ubuntu/natty/lxc/fix-restart/+merge/70064 should be marked merged? [17:59] where was it fix-commited to? [18:01] smoser: i don't understand your question. [18:01] SpamapS, said "Serge, please mark this as merged.. I don't know why but LP won't let me do it." [18:01] where was it merged to ? [18:01] it seems to me fixe dno where. [18:01] it was pulled fixed from upstream [18:02] i don't know why we would care about marking it merged or not at this point [18:02] just leave that lie i'd say [18:02] I think it would be equally valid to just delete the MP, since the upload is now in the archive [18:03] why do you think the upload is in the archive? [18:03] smoser: devpts is not in the templates (except the fedora one, which is new) [18:03] the fix came in bc i sent hte patch upstream [18:04] hmm, is jamespage out for the week? === jdstrand is now known as jdstr [18:05] hallyn_, ok, then, do you expect that to be SRU'd to natty ? === jdstr is now known as jdstrand [18:05] james was in earlier today. [18:08] smoser: i think we tried already SRUing to natty, but noone would test? [18:09] ah. i see that now. [18:10] zul: could I get you to sponsor http://people.canonical.com/~serge/bacula-gawk.debdiff for me (for bug #645082) in place of jamespage? [18:10] Launchpad bug 645082 in bacula "bacula misses requirement of gawk" [High,In progress] https://launchpad.net/bugs/645082 [18:19] Hi all, bear with me as this is actually my first ever experience with IRC (and yeah this is pretty sad for being decently tech savvy). But anyways, I'm looking for a bit of an idea as to what is the best way to set up one's partitions on a ubuntu server to enable data migration, updating, physical server migration, data backup/recovery, security, and all that kind of good stuff. [18:20] I'm sorry to say, that it's sort of a "how long is a string?" question. [18:20] Also, welcome aboard on IRC - we're still "kickin' it" ;) [18:20] I'd definitely utilise LVM if data migrations are your primary consern [18:21] I guess they generally aren't a major concern [18:21] so i guess let me give you some context to this issue [18:21] maybe that'll help [18:21] might :) === hazmat is now known as hazaway [18:23] I'm a student working as the primary web app (and associated server) developer at my college and several of the open source solutions (specifically Kaltura and BigBlueButton) are linux only. I personally wouldn't like to use the canned vmware images (servers are all vmware instances) because I want to know what's going on. [18:23] Plus i have to be able to explain how to do all of this because in a year when i graduate (if they don't hire me) that leaves them with nobody with linux knowledge [18:24] there are several people who could figure out stuff but in terms of doing it from scratch i've got to write all the guides and manuals to explain to them how to deal with it [18:25] and as the problem is that if it breaks they don't have anyone i want to design it rock solid so it A) doesn't break and B) if it does break is easily recoverable and/or movable [18:31] any thoughts @ersi? [18:53] are you guys the ones who do the oneric-server netboot images? [18:54] i've been trying all morning to pxe oneric and it consistently fails on network interface detection, and locks up my keyboard, can't switch to a tty or sysreq [18:54] any ideas? [18:56] New bug: #874518 in openssh (main) "ssh fails after upgrade to 11.10" [Undecided,New] https://launchpad.net/bugs/874518 [18:56] New bug: #874520 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/874520 === hazaway is now known as hazmat === koolhead17 is now known as koolhead17|zzzZZ === erichammond1 is now known as erichammond === med_out is now known as medbrry === medbrry is now known as medberry [20:24] I'm trying to allow a user to execute "sudo blkid" without a password. I've added this line to the sudoers file: joe ALL= NOPASSWD: /sbin/blkid      But, it still is prompting me for a password. Anyone see my mistake? [20:25] kaje: if I remember correctly sudo /sbin/blkid should work fine in this case - so the command must match exactly [20:27] Tried that… sudo is still asking for a password [20:30] Gah, it was because of where I was putting the line in the sudoers file [20:31] I was putting it above the %admin ALL… line and the %admin line was wiping out previous lines [20:32] New bug: #491637 in asterisk (universe) "SIP responses expose valid usernames" [Undecided,Confirmed] https://launchpad.net/bugs/491637 === skrewler_ is now known as skrewler [20:36] kaje: thx for reporting back - I didn't know about that either :-) [20:37] New bug: #705014 in asterisk (universe) "CVE-2011-0495: AST-2011-001: Asterisk: Stack based buffer overflow by forming an outgoing SIP request with specially-crafted caller ID information" [Medium,Fix released] https://launchpad.net/bugs/705014 [20:51] New bug: #874611 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/874611 === Guest60106 is now known as MagicFab === MagicFab is now known as Guest43626 [21:40] for i in *; do echo hi $i ; done [21:47] New bug: #849669 in glance "api.log has incorrect permissions" [Undecided,Fix released] https://launchpad.net/bugs/849669 [21:49] Hello guys, I'm setting a PPPD server, mgetty is continuosly restarting, anyone has a clue on why? [21:50] "Peer is not authorized to use remote address" kind of msg === medberry is now known as med_out [22:52] New bug: #874661 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/874661 [22:52] Bonjour hello. Someone has given me a complete .tar of server. I'm curious of how i am supposed to use this. Is there a way i can compile it into a ISO or something? [22:59] Theycallmeishmae, you can download an ISO at http://www.ubuntu.com/download/server/download [23:00] enmand_ that's not my problem. I have a full server backup of Ubuntu. How do i use it? Like a .tar of the entire OS [23:00] Oh, sorry, I misunderstood [23:00] You have a full .tar backup of everything? [23:01] Correct enmand_ [23:01] i.e. you did something like tar xzf backup.tar.gz / [23:01] ? [23:02] It wasn't mine enmand_ someone gave it to me.It has the full OS in it. [23:02] OK. I would suggest installing Ubuntu server from the ISO download above, then pick and choose the files you want from the .tar file [23:04] I need the whole OS. It's highly customized. :/ [23:04] boot live, mount /, tar xzf to / [23:04] then grub-install [23:04] done deal [23:05] assuming you only have one partition, multiple partitions will be more complicated [23:05] and if /etc/fstab uses uuids, you'll have to change them [23:05] but otherwise [23:06] a tarball isn't the best way to do a full server backup though [23:06] Still no word on documentation for Orchestra and Juju deployments of OpenStack or the Ubuntu Cloud Infrastructure stuff? [23:06] much easier if you make an image [23:15] Or really any Ubuntu Cloud Infrastructure deployment docs [23:15] Heh [23:21] New bug: #874677 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/874677