/srv/irclogs.ubuntu.com/2013/03/14/#ubuntu-server.txt

stgraberhallyn: made any progress on your side?01:47
hallynstgraber: no.  only more confirmation that the most likely time for my machines to not boot several times per day is during effing freezes02:16
stgraberhallyn: heh02:17
hallynwell i see one bug immediately, but it's not the cause of your troubles02:17
stgraberhallyn: it's really odd, the problem I see here is handler->conf being fine in start.c but being wrong in lxc_command_mainloop_add (commands.c)02:18
stgraberhallyn: though it looks like the struct is passed fine, so I can't really explain it02:19
stgraberso anything that's a result of lxc_command_mainloop has the value as -1, but even after the lxc_command_mainloop_add, the parent (in start.c) still has the correct value locally02:19
stgraberhallyn: not sure if I expressed myself clearly enough, hopefully this may help :) http://paste.ubuntu.com/5612544/02:22
hallynso inside lxc_command_mainloop_add() istself is where you print it out and get -1?02:31
stgraberhallyn: yep02:32
hallynstgraber: ^ also, is there any chance at all that you have libraries or binaries from an old build under /usr/local/bin/ polluting things?02:32
hallynthat's whack :)02:33
stgraberhallyn: nope, I only use packages and they're all the same version I'm affraid02:33
hallynstgraber: and if you print it righth after the lxc_command_mainloop_add inside lxc_poll(), then it's 0 again?02:33
stgraberyep02:33
hallynhave you tried setting lxc.stopsignal = 9 ? :)02:34
hallynwe need one of kees' super-duper memory trackers02:34
hallynwonder if you can set a watch in gdb adn have it run long enough to watch the value change02:34
stgraberhallyn: I haven't tried setting lxc.stopsignal, no, but I can try that02:35
stgraberhallyn: just to be 100% sure, I created a completely clean raring container, installed my test packages in there and I reproduce the issue just fine, so it's not some weird library mix on my machine02:35
stgraberhallyn: just tried with lxc.stopsignal, still get -1!02:37
stgraberhallyn: looking at my debug statements, setting lxc-stopsignal properly replaces all my "0" in a standard run by "9", but I still get "-1" inside lxc_command_mainloop_add and so kill() still uses -1 and fails02:38
stgraberhallyn: http://paste.ubuntu.com/5612581/ not terribly useful if you don't have my patched version in front of you, but that gives you an idea. Basically it's init at 0, then set to 9 and remains like that except within lxc_commands02:39
hallynboggle02:40
hallynstgraber.  one funky idea.  can you just add '#include conf.h' at commands.c?02:42
stgraberhallyn: it already includes lxc/conf.h02:43
hallynyeah, can you get rid of that and change it to "conf.h"02:43
stgraberok02:43
hallynif that doesn't work, then print out handler->conf->fstab, and handler->name02:45
hallyn(or do that at the same time if you haven't yet compiled :)02:45
stgraberbuild is already running02:45
hallynk02:45
hallynoh look, 14 xfs userns patches from Eric tonight02:46
stgraberhallyn: didn't make a difference. Adding the debug statements. I guess you want that in lxc_command_mainloop_add?02:46
hallynyeah02:47
hallynsee if any of those structs is making sense02:48
stgraber      lxc-start 1363229394.271 DEBUG    lxc_commands - stgraber: debug1: -102:50
stgraber      lxc-start 1363229394.271 DEBUG    lxc_commands - stgraber: debug1: fstab: /var/lib/lxc/tpl-raring-i386/fstab02:50
stgraber      lxc-start 1363229394.271 DEBUG    lxc_commands - stgraber: debug1: name: tpl-raring-i38602:50
stgraberhallyn: ^02:50
hallynstgraber: (you see where I'm going with this :) how about other fields of lxc_conf near the end?02:51
hallyni've just about got a working build for myself02:51
stgraberhallyn: I could try adding another member to the struct after this one, see if that magically fixes stopsignal and breaks the next one02:51
hallynyeah02:52
stgraberhmm, though it's not the last one so that wouldn't make a lot of sense02:52
stgraberanyway, let me get autodev and kmsg, autodev should be 0 and kmsg should be 1 I think02:52
stgraberand they are before/after stopsignal in the struct02:53
hallyni have autodev as 0, and rcfile as NULL02:55
hallynstgraber: the address of stopsignal is different at the call to lxc_command_mainloop_add, and inside of it!02:58
stgraberhallyn: I have autodev as 0 and kmsg as 002:58
hallynand rcfile is not null outside of it02:58
stgraberhallyn: the latter seems weird to me as it should be 102:58
hallyn(but ull inside)02:58
stgraberhallyn: hmm, wth is going on there? :)03:00
hallynnull, not ull :)03:00
stgraberI just added a bit more debug to make sure kmsg is indeed 1 outside of lxc_command_mainloop_add but 0 in03:01
stgraber(if it's also 0 outside, then we have another bug that needs fixing)03:01
hallynstgraber: but that's accidental :)  bc even &handler->conf->autodev is different address03:02
stgraberright, confirmed, kmsg is also affected. So we're just lucky when we happen to get the right value ;)03:03
hallynoh sorry, i see :)03:03
hallynread too fast03:03
stgraber      lxc-start 1363230149.320 DEBUG    lxc_commands - stgraber: debug1: kmsg: 003:03
stgraber      lxc-start 1363230149.320 DEBUG    lxc_start - stgraber: debug12: kmsg: 103:03
hallynand yet, handler and handler->conf have the right addresses03:04
stgrabermaybe that 0 in kmsg is the one I was supposed to have for stopsignal :P03:04
stgraberanyway, I wonder what's messing the end of that struct so badly03:04
hallynit's not the end of the struct03:06
hallynthe addresses are wrong.  so the compiler is messing up the struct between the two files.03:06
hallyni'm printing out 'handler->conf' and '&handler->conf->autodev' in both places - conf is the same, but autodev is off by a bit03:06
hallynAND - sizes are different03:07
hallynhttp://paste.ubuntu.com/5612627/03:07
hallynsome -DAPPARMOR or the like is not being set for both i think03:08
hallyn8 bytes difference, one pointer is in one and not the other03:09
stgraberhallyn: missing config.h include in one of the two?03:11
hallynmy guess is on money is on HAVE_SCMP_FILTER_CTX03:11
hallynhm?03:11
stgraberwe typically get those defines through the autoconf generated config.h03:11
hallynwell commands.c incles that last, tha tmay be the problem03:11
hallyntrying with that moved up03:12
hallynyeah that fixes that!  now lxc-stop just hangs03:13
stgraberhallyn: so just moving config.h above the other includes?03:13
hallynyup03:18
hallynbut like i say then lxc-stop hung,03:18
hallynbut of course that could be one of hte other .c files having the same problem.03:18
stgraberI'm tempted to just patch all our .h and .c to always include config.h as the first thing they do03:19
hallynwell it might be enough to have conf.h and start.h do it03:19
stgraberI guess. Next time I'm bored I'll figure out how to get a nice graph of all the in-project includes then look at making them make a bit more sense ;)03:22
hallynyeah that fixes lxc-stop fully for me03:24
stgraberroot@castiana:~# lxc-start -n tpl-raring-i386 -o debug -l debug -d03:24
stgraberroot@castiana:~# lxc-stop -n tpl-raring-i38603:24
stgraberroot@castiana:~#03:24
stgraberright, same here03:24
stgraberI just added an include of config.h in conf.h and start.h as you suggested03:24
hallynphew03:24
stgraberthat was a fun one ...03:24
hallynhah03:25
* hallyn hopes to now hear that all tests pass :)03:25
stgraberI sure hope so03:27
stgraberhallyn: fix pushed to staging with both of us as sign-off03:29
stgraberhallyn: building clean packages now and making my machine run all the tests so I can hopefully just send the pull request tomorrow morning03:29
stgraberhallyn: I wonder how many other bugs we just magically fixed in the process ;)03:30
hallynor introduced03:31
hallyncertainly a step in the right direction, but that doesn't mean we won't run into other glitches first :)03:32
hallynanyway - thanks!  good night03:32
stgrabergood night!03:32
koolhead17can someone tell me if we have any issue with the cloud archive06:26
=== simplexi1 is now known as simplexio
zetherooanyone with experience working with GlusterFS in Ubuntu?08:40
=== jibel_ is now known as jibel
jibeljamespage, hey08:51
jibeljamespage, is there a plan to backport jenkins 1.480 to 12.04?08:51
eagles0513875hey guys i need some help tweaking spamassassin and amavis, they are working as they should but I am wanting the subject to have ***SPAM*** added to it so when delivered the person who gets it knows its spam but that is not happening any ideas what i need to tweak08:53
histoeagles0513875: spamassasin configs09:16
eagles0513875you want me to pastebin them for you histo09:16
histoeagles0513875: I don't really have time to look right now. I believe it would be in there. but on a second thought.....09:18
eagles0513875?09:18
eagles0513875should i just pastebin them09:18
histoIt should be in your MTA09:18
histoeagles0513875: you using postfix or exim?09:19
eagles0513875postfix09:19
eagles0513875i followed the server guide for 12.0409:20
histoeagles0513875: http://www.akadia.com/services/postfix_spamassassin.html09:21
eagles0513875histo: im a bit confused though what exactly should i be looking at cuz most of the settings seem to be setup by default09:25
histoeagles0513875: That page shows what settings need to be in postfix as well as local.cf for spamasassin09:42
histoeagles0513875: Or you will have to wait for someone else to help I have to go sorry09:43
eagles0513875histo: the ubuntu server guide has them already thanks for your help though09:43
histoeagles0513875: which guide are you following exactly?09:43
eagles0513875histo: https://help.ubuntu.com/12.04/serverguide/mail-filtering.html09:44
buengenioguys, can somebody please recommend a calendaring server/service?10:01
acalvoHas anyone successfully used preseeding using an 12.04 alternate image installer (no ubiquity)?10:51
acalvoFor some reason, it does not even read specified boot parameters10:51
=== t_a_s is now known as tas
xnoxacalvo: one needs to use a different preseed (ubiquity and alternate do it slightly differently)11:10
acalvoxnox, I know, finally managed to get it working11:15
acalvoreally tricky though11:15
acalvohttps://coderwall.com/p/oq1xta helped me a lot11:15
nailorahi there, we upgraded our vm host from ubuntu 10.04 to 12.04 and the following happened:11:26
nailorahttp://nailor.devzero.de/oneshot/2013-03-14/iostat_ios-month.png/02fd5f8c5f1059b7/iostat_ios-month.png11:26
nailoraany idea what could be the reason?11:26
patdk-lapproblably cause of device mapper11:27
nailorait definitely seems to be related to device mapper. any suggestions how we could get back the old performance (or comparable performance)?11:28
patdk-lapactually, maybe not11:31
patdk-lap12.04 machines I have updated in the last week also have that issue11:31
patdk-lapI've been ignoring it, as I figured it might just be cause they got rebooted11:31
=== acidflash_ is now known as acidfalsh
patdk-laphttp://stats.patrickdk.com/iostat_ios-month.png11:37
maxagazhi11:53
maxagazhow to change my server's address from 1.2.3.4:3000 by myservice.mydomain.com ?11:54
nailoramaxagaz: you want your server to be reached when someone enters myservice.mydomain.com in his browser (or other software client)? you need to set up proper DNS entries then. or am i misunderstanding what you want to do?12:01
maxagazyes, I want people to see myservice.mydomain.com in their browser instead of 1.2.3.4:300012:02
maxagaznailora: my subdomain is created on my account at bluehost.com and the server in an Amazon EC2 server12:04
nwillemshi there. I'm trying to setup a small network, and would like to install a DHCP service - I've seen some talk on dnsmasq and dhcp3-server, but what to choose?12:04
nailoramaxagaz: so you know the ip address of your ec2 instance. at bluehost you must configure your subdomain to point to this ip address. i do not know what interface bluehost offers to do this, but the "DNS" and configuration/entries/... should be written all over it.12:10
maxagaznailora: thank you12:13
maxagaznailora: I managed to redirect is display http://myservice.mydomain.com:3000/, but now how can I get rid of :3000 ?12:14
nwillemsHello again. My connection dropped. What is the preferred DHCP service on ubuntu?12:14
maxagazis it something to do with my resolv.conf ?12:15
freddy__hi- I want to give my ubuntu 12-4 nic more than one ip. How do I do that with cli?12:20
nailoramaxagaz: 3000 is the port you connect to. different services (e.g. apache httpd, mysql db server) listen on different ports, and you can probably configure the port in the configuration file of the corresponding service. i dont know what service uses 3000 by default12:21
maxagaznailora: redmine12:22
maxagaznailora: I don't want to change it, just to mask it12:22
nailorahttp://serverfault.com/a/150368 briefly explains how to setup a reverse proxy with apache2 to do exactly that. i dont know if i would recommend reverse proxying to a beginner, though. alternatively you might change mongrel (or whatever webserver ruby/redmine ships) to listen on port 80 (or 443 for https) and you wont need to explicitly mention it in your browser.12:26
=== acidfalsh is now known as acidflash
eagles0513875hey guys I have an amavis spamassassin clamav setup  and i would like he subject to display ***Spam*** yet its not doing that could someone please tell me why its not displaying that tag as part of the subject12:40
jacobweagles0513875: check $sa_spam_subject_tag in /etc/amavis/conf.d/20-debian_defaults12:50
eagles0513875jacobw: this is what i have $sa_spam_subject_tag = '***SPAM*** ';12:51
eagles0513875jacobw: any logs i coudl provide you with12:53
jacobweagles0513875: I'm not sure, that was my only suggestion12:54
eagles0513875jacobw: i followed the ubuntu 12.04 server guid the section on mail filtering12:55
jacobweagles0513875: Do you have a link to that page?12:57
eagles0513875hold on12:58
eagles0513875jacobw: https://help.ubuntu.com/12.04/serverguide/mail-filtering.html12:58
jacobwHave you checked for the headers in the mail that goes through content filter?12:59
jacobwX-Spam-Level, etc.12:59
eagles0513875jacobw: in spamassassin13:02
jacobweagles0513875: No, in the mails that Postfix delivers13:03
eagles0513875jacobw: im seeing in the syslog amavis logs the hits and marks them as spammy13:03
jacobweagles0513875: Send yourself a mail, and check the headers for the X-Spam-Level field13:03
jacobweagles0513875: https://help.ubuntu.com/12.04/serverguide/mail-filtering.html#mail-filter-testing13:03
eagles0513875ok13:04
jacobweagles0513875: See if the X-Spam-Level is high enough to trigger the subject tagging, $sa_tag2_level_deflt13:05
eagles0513875ok13:05
eagles0513875jacobw: there is no spam level in the header at all13:07
patdk-wkmake sure amavis knows the domain is *local*13:08
eagles0513875patdk-wk: where exactly do i look for that as well it functions as the header shows amavis is picking up the emails13:08
patdk-wkin the amavis config file13:09
eagles0513875which one the debian-config one13:09
jacobwCan you paste your syslog messages? And check that mails your looking at have the same Message ID field in the headers as the mails you see in the syslog messages.13:10
eagles0513875mail id matches13:11
eagles0513875jacobw: here is the syslog http://paste.ubuntu.com/5613562/13:12
eagles0513875if you want me to filter it to something specific let me know13:12
jacobwCan you filter it for Amavis lines only?13:13
eagles0513875sure13:15
eagles0513875jacobw: http://paste.ubuntu.com/5613573/13:16
eagles0513875patdk-wk: if it wasnt working locally wouldnt i have errors showing up in my syslog in regards to amavis13:17
patdk-wkwho said locally?13:17
patdk-wka config option that is called *local* has nothing to do with locally13:17
eagles0513875patdk-wk: which file am i to be looking at as amavis has a bunch of then in its conf.d directory13:19
patdk-wkany one you want13:19
patdk-wknormally I put all my customizations in their own file, like 9913:19
jacobwIt's best to use one that isn't a conffile13:19
jacobwLike 99-local.conf or something13:20
eagles0513875patdk-wk: is this what you are referring to$sa_local_tests_only = 0;    # only tests which do not require internet access?13:20
patdk-wkno13:20
patdk-wk@local_domains_acl and it's relatives13:21
eagles0513875i have nothing in my file13:21
eagles0513875at least not that im seeing13:21
patdk-wkor local as selected via sql13:21
eagles0513875jacobw: im using what was told to me via the server docs13:22
patdk-wklocal_domains_*13:22
eagles0513875patdk-wk: single domain setup not using virtual users or anything of that13:22
eagles0513875sort13:22
patdk-wkwell default is to include $mydomain13:22
patdk-wkso if $mydomain is set correctly13:22
patdk-wkit is fine for a *single* domain then13:22
eagles0513875ahh wait13:22
eagles0513875that was in a different file let me find it13:22
patdk-wkbut amavis only modifies emails that are *local*13:23
eagles0513875ok13:24
eagles0513875patdk-wk: i had to set that in a file i forgot which and where13:25
patdk-wkgrep13:26
eagles0513875patdk-wk: found it in the amavis 05-node_id file $myhostname = "mail.faa.org.mt";13:27
eagles0513875that is the FQDN13:27
patdk-wkhmm, that is not $mydomain13:27
NaGeL_Work!webmin13:28
ubottuwebmin is no longer supported in Debian and Ubuntu. It is not compatible with the way that Ubuntu packages handle configuration files, and is likely to cause unexpected issues with your system.13:28
NaGeL_Workhello is there any alternatives to webmin?13:29
eagles0513875humm im doing something wrong with the grep command to find this think13:29
eagles0513875NaGeL_Work: learn the command line :p13:30
NaGeL_Worki'm trying but there area few users who wants a GUI for the server13:30
ogra_NaGeL_Work, https://help.ubuntu.com/12.04/serverguide/zentyal.html13:31
eagles0513875patdk-wk: i dont have it defined anywhere13:33
NaGeL_Workthanks13:33
patdk-wkpersonally I just set, @local_domains_acl = ( ".$mydomain","example.org","example.com", .... );13:34
NaGeL_Workjabber?13:34
eagles0513875patdk-wk: what im lost and confused with is all the config files available13:36
patdk-wkthat is the debian way :)13:37
patdk-wkI ignore all of them, and just add my own13:37
patdk-wkthey are appended in numberic order, so highest number wins13:37
eagles0513875patdk-wk: ahh ok so what do i add to i guess ill use the debian config13:38
eagles0513875and where on earth would i speacify mydomain and how13:38
patdk-wkwell, default config is, 05-domain_id:chomp($mydomain = `head -n 1 /etc/mailname`);13:39
eagles0513875ok so it also has the @local_domains_acl13:40
eagles0513875so i just add mail.domain1.com, mail.domain2.com in quote wiht comma separated13:40
patdk-wkyes, so if you use mydomain, in any other config file, it will be useless, unless you also define local_domains_acl too13:41
patdk-wknot for mydomain13:41
patdk-wkfor local_domains_acl, sure13:41
eagles0513875patdk-wk: like this @local_domains_acl = ( ".$mydomain","mail.faa.org.mt","mail.ambjentahjar.org" );13:42
patdk-wkheh?13:42
patdk-wkuser@mail.faa.org.mt is what you use?13:42
eagles0513875@faa.org.mt but for some reason delivery shows mail.faa.org.mt13:42
eagles0513875let me check something13:42
eagles0513875the problem is that faa.org.mt is pointing to the website on a different server and im a bit worried to break something the main domain that is13:43
patdk-wkheh?13:43
patdk-wkthis controls adding spam headers13:43
patdk-wkif you want spam headers you MUST supply the domain there13:43
eagles0513875ok13:43
eagles0513875basically remove the mail.faa.org.mt what about the 2nd domain13:44
patdk-wkprobably has the same issue13:44
eagles0513875ok they have no been removed should i send another test email13:45
=== wedgwood_away is now known as wedgwood
eagles0513875patdk-wk: that did it now i have a spam flag13:46
eagles0513875my the heck is the server guide incomplete then13:47
patdk-wkwhy programs have their own documentation :)13:48
eagles0513875patdk-wk: which arent any better sometimes though13:49
patdk-wkI haven't had an issue yet13:49
jamespagehallyn, I do still see issues with the /dev/kvm permissions on a fresh raring install of openstack14:07
jamespageits owned root:root with group write permisions14:07
hallynjamespage: ok, thanks.  i'll set everything aside today to get to the bottom of that14:11
hallynunless stgraber has bad reports about the lxc tests14:11
jamespagehallyn, sorry :-(14:12
=== schmidtm_ is now known as schmidtm
stgraberhallyn: everyone looks good for now. I'm finishing a batch of PPA builds to make sure I didn't miss anything, but all the tests succeeded14:13
stgraberhallyn: so I hope to have the pull request out in an hour or so14:13
stgraberhallyn: FWIW, I plan on announcing that we'll be at Plumbers around the time rc1 is tagged and we prepare for the final 0.9. Hopefully I'll have some time to update the wiki before that.14:14
hallyncool.14:15
NetoAtaideshello14:26
NetoAtaidesI'm setting up a LDAP Samba server here14:27
NetoAtaidesI've compiled samba and openldap from source14:27
NetoAtaidesnow I'm having issues regarding creating init scripts for both14:28
NetoAtaidesI'm following instructions from http://www.faqs.org/docs/securing/chap29sec292.html and I cannot figured out what that file /etc/sysconfig/network means14:29
NetoAtaidesI've read that this file only exists on Debian GNU Linux14:29
NetoAtaideswhat about Ubuntu?14:29
NetoAtaidesdoes anyone know?14:34
jacobwNetoAtaides: It doesn't exist on either14:35
jacobwNetoAtaides: /etc/sysconfig is a Redhat thing14:35
NetoAtaidesthis /etc/sysconfig/network file is said to be the Source networking configuration14:35
NetoAtaidesjacobw: and is there a similar file in Ubuntu?14:36
jacobwYou're doing this really hard way, follow this guide and use the Ubuntu packages that have already been built and tested14:36
jacobwhttps://help.ubuntu.com/12.04/serverguide/samba-ldap.html14:36
jacobwNetoAtaides: /etc/network/interfaces14:36
NetoAtaidesI've asked people from openldap channel as I was having trouble with this guide....and they told me to compile the last versions14:37
jacobwNetoAtaides: Most projects will tell you something like that to fob you off14:38
jacobwWhat problems are you having with that guide?14:38
jacobwThis is the right place to ask about the Ubuntu Server Guide :)14:38
NetoAtaidesI've tried with /etc/network/interfaces instead of the sysconfig stuff...14:39
NetoAtaidesand got $ sudo /etc/init.d/ldap start14:39
NetoAtaides/etc/init.d/ldap: 5: /etc/network/interfaces: auto: not found14:39
NetoAtaides/etc/init.d/ldap: 6: /etc/network/interfaces: iface: not found14:39
NetoAtaides/etc/init.d/ldap: 9: /etc/network/interfaces: auto: not found14:39
NetoAtaides/etc/init.d/ldap: 10: /etc/network/interfaces: iface: not found14:39
NetoAtaides/etc/init.d/ldap: 20: [: =: unexpected operator14:39
jacobwOk, remove whatever you compiled yourself (make uninstall or similar)14:39
=== medberry is now known as med_
jacobwAnd start from '14:40
jacobwsudo apt-get install samba samba-doc smbldap-tools14:40
jacobw'14:40
NetoAtaideswell...I don't remember the issues about samba-ldap Ubuntu package...I'll retry it then14:40
hallyngrrr.  qemu64 cpu is not getting vmx.  why?14:41
NetoAtaidesI'll come back if problems appear14:42
NetoAtaidesthanks14:42
=== cronus__ is now known as cronus
sliddjurin file /etc/sysctl.conf line net.ipv4.ip_forward=1 this enable port forwarding ?16:08
sliddjuror this echo ”1” /proc/sys/net/ipv4/conf/eth0/forwarding16:08
jacobwsliddjur: it's to enable forwarding of IP packets not destined for the local host16:10
jacobwsliddjur: i.e. routing16:11
sliddjurjacobw: which one?16:11
jacobwsliddjur: the first one, the second one is for port forwarding16:13
ogra_the second one would just output 1 though16:27
ogra_:)16:27
ogra_you need a > to direct that 1 into the file16:27
sliddjurogra_: yeah was type :)16:28
sliddjurtypo*16:28
sliddjur:P16:28
rbasakjamespage: pretty sure I've got to the bottom of the mongodb problem. Will try a fix tomorrow.17:41
jamespagerbasak, marvellous!17:47
Krankerheyho may someone help me with some server issues on ubuntu ? :P18:31
holstein!ask | Kranker18:42
ubottuKranker: Please don't ask to ask a question, simply ask the question (all on ONE line and in the channel, so that others can read and follow it easily). If anyone knows the answer they will most likely reply. :-) See also !patience18:42
Krankeri have the problem that my mail server is sending me massivly Mail Delivery Fails. And if i put ps aux i get many smtp's also i have got 55k Mails on my email pop... so any suggestion what happen there?18:43
Xarohey all18:44
sarnoldKranker: do the reject messages say why they are being rejected?18:46
Krankerw818:47
KrankerWell just saying it couldnt be deliverd to the adress x@x18:47
Krankerif i put ps aux i have more than 40x times bounce -z -n defer -t unix -u -c18:48
sarnoldis there any more information in your logs?18:49
Krankernothing18:50
Krankeri found a file in /var/mail/18:52
Krankercalled nobody18:52
KrankerMar 14 19:48:27 localhost postfix/smtp[7577]: warning: to prevent loss of mail, turn off command pipelining for 72.34.65.34 with the smtp_discard_ehlo_keyword_address_maps parameter18:53
Krankermail log kinda 600mb big OO18:54
jjlHi, I was wondering if I could get some help getting a tftp server up and running?  Followed ever guide I could find with no luck.  Is this the place to ask a question like that?19:14
kieppiejjl - not sure. dig a bit into the PXE docco's19:40
resnoim having a small issue.20:33
resnoive setup postfix on a host as a smarthost, so it will send email to my mailserver.20:34
resnoi have a app using sendmail, and the emails are sending20:34
lenny__I am running a small file server in my house running ubuntu 12.04. I have been looking online but can't seem to find if a program is available that will allow me to see what files are currently being accessed on my server. thanks for any help.21:15
sarnoldlenny__: /proc/pid/fd/ for a running process will show you the files that process currently has open.21:19
lenny__sarnold: thank you very much :)21:20
sarnoldlenny__: note that small files might be open for way less time than you'd reasonably sleep between polling that list....21:20
sarnoldlenny__: but if you're curious why your cable connection feels supremely slow, it might be useful :)21:20
=== thesheff17_ is now known as thesheff17
=== guampa is now known as Guest47161
=== guampa_ is now known as guampa
=== shirgall_ is now known as shirgall
adam_gjamespage, Daviey http://people.canonical.com/~agandelman/folsom/glance-2012.2.1-0ubuntu1.2~cloud0/22:59
nailorahi there, we upgraded our vm host from ubuntu 10.04 to 12.04 and the following happened:23:14
nailorahttp://nailor.devzero.de/oneshot/2013-03-14/iostat_ios-month.png/02fd5f8c5f1059b7/iostat_ios-month.png23:14
nailoraany idea what could be the reason?23:14
SpamapSnailora: IO scheduler? something else un-bottlenecked, causing busier disks?23:16
sw0rdfish5GB vps is enough to setup znc and vpn right?23:18
sarnoldsw0rdfish: one hopes it is quite overkill :)23:19
sw0rdfishheh23:20
sarnoldnailora: I've got a very vague memory that I've heard about this result before. Sorry I can't recall details..23:20
SpamapS785M    irclogs23:20
SpamapSthats 2 years maybe?23:20
SpamapSof being in 30 - 50 channels23:20
SpamapSso yeah, 5G, plenty of space :)23:20
miu2nanyone know cloud server?23:24
sw0rdfishsarnold, I'm in norway ... will there be much difference in ping times between getting a vps from sweden or netherlands?23:25
qman__I'm experiencing a strange problem and I'm stumped on how to troubleshoot it23:25
qman__I have a server with two NICs in a bond with a bridge, which works great locally23:25
qman__but the KVM guests get a really delayed ARP response23:25
qman__so when their ARP table doesn't have the host, it takes about 10-20 pings before the ARP comes through and it works23:25
sarnoldsw0rdfish: most providers can help you find ping times to their different datacenters; I'd expect nearly anything in europe to be tolerable for an irc proxy :) but if you really care, your providers probably have a host in the datacenter you can ping to measure23:26
qman__pinging the guests from other hosts on the LAN does not experience this issue23:26
qman__it's only when the guests try to communicate out on the LAN23:27
sarnoldqman__: I think I've heard the spanning tree protocol can take a very long time to stabilize routes, and a delay when starting a bridge is normal... look into it, see if that describes your problem?23:27
sw0rdfishsarnold, well the vpn will also be used to transfer large files (my own speed is only 5mbps btw)23:28
qman__well, it's not when starting the bridge, and I have bridge_stp off23:28
qman__it's every fresh connection, once the arp table drops an entry it happens again for that host23:29
sarnoldqman__: dang. :)23:29
=== wedgwood is now known as wedgwood_away
sarnoldsw0rdfish: latency matters more for small files; with large files, things'll move along fine with 30ms or 300ms latency..23:29
qman__the bizarre thing is that it does eventually get through, and then for the duration the entry is there, it works perfect23:32
sw0rdfishi see, sarnold23:33
nailoraSpamapS: scheduler: noop deadline [cfq]23:40
nailorasarnold: could you try to remember -- like really hard?23:40
sarnoldnailora: hehe :)23:40
sarnoldnailora: I thought a google search for "io latency regression site:lwn.net" would find it eventually, but I'm not seeing anything that would fit in that timeframe :/23:49

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