[00:01] what's your error? [00:01] that's an excellent question, this erlang stuff is pretty inscrutable [00:01] <- digging through logs now [00:03] I thought at first that it miht be a hostname thing like https://bugs.launchpad.net/ubuntu/+source/rabbitmq-server/+bug/653405 [00:03] Launchpad bug 653405 in rabbitmq-server "rabbitmq-server fails to start if hostname is unresolvable or has changed since first starting" [Undecided,Confirmed] [00:03] the symptoms are all the same [00:04] but I haven't monkied with the hostname [00:04] and resetting it to the apparently required "localhost" doesn't seem to help [00:06] I guess it could still be the problem, EC2 name resolution is notoriously weird [00:08] I'm sure erlang is neat and all, but having to learn yet another language just to figure out how to troubleshoot my chef-server installation is a bit annoying... [00:12] interesting. If I nuke the existing (suppoedly empty) datadir it starts right up [00:21] alright, well that seems to have gotten around the problem [00:33] so, I keep getting this warning on preseed installs that say I must create a "Reserved BIOS boot area". [00:33] but I cannot find a single reference on how to create this in a preseed file. it's only needed for gpt parts and the preseed also ignores specifying other partition lables, such as msdos [00:35] is this useful: http://jasonschaefer.com/archives/190 [00:35] I haven't used preseeds in a long time, but if you could setup the partitioning as described there, it seems like you would be good to go [00:37] I wouldn't be surprised though if the preseed stuff hasn't had the bits needed to fully support gpt put in yet [00:48] yeah, that's manual though [00:48] what I need to figure out is how to create a partition like that in partman [00:48] or how to get partman to use a msdos label [00:49] if [ `python2.7 -V` == "python 2.7" ] ;then echo "true"; fi [00:49] I want to test the command "python2.7 -V" to see if it returns "python 2.7" [00:49] how can I do this [00:50] that looks fairly close [00:59] simpler; $V=`python2.7 -V` [00:59] How do I store the string which is returned on running that [00:59] in $V [00:59] right now it says = is not found [01:00] v=`foo`, you ought to check out a beginners shell scripting guide [01:03] yeah but then echo $v [01:04] prints out nothing [01:04] heh [01:07] sorry [01:07] its just if I read the manual for every programming language I ever wanted to use [01:07] well [01:07] yeah i think you know how that would end [01:08] you would be me? [01:08] try quoting the backticks [01:09] if [ "`python2.7 -V`" == "python 2.7" ] ;then echo "true"; fi [01:09] c, c++, c#, several asm, fortran, forth, perl, php, lisp, pascal [01:09] I think that list is getting shorter as I get older, memory loss :( [01:09] though that will theoretically always be a 2.7.x binary though [01:10] smarter way to check if python 2.7 is installed? [01:10] use whereis [01:14] no good as it gives output for both python2.6 and python2.7 [01:40] anyone any good with ISPConfig? [02:15] if I'd like a variable which returns the particular OS name for any POSIX system... [02:15] what would that var be? [02:18] or what would i used to return "ubuntu 10.04" [02:33] well, in LSB Linux distributions you can use "lsb_release -d" [02:35] how to install vbox guestaddtion on ubuntu ? [02:43] Is it possible to have a folder in /var/www/ that symlinks to somewhere else and still be accessible to http? [03:35] does netstat show you outgoing and incoming ports? or am i confused? [03:40] brainysmurf: not sure if you are confused, but yeah netstat -a even better [03:40] RamJett even better as in more info than just incoming and outgoing? [03:41] I'm trying to sort out if my connections are being refused due to something on my server or the firewall [03:43] lots of LISTEN too .. -a is suppose to be (all) is a alias for --all [03:48] i'm an idiot, what does listen mean :) [03:48] netstat won't show any firewall rules. Do something like "iptables -vL" or "iptables -vvL" for even more info [03:53] how to install vbox guestaddtion on ubuntu ? [03:53] how to install vbox guestaddtion on ubuntu ? [03:56] in ubuntu 10.04, I installed postfix-tls, but this package is missing in 12.04 [03:56] how do I figure out if packagse have been renamed? [03:58] brainysmurf: LISTEN show ports and IP listening. Like if you have a local imap server running you would see something like this " tcp ip.xx.xx.xx.xx:port 0.0.0.0:* LISTEN .. but if iptables of firewall type rules are blocking it. It will still be LISTEN .. the rule would just block it on the INPUT [03:59] RamJett thanks for that i'm currently trying to figure out what my firewall rule is just for smtp [04:02] Who's router? Most many ISPs block 25 to end users. They want you to use their smtp [04:03] RamJett I know but my sysadmin insists that isp nor school firewall isn't doing that; I need to prove it [04:04] Hey, anyone able to troubleshoot a mailserver issue? [04:06] brainysmurf: So are you trying to have box run a smtp engine .. You should see "tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN" on the box [04:08] RamJett: Yes, I am trying to run smtp engine and have that line on the box [04:08] Mail comes in fine but mail does not go out [04:08] postfix reports connection refused and telnet does the same [04:10] Mail does not go out to machines outside of school, but does go out to machines inside of school [04:13] brainysmurf: What box is refusing outside? It might be refusing for other reasons. Like IP reverse lookup. Not sure what your setup is. [04:14] IP reverse lookup is setup: student.ssis-suzhou.net [04:16] So far I havne't found a box that doesn't reject :) [04:16] So YOUR postfix is reporting "connection refused" ? [04:17] yes, mine [04:17] as well as when I telnet [04:17] "telnet: Unable to connect to remote host: Connection refused" [04:18] telnet FROM outside to your postfix to outside smtp ? [04:19] that is "or outside" [04:19] that error happens from the server trying to connect to outside smtp [04:21] Like from your smtp server box. If you do "telnet mail.ramnic.com 25" .. what do you get? [04:21] "Trying 69.178.157.231... [04:21] telnet: Unable to connect to remote host: Connection refused [04:22] try one more time. I'll let you know if it hits [04:22] okay i just tried [04:22] and again [04:23] It never gets to ramnic.com port 25. I would see it [04:23] So it's a firewall issue [04:23] ? [04:24] so it is on the router outbound port 25 from your host. You know your host isn't blocking if it sends to local boxes [04:25] Ah, that's a good point [04:25] You're a king [04:30] For sure not. I'm still hanging out here hoping some picks up on my question. Been waiting all day. I was told to be patient. So I'm trying. [04:55] hurray - no more devel version: DISTRIB_DESCRIPTION="Ubuntu 12.04 LTS" [04:58] erm - I thought release was tomorrow... [04:59] ChmEarl: file a bug ;) [04:59] LOL - I updated from mirrors.kernel.org too [05:02] <___MAX> hi , i am using sakis3g for internet connection but after using apt-get auto remove it ask for chat dependency , so how can i get this dependency or package [05:04] <___MAX> u suckkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk === Gallomimia_ is now known as Gallomimia [05:22] morning all === almaisan-away is now known as al-maisan === al-maisan is now known as almaisan-away === smb` is now known as smb [07:29] anyone knows how to properlyy configure the server for redis so redis won't crash or get killed by oomkiller? [07:38] railsraider, trying will #redis be helpful as well [07:39] i tried no one answered in half an hour [07:40] railsraider: I know nothing about redis. But I do know that you can mess at the kernel end with /proc/.../oom*. Maybe googling for these and redis would help? Although ideally redis would be configured to not need this tuning, and I don't know how to do that or if it's possible. [07:41] thanks rbasak: my swap is disabled this might be the cause for these issues [07:41] is there a way to tell redis not to use the swap unless out of RAM? === almaisan-away is now known as al-maisan [08:28] hi i'm trying to install a downloaded .deb but it is telling me a great many dependancies exist. it won't install these dependancies for me however. how do i make it do that? i asked in not-server channel and they said use software center. servers don't have that :) [08:33] Gallomimia: Is it saying 'but is not going to be installed' [08:33] Or is it saying 'cannot be installed' [08:34] Gallomimia: sudo apt-get -f install [08:34] Gallomimia: see if that grabs what is needed. [08:34] greppy: That usually removes the package that you want to install [08:35] Gallomimia: I would avoid what you're doing if at all possible. Not using a repository is a sure route to a broken system. [08:35] Jeeves_: it's saying not [08:35] Jeeves_: when dealing with dependancies, I usually see that install all the dependcies, after a failed dpkg -i $foo.deb [08:35] not going to be installed [08:35] and not "can't [08:35] (as well as a security risk) [08:36] rbasak: That's BS :) [08:36] Gallomimia: pastebin the output? [08:36] Gallomimia: ok, you can try -f install. [08:36] i downloaded it from a rather trustworthy site with an SSL cert [08:36] the package might even be avail on sources [08:36] But also, installing the packages that it needs manually is fine too [08:36] i dont know. it's folding at home fyi [08:36] Does the trustworthy site not provide an apt repository? [08:36] i don't even know [08:36] Jeeves_: and what about security updates? [08:37] security updates should be downloaded from anonymous [08:37] rbasak, who is doing the release image testing for armadaxp ? there are no test results for the images on the isotracker at all [08:37] ogra_: nfi. I didn't even know that the iso tracker covered it. [08:37] (we usually dont release untested images, would be good if someone could test them ;) ) [08:38] http://pastebin.com/4kQZzsQv [08:38] rbasak: You should monitor those, if you install stuff manually [08:39] so i asked aptitude to install one of these things and it offered to remove 89 other packages [08:40] great. i guess i just don't know jack about the finer points of apt [08:41] Gallomimia: Probably, one of the packages creates that issue [08:42] Gallomimia: sorry you're having trouble. It's not really expected for users to mess with .debs manually. That's what apt is for - it's supposed to be pointed at a repository and work everything out. If your third party doesn't provide one, you need to know about packaging internals (ie. dpkg). [08:42] an issue that needs to be resolved by deleting 89 software packages? sure they're not needed for some other things we installed 2 weeks ago [08:43] rbasak: i'm not too worried about the deeper packaging internals. it tells me the two packages in my pastebin are dependant, which are in turn dependant on a lot of other stuff. install those two and make the shell stop whining at me please. [08:44] Gallomimia: try purging your third party package, which may make your package state consistent again. Then install the dependencies you know about using apt. Then dpkg -i the third party package again. The problem is that by using dpkg -i apt is missing the full story about what you want. [08:45] ogra_: I can't find armadaxp in the iso tracker. Do you have a link? [08:45] rbasak: i think all of this can be avoided. i think this package is in standard repositories [08:45] rbasak, http://iso.qa.ubuntu.com/qatracker/milestones/214/builds in the netboot area [08:48] ogra_: I can grab a board and run that test, but the step-by-step instructions are entirely wrong (panda-specific) so I'll have to be inventive. Which isn't a problem for me, but might be for the validity of any test. [08:49] rbasak, well, someone of the arm server QA team should have added some proper tests (massimo) for that specific board, seems that didnt happen [08:49] i.... think it's installed. but it appears i'm still sofa king lost. [08:50] * ogra_ proposes the arm server QA team should have a beer with the release manager in SF :) [08:50] to plan for Q [08:57] morning o/ [09:05] i need to enable swap again on a machine that it was disabled how do i do that on 10.04 LTS? [09:07] make sure you have a line for it in fstab ... [09:07] then: sudo swapon -a [09:07] jamespage: ping, about bug #986973 after talking with upstream they reckon it's not worth fixing as of yet and recommend to wait to facter 2.0.0, but can't change the status to "won't fix" with my permissions... [09:07] Launchpad bug 986973 in facter "Facter bug causes puppet to become a zombie" [Medium,Triaged] https://launchpad.net/bugs/986973 [09:11] i have this line ogra_ : /dev/sda2 none swap sw 0 0 [09:11] * koolhead17 pokes lynxman- :) [09:11] when i try to swap on it fails: [09:11] swapon: /dev/sda2: stat failed: No such file or directory [09:11] you should instead use the UUID there [09:11] how do i find the uuid? [09:12] use: sudo blkid /path/to/device [09:12] ogra@horus:~$ grep swap /etc/fstab [09:12] UUID=2634be76-0cc2-443f-a629-4604a5d09b6d none swap defaults 0 0 [09:12] thats how such an entry should look like [09:12] (with the right UUID indeed) [09:13] i don't have that line [09:13] i miss the uuid [09:13] how do i create that? [09:13] railsraider: blkid [09:13] ok [09:15] i did sudo blkid /dev/sda2 [09:15] there's no uuid in /etc/fstab [09:15] what am in doing wriong [09:16] blkid /dev/sda2 would just give you the UUID for that device. [09:16] you then need to edit /etc/fstab [09:16] lynxman-, so its not really that much of an issue? [09:16] jamespage: it really looks like, in my opinion not worth going through a SRU [09:17] * lynxman- waves koolhead17 [09:17] lynxman-, OK - I'll do the bits then... [09:17] jamespage: thanks [09:17] lynxman-, 1 day to go. :D [09:19] lynxman-, guess thats probably been in the codebase for a while :-) [09:19] greppy: that command didn't output anything [09:20] railsraider: what does 'ls -l /dev/disk/by-uuid/' give you? pastebin it? [09:20] jamespage: it's a marginal problem as well, which can carry some regression issues, that's why it has been targeted for 2.0.0 [09:21] lynxman-, makes sense [09:22] greppy: http://pastebin.com/haqU0Kjb [09:23] railsraider: you don't have a /dev/sda2 [09:29] ivoks: around? [09:30] greppy: i disabled swap on that machine long time ago and now i need it back [09:31] maybe its in /proc? [09:31] railsraider: check your disk, make sure that it has a swap partition. [09:37] greppy: how do i add the swap manually ? [09:37] i have sdc1 which is 16GB [09:37] i have the uuid from it [09:37] railsraider: you want to use sdc1 as your swap? [09:37] yes [09:38] i think that used to be the old swap [09:38] railsraider: mine looks like this [09:38] UUID=0ae26ab8-0a8c-47c5-aa8a-6582eec84a1d none swap sw 0 0 [09:38] change the UUID=... to match your UUID for sdc1 [09:38] is this in /etc/fstab? [09:39] yes [09:40] Daviey: yes [09:41] ivoks: is bug 927594 still accurate ? [09:41] Launchpad bug 927594 in openstack-dashboard "local_settings.py is in /etc, but wsgi is including it from other location" [Undecided,Confirmed] https://launchpad.net/bugs/927594 [09:41] Daviey: i don't think so... [09:42] ivoks: it looks fixed, but wanted to check [09:42] Daviey: i need to check it, give a minute [09:42] $ ls -alh /etc/openstack-dashboard/local_settings.py [09:42] -rw-r--r-- 1 root root 4.2K Apr 23 09:28 /etc/openstack-dashboard/local_settings.py [09:42] how about /usr/share/openstack-dashboard/local/local_settings.py [09:43] dammit, no [09:43] but that's not a problem anymore, i believe [09:43] cloud-live works without that link :) [09:44] let's install it :) [09:44] local_settings.py -> /etc/openstack-dashboard/local_settings.py .. aha! [09:45] /usr/share/openstack-dashboard/openstack_dashboard/local/local_settings.py .. it is fixed! [09:45] thanks [09:45] ok then [09:46] ivoks: are you doing the memcache fix in cloud-live [09:46] ? [09:46] sed -i "s|CACHE_BACKEND.*|CACHE_BACKEND = 'memcached://127.0.0.1:11211/'|g" /etc/openstack-dashboard/local_settings.py [09:46] yes [09:47] thanks greppy ! [09:50] railsraider: so that worked for you? [09:51] i think so [09:52] cool [10:05] ivoks: looking to put http://pb.daviey.com/qKej/ in precise.. happy with that? [10:16] Daviey: well, if you must... i'll update cloud-live then === al-maisan is now known as almaisan-away [10:21] hello all, whoever helped me yesterday - thanks! [10:21] i have a query regarding the organisation of users and groups however [10:21] i have inherited a server (ie not setup by myself) and it appears the group permissions are a bit of a mess [10:22] it seems that when users create files or folders in the shared area's on the server, other users cannot read or edit them, as each users has his/her own group which is the same as the username [10:23] is this right?? i have to keep changing the ownership to something more neutral so that filesharing can resume, its very annoying! i have read through the documentation but i'm not 100% sure on the best way to resolve this, can anyone offer advice? thanks in advance! [10:26] samuel_: if this is samba, look at force user and force group [10:27] samuel_: if it's NFS or some other native linux protocol, look at acl [10:27] acl and umask [10:27] ivoks: it won't break cloud-live, as it'll override existing values :) [10:28] samuel_: I think you want the sgid bit. Take a look at http://en.wikipedia.org/wiki/Setuid#setuid_and_setgid_on_directories [10:28] ivoks: really.. carrying what should be patches in cloud-live isn't ideal, right? :) [10:28] hi, sorry i did not give specifics, i'm using ubuntu server 10.04, sharing files with windows and linux users. it appears that each user belongs to a group that is the same as the username, and when they create a file, it is owned by them, and other users are unable to view them [10:29] Daviey: i don't consider it a patch... it's more usecase scenario [10:29] while each user is a member of a common group, the common group is not used for ownership when files are created [10:30] i will check out the link posted and read up on acl, thanks for throwing a bone! :D [10:30] samuel_: yeah the sgid bit will do what you need [10:30] samuel_: acl (getfacl/setfacl) and force user and force group in samba are answers to your questions [10:30] i can just assume you are talking about samba [10:30] ivoks: that would work, but sgid is simpler and the more universal to this problem. [10:30] *more universal answer [10:31] ah, right... [10:31] ivoks: well the current horizon seems to log people out very regular, which is sucky.. we need to use memcache. [10:31] well the files are being added and edited using either nautilus or windows explorer (in the case of the windows users) [10:31] samuel_: that's irrelevant... what's relevant is what service is sharing those files [10:34] ok, thanks for the advice [10:34] its samba fyi [10:35] then you can use sgid, as rbasak told you, or force user and force group in smb.conf; it really depends on what you want [10:45] ok i will look into both and decide which is best, thanks! [11:12] alamar, hi [11:20] Hello I need to bridge eth0 and eth1 to allow internet on server2 through server 1, I know how to do that but I have to assign 4 ips to server 1 and 6 to server 2, Do I alias the bridges and repeat? [11:26] robin: just add multiple addresses to the bridge interface. That should work fine. [11:26] rbasak how do I do that ? [11:27] rbasak as you can only add one address per iface... so do I alias and make like 4 bridges ? that doesnt seem right [11:28] robin: just add "up ip addr add 1.2.3.4 dev br0" to your br0 line for each extra IP. [11:28] robin: that's what I do anyway. I don't know if there's a better way. [11:29] robin: no need for extra bridges [11:29] *to your br0 stanza [11:37] rbasak thanks for helping what is the dev tag for ? pastie of my interfaces http://pastebin.com/cMXkJvpT [11:39] hola [12:00] Hi. Do anyone know about if it's possible to use ssd disks as cache for harddrives? === mrevell_ is now known as mrevell [12:12] sanderj: you might be interested in http://bcache.evilpiepirate.org/ although it looks like it's not production-ready - you'd need to be a developer to try it. [12:15] rbasak, thanks :-) [12:33] good morning [12:34] zul: morning! :) === matsubara-afk is now known as matsubara [13:14] thanks to all that helped me earlier! i used the setgid just for the shared area and its working fine now [13:17] samuel_: \o/ [13:19] altering the samba.conf is not something i wanted to do on a server that is in constant use, but i will remember that for future === dendro-afk is now known as dendrobates [14:02] on a stock install (say 11.04), is there anything outside of openssh-server's post install that creates ssh host keys? === railsraider__ is now known as railsraider [14:58] I have some network issues here. [14:58] How do i release an ipv6 address? [15:11] j launchpad-ops [15:28] does anyone here understand why nagios-nrpe-server wants to install mysql? [15:33] claude2: it shouldn't... let me take a look here [15:34] mysql-common comes up in the additional packages [15:44] claude2: mysql-common is needed for libmysqlclient [15:44] claude2: it needs /etc/mysql/my.cnf [15:44] Pici: ^^ [15:45] ohh to check the status of a mysql server? [15:45] precisely [15:45] claude2: Aye, I was just going to say that nagios-plugins-standard recommends libmysqlclient16 [15:45] ohh ok. well that's not the end of the world i guess [15:46] thanks guys! [15:46] claude2: You could choose not to install recommends if you prefer. [15:46] claude2: consider not installing with recommends on servers.. sometimes it can be a bit overkill :) [15:46] ohh interesting. there is a lot in there, and we are trying to keep these machines minimal [15:46] ill give that a try [15:48] * Pici hits apt-repends with a stick a few times [16:00] anyone got MAAS working? I keep checking the wiki but it just says "when we have a working avahi live cd". [16:21] Somebody please kill me: https://gist.github.com/2491036 [16:29] New bug: #975464 in maas "document that nodes are brought up without security groups or firewall rules" [High,Triaged] https://launchpad.net/bugs/975464 [16:29] New bug: #975472 in maas "add high level design document(s)" [High,Triaged] https://launchpad.net/bugs/975472 [16:29] New bug: #988301 in lxc (universe) "lxc-ubuntu fails if no name is provided" [Undecided,Won't fix] https://launchpad.net/bugs/988301 [16:29] New bug: #988325 in mysql-dfsg-5.0 (universe) "mysql-server should not stop mysql service" [Undecided,New] https://launchpad.net/bugs/988325 [16:29] New bug: #988374 in bridge-utils (main) "brctl setportprio fails silently" [Undecided,New] https://launchpad.net/bugs/988374 [16:29] New bug: #988397 in autofs5 (main) "Autofs does not clean up /proc/mounts when stopped" [Undecided,New] https://launchpad.net/bugs/988397 [16:30] New bug: #927594 in horizon (main) "local_settings.py is in /etc, but wsgi is including it from other location" [Undecided,Fix released] https://launchpad.net/bugs/927594 [16:31] New bug: #988173 in maas (main) "maas-import-isos fails" [Undecided,New] https://launchpad.net/bugs/988173 [16:32] New bug: #988030 in mysql-dfsg-5.1 (main) "package libmysqlclient16 5.1.62-0ubuntu0.10.04.1 failed to install/upgrade: corrupted filesystem tarfile - corrupted package archive (dup-of: 773172)" [Undecided,New] https://launchpad.net/bugs/988030 [16:32] New bug: #988043 in nmap (main) "nmap has no debian/watch file" [Undecided,In progress] https://launchpad.net/bugs/988043 [16:32] New bug: #988070 in mcollective (universe) "Startup script boots several instances of mcollective (dup-of: 918348)" [Undecided,Invalid] https://launchpad.net/bugs/988070 [16:33] New bug: #987535 in horizon (universe) "Javascript under /static/horizon isn't served" [Undecided,Fix released] https://launchpad.net/bugs/987535 [16:33] New bug: #987770 in lxc (universe) "lxc-start: wrong terminal size" [Wishlist,Confirmed] https://launchpad.net/bugs/987770 [16:33] New bug: #987930 in juju "MAAS provider - Failure to bootstrap when no port is specified for maas-server" [Undecided,Confirmed] https://launchpad.net/bugs/987930 [16:33] New bug: #987939 in gwt (universe) "Please remove GWT from Precise" [High,Fix released] https://launchpad.net/bugs/987939 [16:34] New bug: #974613 in glance "Glance database issues after upgrade : 1054, "Unknown column 'images.protected' in 'field list'"" [High,Invalid] https://launchpad.net/bugs/974613 [16:34] New bug: #987772 in asterisk (universe) "[FFe] Update to asterisk 1.8.10.1 for security fixes" [Undecided,Fix released] https://launchpad.net/bugs/987772 [16:35] New bug: #971318 in maas-enlist (main) "Unable to create MAAS server from the Precise beta 2 CD" [Undecided,Fix released] https://launchpad.net/bugs/971318 [16:35] New bug: #987293 in maas-provision (universe) "wrong file specified to dh_apparmor" [High,Fix released] https://launchpad.net/bugs/987293 [16:35] New bug: #987714 in lm-sensors (main) "package libsensors4 1:3.3.1-2ubuntu1 failed to install/upgrade: conffile './etc/sensors.d/.placeholder' is not in sync with other instances of the same package" [Undecided,New] https://launchpad.net/bugs/987714 [16:35] New bug: #987752 in bacula (main) "package bacula-fd (not installed) failed to install/upgrade: a tentar sobre-escrever '/usr/share/man/man8/bacula-fd.8.gz', que também está no pacote bacula-client 5.0.2" [Undecided,New] https://launchpad.net/bugs/987752 [16:36] bugs :( [16:36] New bug: #986056 in clamav (main) "no freshclam,internal logger error" [Undecided,New] https://launchpad.net/bugs/986056 [16:36] New bug: #987265 in maas-provision (universe) "apparmor profile is disabled on install, but should be enabled" [High,Fix released] https://launchpad.net/bugs/987265 [16:36] New bug: #987374 in maas-provision (universe) "apparmor denials when using 'maas-import-isos'" [High,Fix released] https://launchpad.net/bugs/987374 [16:37] New bug: #791758 in dovecot (main) "CVE-2011-1929 and Dovecot 1.0.10-1ubuntu5.2 in Hardy" [High,Invalid] https://launchpad.net/bugs/791758 [16:38] New bug: #978999 in cobbler (main) "command injection on the host via the xmlrpc api" [Undecided,Confirmed] https://launchpad.net/bugs/978999 [16:38] New bug: #979159 in quantum (universe) "Several installation error issues" [High,Fix released] https://launchpad.net/bugs/979159 [16:38] New bug: #987371 in linux (main) "unconfined containers are not starting" [Undecided,Fix committed] https://launchpad.net/bugs/987371 [16:39] New bug: #987426 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1" [Undecided,New] https://launchpad.net/bugs/987426 [16:40] New bug: #979190 in quantum (universe) "Missing upstart scripts" [High,Fix released] https://launchpad.net/bugs/979190 [16:40] New bug: #979192 in quantum (universe) "FFE: Separate agent binaries in different packages" [Medium,Fix released] https://launchpad.net/bugs/979192 [16:40] New bug: #980915 in maas "/var/log/maas/maas.log has weird permissions" [Low,Fix released] https://launchpad.net/bugs/980915 [16:40] New bug: #980970 in maas (main) "We should be able to reconfigure the MAAS DEFAULT_URL easily" [Critical,Fix released] https://launchpad.net/bugs/980970 [16:40] New bug: #981103 in maas (main) "ProtocolError on node.save in maas shell" [Critical,Fix released] https://launchpad.net/bugs/981103 [16:40] New bug: #981282 in maas (main) "Upgrade fails if services are not running" [Critical,Fix released] https://launchpad.net/bugs/981282 [16:40] New bug: #984427 in maas (main) "pserv.yaml misses to enclose in quotes Cobbler's password" [Low,Fix released] https://launchpad.net/bugs/984427 [16:40] New bug: #987267 in ntp (main) "package ntp 1:4.2.6.p3+dfsg-1ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1" [Undecided,New] https://launchpad.net/bugs/987267 [16:41] New bug: #975442 in maas-provision (universe) "add apparmor profile for cobblerd" [High,Fix released] https://launchpad.net/bugs/975442 [16:41] New bug: #981478 in maas (main) "Need 'ethtool' package included in preseeds for WOL" [Medium,New] https://launchpad.net/bugs/981478 [16:41] New bug: #984309 in maas (main) "DEFAULT_MAAS_URL is lost on package upgrade" [Critical,Fix released] https://launchpad.net/bugs/984309 [16:41] New bug: #985094 in maas-provision (universe) "please don't ship /usr/sbin/tftpd" [Medium,Fix released] https://launchpad.net/bugs/985094 [16:41] New bug: #986943 in quantum (universe) "package quantum-common (not installed) failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 (dup-of: 979159)" [Undecided,New] https://launchpad.net/bugs/986943 [16:41] New bug: #987207 in puppet (main) "Puppetmaster-passenger will not start after reinstalling due to libapache2-mod-passenger" [Undecided,New] https://launchpad.net/bugs/987207 [16:42] odd - somethings catching up [16:42] New bug: #975454 in maas "complete documentation and man pages" [High,Triaged] https://launchpad.net/bugs/975454 [16:42] New bug: #987120 in samba (main) "package samba-common-bin 2:3.5.8~dfsg-1ubuntu2.4 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 2" [Undecided,New] https://launchpad.net/bugs/987120 [16:43] New bug: #975462 in maas "add ability to use over https" [High,Triaged] https://launchpad.net/bugs/975462 === Lcawte|Away is now known as Lcawte [16:50] SpamapS: ping [16:50] SpamapS: when developing an upstart job / init script, and wanting to try and maintain compatibility of the package with both Debian and Ubuntu [16:51] SpamapS: are there any best practices? [16:51] SpamapS: ie, do I just need to write both, an upstart job and a sysvinit script? [16:51] kirkland: unfortunately, yes. :-P [16:52] kirkland: even as Debian grows upstart support, you'll still have to support the LCD which is sysvinit [16:52] SpamapS: okay, and what about the debian/rules, to decide whether to install the upstart or sysvinit job? [16:53] kirkland: we were goign to try and fix dh_installinit in wheezy to support having both in a package dir, and just installing them happily to coexist... but that didn't happen... [16:53] kirkland: so for now, you just have to do conditional "is this ubuntu, yes, cp debian/upstart.in debian/upstart" logic [16:53] SpamapS: yuck [16:53] I know [16:54] SpamapS: okay, is there a package example you can suggest? [16:54] I think we could probably build that into dh_installinit .. actually thats not a bad idea. [16:54] SpamapS: yeah, ideally, at dpkg --install time [16:54] kirkland: hrm.. none off the top of my head. [16:54] zookeeper maybe [16:54] nova [16:54] nova is in sync with Debian?! [16:55] SpamapS: it would figure out if upstart is on the system [16:55] SpamapS: and if so, do upstart install [16:55] SpamapS: if not, do legacy install [16:55] kirkland: you'd have to use triggers for that so it fixes things when you install upstart after the jobs, but yeah, that would work. [16:55] SpamapS: right [16:55] SpamapS: most of it [16:56] SpamapS: but we use the same upstart/init script logic you were talking about [16:56] zul: cool, thanks [16:56] zul: I'll have a look [16:59] zookeeper also does it very nicely [16:59] and is in sync w/ Debian [16:59] * SpamapS ^5's jamespage [17:00] if dpkg-vendor --derives-from ubuntu ; then \ [17:00] cp debian/zookeeperd.upstart.in debian/zookeeperd.upstart ; \ [17:00] pretty simple [17:02] * koolhead17 wants to jump from his chair out of frustration :( === al-maisan is now known as almaisan-away === Arc__ is now known as a5m0 === dendrobates is now known as dendro-afk [17:09] SpamapS: that's nice, cool, thanks [17:10] SpamapS: one more packaging question for you, this time python [17:10] SpamapS: I have a package that works well with python2.6 and above, but it's not very happy at all when python2.5 is installed on the system [17:10] SpamapS: any other packages having this issue? what are packagers doing about it? [17:11] New bug: #988421 in nagios-plugins (main) "nagios3 check_load produces no output" [Undecided,New] https://launchpad.net/bugs/988421 [17:11] SpamapS: just using a conflicts << 2.6? === dendro-afk is now known as dendrobates [17:13] kirkland: errr.. why would it matter what was on the system, what matters is what is set to default, no? [17:14] SpamapS: well that's what I thought, but in practice, I'm seeing some strange behavior [17:14] stgraber: would you agree that lxc-init should be in /bin or /sbin, not /usr/lib/lxc ? [17:14] SpamapS: tell me this, can I require one to be the default, within my package? [17:15] stgarber: it's an issue if we switch lxc to be multiarched (as debian does) [17:15] kirkland: I don't think so, but thats beyond my knowledge. You can just explicitly call the interpreter with the highest version available though. [17:15] kirkland: nothing from 2.5 is going to interfere if you run 'python2.6' [17:16] New bug: #977609 in maas (main) "MAAS barfs with 'Internal server error' when clicking on Settings" [Undecided,Incomplete] https://launchpad.net/bugs/977609 [17:18] I think my mom told me I needed to attend more "canonical maas" [17:19] she makes me feel guilty about it too === matsubara is now known as matsubara-lunch [17:30] New bug: #988435 in horizon (main) "Requires memcached to also be installed.. " [Undecided,New] https://launchpad.net/bugs/988435 === StevenR_ is now known as StevenR === aarcane_ is now known as aarcane === dendrobates is now known as dendro-afk === matsubara-lunch is now known as matsubara [18:39] i have a server that seems to be operating fine, has a minimal load average (0.10, 0.16, 0.22), low CPU, has ~52MB RAM free but is using 1.5GB of swap (out of 5GB). why is it swapping so much when it has freem RAM? should this be a concern? [18:56] cjs226, that is hardly enough info [18:57] and I wouldn't call, 52mb enough space to fit 1.5gb of data [18:59] patdk-lap: thx for replying. i realize 52mb < 1.5gb. I'm assuming if the system was truly swapping to the point of using ~30% of swap space, 1) it'd be noticeably slow and 2) the load average would be relevant [18:59] and using all of it's RAM [19:02] load average wouldn't matter [19:02] What's the protocol here for re-asking a question? How long should I wait to ask again? [19:02] loadaverage is a poor method to determin in a system is overloaded [19:03] the whole idea of swap is, it swaps out things that aren't used [19:03] if it starts swapping out things that are used, then you will defently notice it going slow [19:04] can you post the output of "free -m" [19:05] total used free shared buffers cached [19:05] Mem: 7466 7418 48 0 6 93 [19:05] -/+ buffers/cache: 7317 148 [19:05] Swap: 5119 1503 3616 [19:06] hmm, 148megs free [19:06] depends on your disk workload, but that is way too tight for my normal workloads [19:06] I normally need a nice 2gigs in cached [19:09] so, you normally run with 2GB free? [19:09] no [19:09] I normally run with 2gigs in cached [19:09] this is a worker system running on EC2 that we run to exhaust a que of work then is terminated. we're wanting to bleed it dry. [19:10] but cached is just free memory that is being used to speed up the disk [19:10] well, if you don't have any wait i/o %, as long as that stays low, it's ok [19:10] if it's getting high, you might want some more cached ram [19:11] it's something you will have to play with, is you usage i/o heavy? [19:11] if so, you might be able to cut the time in half, by giving it more memory, and saving money overall [19:11] no, we try to stay in ram [19:11] or if it's purely more cpu workload, then it won't matter [19:11] iowait, according to iostat, stays around #% [19:12] er, 3% [19:12] then your likely just cpu bound, or limited by exernal stuff, like tcp connections and wait time [19:13] well, i don't see any slowness at all, I'm just concerned about the amount of swap being used [19:13] so? [19:14] as long as it's not slowing you down [19:14] it sounds like your application loaded a crapload of stuff, but doesn't use it often [19:14] like if it's running mysql, I would say you made your memory buffers too large [19:14] it's keeping idle, rarely used info, in ram, when it could just read it from disk again, as needed [19:15] but in this case, it's reading from disk swap as needed [19:15] no real difference [19:15] that's what I'm thinking as well, I was just wondering if i should be concerned given the amount of swap being used. thx for the info [19:15] now if you where ALWAYS accessing swap, then you DO need more ram [19:15] right [19:15] and if so, I'd assume my iowait would be much higher, correct? [19:16] well, with conventional storage [19:16] well, you would notice pauses [19:16] use vmstat and look at the swapin/out columns [19:16] procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu---- [19:16] r b swpd free buff cache si so bi bo in cs us sy id wa [19:16] 14 0 1544900 55712 5380 79332 19 33 273 215 447 275 10 3 84 3 [19:16] clif@mail-sched-02:/var/log/spanning$ vmstat [19:16] procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu---- [19:16] r b swpd free buff cache si so bi bo in cs us sy id wa [19:16] 0 0 1544900 55844 5388 79360 19 33 273 215 447 275 10 3 84 3 [19:16] clif@mail-sched-02:/var/log/spanning$ vmstat [19:16] procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu---- [19:16] r b swpd free buff cache si so bi bo in cs us sy id wa [19:16] 0 0 1544900 55968 5388 79360 19 33 273 215 447 275 10 3 84 3 [19:16] clif@mail-sched-02:/var/log/spanning$ vmstat [19:16] procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu---- [19:16] r b swpd free buff cache si so bi bo in cs us sy id wa [19:16] 0 0 1544900 55968 5388 79360 19 33 273 215 447 275 10 3 84 3 [19:16] clif@mail-sched-02:/var/log/spanning$ vmstat [19:16] procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu---- [19:16] r b swpd free buff cache si so bi bo in cs us sy id wa [19:16] 0 0 1544900 55968 5388 79360 19 33 273 215 447 275 10 3 84 3 [19:17] !pastebin | cjs226 [19:17] cjs226: For posting multi-line texts into the channel, please use http://paste.ubuntu.com | To post !screenshots use http://imagebin.org/?page=add | !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic. [19:18] doh, sorry 'bout that [19:18] http://paste.ubuntu.com/946182/ [19:18] i just don't see the system using swap in a detrimental way [19:19] even though it's using a good deal of it [19:22] well, that is what swap is suppost to be for [19:22] I never have workloads like that :( [19:23] thx for your help === dendro-afk is now known as dendrobates [20:16] New bug: #988520 in krb5 (main) "After failed auth, subsequent auths in same context fail" [Undecided,New] https://launchpad.net/bugs/988520 === dendrobates is now known as dendro-afk [20:26] New bug: #988527 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: subprocess new pre-removal script returned error exit status 3" [Undecided,New] https://launchpad.net/bugs/988527 [20:39] Anyone here ever linked up an ubuntu server up to a FreeIPA server? I'm trying to figure out how plausible it is, as I already have the FreeIPA server up and running now. === el_seano is now known as el-seano === matsubara is now known as matsubara-afk [21:44] I'm having an issue where sometimes the grub menu timeout is ignored and clients "stick" at the grub boot menu [21:44] 12.04 === Lcawte is now known as Lcawte|Away [23:26] I have an issue where grub sticks at the boot menu on the first reboot after a pxe install [23:26] never timing out