/srv/irclogs.ubuntu.com/2009/02/09/#ubuntu-server.txt

owhtwb: The site that davexoxide was having problems with.00:01
twbowh: oh, sorry.00:01
davexoxideowh: PHP it's Drupal00:03
owhdavexoxide: Then you can just write a simple php script that runs a mail() command, and you can use phpinfo() to check what it thinks the mail settings are. I'm not certain, but it may be that apache needs reloading before php detects that there is mail installed.00:04
davexoxideowh sounds like a good way to test... i'll do that now00:05
=== maw__ is now known as maw_
ScottKowh: We don't install any MTA by default.00:20
ScottKdavexoxide: What is it you're trying to test?00:20
owhScottK, IIRC if you install the "mail-server" task, it installs postfix.00:32
ScottKowh: True, but that's hardly by default.00:32
owhScottK, the original question was: "What should I install, exim or postfix." - default, as in, bare install, you are correct. Default, as in, the one you install when you install the mail-server task, then it's postfix. Meanwhile, the problem davexoxide is currently having is that PHP isn't sending, but we've been working through it.00:35
ScottKOK.00:35
ScottKGenerally when I'm testing postfix I use telnet to the appropriate port.00:36
owhScottK - interesting idea. The php suggestion from me came from the notion that the site was running drupal using php. Seemed like less to gin around :)00:39
owhScottK, besides, I figured the postfix installer worked - just that PHP was having a hisseyfit :)00:39
ScottKFor basic MTA level stuff it's pretty easy to use telnet and you have direct control over what's being sent.  That and tailing /var/log/mail.log generally clarifies things.00:40
twbnetcat beats telnet :P00:56
tonyyarussoI need some help configuring bacula.  I want my backups to go into /var/bacula/.  I have that defined in the File Storage type.  Although, it seems like I still need to manually label something there (?).  When I attempt to use the label command in bconsole, I get "3910 Unable to open device "FileStorage" (/var/bacula/): ERR=dev.c:491 Could not open: /var/bacula/File1, ERR=Permission denied"01:01
tonyyarusso/var/bacula/ is 770 root:bacula.  What's wrong here?01:01
rgottenanybody has try webmin agains ebox01:16
Deeps!webmin | rgotten01:19
ubotturgotten: webmin 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. See !ebox instead.01:19
luckyonehello all, can anyone help me figure out how to get my samba server running correctly? I have tried to use eBox to create it01:20
luckyoneI am getting some errors trying to connect...01:20
ricardo1hi can you help me????02:07
ricardo1how can i install pear???02:07
ricardo1having trouble02:07
zoopsterwhat is the trouble?02:08
zoopstersudo apt-get install php-pear would be the command, no?02:09
Kamping_Kaiserricardo1, fewer "?" and more description will probably get you more (and less hostile) help02:10
ricardo1Kamping_Kaiser Fatal error:  require() [function.require]: Failed opening required '/var/www/joomla159/components/com_estateagent/includes/gallery/../../../../globals.php' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/joomla159/components/com_estateagent/includes/gallery/authEA.php on line 22 ............ fuckin error02:11
zoopsterprovided the globals.php exists...does it have the correct permissions?02:14
Kamping_Kaiserzoopster, s help still hold - thats how you install php-pear. not dealing with php much i'm not sure how to read the error - it looks to me like joolas globals.php cant be found02:14
zoopsterKamping_Kaiser: his 2nd question was "how can I install pear???"02:17
Kamping_Kaiserzoopster, i saw02:19
zoopstermost of those issues I have seen are permissions issues...the file cannot be read by the server...either ownership or rights02:19
davexoxideScottK: so i set up a simple php script and it's unable to send03:05
ScottKdavexoxide: If you telnet from localhost can you send?03:05
davexoxideScottK: I got 201 messages until i do DATA03:09
davexoxidethen no matter what i put I get 50003:09
davexoxidesorry 50103:09
ScottKWhat does /var/log/mail.log have to say about it?03:09
ScottKIf you can pastebin the log messages for one transaction, I can probably sort it out.03:10
davexoxideScottK: http://davexoxide.pastebin.com/d7693521b03:11
* ScottK looks03:11
ScottKdavexoxide: So you have one that you did send to Hotmail that was OK.03:12
ScottKHow is that being sent?03:12
davexoxideno, telnet failed at the last step03:12
davexoxidei did a command line php -a03:13
davexoxidemail();03:13
davexoxidethat did work to hotmail03:13
ScottKOK.03:13
ScottKWhat's the exact error you got after data?03:13
davexoxideScottK: http://davexoxide.pastebin.com/d2c54238f03:14
ScottKLooking03:14
ScottKdavexoxide: When you are telnetting, you need a newline between the command DATA and the actual data.03:15
davexoxideok i'll try that, and see what happens03:16
ScottKThe 501 is it's telling you you got the syntax wrong.03:16
davexoxideScottK: yeah that worked.. and php -a mail() works...03:18
davexoxidebut my simple php mail script fails... hmm03:18
davexoxideScottK: http://www.buildwebsite4u.com/advanced/php.shtml03:19
davexoxidehttp://static.davexoxide.com/mail.html03:19
ScottKdavexoxide: OK.  Those two things tell you you have a php problem, not a mail server problem.03:20
davexoxideok great, thanks man03:20
ScottKdavexoxide: My guess would be that the php 'mail' command you appear to be using doesn't talk smtp, but I know zip about php.03:27
davexoxideyeah it's sendmail_path03:28
davexoxidei still had exim in my conf file03:28
ScottKAh.03:28
davexoxidefor postfix it should be /usr/lib/sendmail?? or something like that03:28
ScottKPostfix sendmail is compatible externally with the sendmail sendmail command.03:28
ScottKYes.  That's where it is.03:29
twbdavexoxide: all MTAs on Ubuntu provide /usr/sbin/sendmail.03:42
twbdavexoxide: /usr/lib/sendmail is a legacy location found on e.g. Solaris03:42
davexoxideyeah i decided to go with default setting of sendmail -t -i03:43
davexoxidestill not working as expected but at least i know it's not postfix03:43
davexoxidei'm over in the php room bothering those guys now03:43
davexoxidethanks ScottK and twb for the help!03:44
ScottKdavexoxide: You're welcome.03:44
HellsheepHey06:36
HellsheepI am trying to install a teamspeak server onto my Ubuntu home server, i created a new user using: sudo useradd -d /home/teamspeak teamspeak06:36
Hellsheepand it created the user, except i dont know the pass? =o06:36
HellsheepHow do i determine the password for it06:37
Hellsheepi tried su teamspeak06:39
Hellsheepbut it asks for the password, and no matter what i try it wont work06:39
Kamping_Kaiserwhy on earth did you `useradd -d` instead of just `adduser` ?06:43
Hellsheepi have no clue06:43
Hellsheepi blame a website06:43
Kamping_KaiserHellsheep, it wont have a password, set one with `sudo passwd teamspeak`06:44
Hellsheepthe teamspeak website says use -d06:44
Hellsheepty06:44
HellsheepWhy do people on sites like teamspeak and vent fail to write all the details06:44
Kamping_Kaiserif its in a wiki, i suggest you update it06:45
HellsheepIt's not. =[06:45
HellsheepIt's on the main teamspeak site..... =/06:45
Kamping_Kaiserits possible they use 'adduser' in the example because its a lowest common denominator.06:45
Kamping_Kaiser:\06:45
Hellsheephttp://www.teamspeak.com/?page=tutorial_b06:45
Hellsheepand i had the same problems with Ventrilo06:46
HellsheepThey lack the correct information to install without looking somewhere else06:46
Kamping_KaiserHellsheep, it assumes you are root - if you are root you can `su` to any other user without a password06:46
Kamping_Kaiser`sudo su teamspeak` would be equivilant to `su teamspeak` as root06:47
Hellsheepi see06:47
Kamping_Kaiseri still think `adduser --disabled-password` or something similar would be better then useradd -d (but i'm sure they've look into it)06:49
HellsheepYour solution would have worked the first time though.06:50
HellsheepAnd your solution solved my problem.06:50
Kamping_Kaisertheres a few lines in that guide  i find a little strange06:52
* Kamping_Kaiser shrug06:52
Hellsheepyeah06:55
Hellsheeplike their extraction methods dont work either06:55
Hellsheep=/06:58
Kamping_Kaisershould do. how did it fail?07:01
HellsheepDunno lost the error thing07:02
Hellsheepexcept07:02
Hellsheepi just WinSCP the whole folder07:02
Hellsheepinstead of .tar.bz2 file07:02
Hellsheepbash: ./teamspeak2-server_startscript: Permission denied07:03
HellsheepLove that07:03
Kamping_Kaiserits probably not executable.07:03
Hellsheepso i see07:04
Hellsheepdunno how to change that07:04
Kamping_Kaiserperhaps a result of copying it around. try `chmod +x ./teamspeak2-server_startscript` and rerunning the command07:04
Hellsheepthanks07:05
Hellsheepthat worked07:05
Hellsheepgotta clean up around the house now07:06
Hellsheepcyaz07:06
Hellsheepand thanks07:06
Hellsheepyou always have the answers =P07:06
suigenerisScottK-desktop, are you there?07:12
uvirtbot`New bug: #326936 in samba (main) "package samba 3.0.28a-1ubuntu4.7 failed to install/upgrade: subprocess post-installation script returned error exit status 1" [Undecided,Incomplete] https://launchpad.net/bugs/32693607:35
krautmoin08:47
Kamping_Kaiserallo08:51
pike__im trying to run a dhcp server on eth1.  i have installed the server but im not sure how to designate an interface to listen on in dhcpd.conf08:51
pike__all other config is done it just compains that no interface is set to listen on08:52
Kamping_Kaiserpike__, ISC dhcpd? set it to give out addresses on the netblock eth1 is on, it'll do the rest08:52
pike__i see thx08:59
Xperiment62ive been forced due to my brother killing my main computer, to use my server as a desktop machine, i miss my music... how can i install and setup a sound system to use with mplayer easily?09:15
uvirtbot`New bug: #327105 in apache2 (main) "package apache2.2-common 2.2.9-7ubuntu3 failed to install/upgrade: package apache2.2-common is not ready for configuration" [Undecided,New] https://launchpad.net/bugs/32710509:16
Xperiment62how can i get sound output from my server09:28
sorenXperiment62: Play something?09:28
Xperiment62i tried09:29
sorenAnd?09:29
Xperiment62nothing09:29
soren-ENOINFORMATION09:29
Xperiment62mplayer started playing it but absolutely no sound09:29
sorenturn up the volume?09:29
Xperiment62umm09:29
Xperiment62remember this is server edition09:29
sorenYes?09:29
Xperiment62and i did turn up the volume09:29
Xperiment62nothing at all09:30
Xperiment62so please dont treat me like an idiot09:30
sorenWell, then give me some information that is actually useful.09:30
Xperiment62well, what is tehre to say09:30
sorenHow does it fail? What output do you get? What have you done to make it work?09:30
suigenerisdid you unmute it?09:31
Xperiment62gah09:31
Xperiment62its a basic install of server09:31
Xperiment62recently installed mplayer09:31
sorenYou keep saying that, but what do you think that means?09:31
Xperiment62tried to use the alsa output but no avail09:31
Xperiment62tried pulse09:31
Xperiment62no luck there09:31
Xperiment62and i havent ever been given any output from them09:31
Xperiment62im telling you what i know09:32
sorenmplayer doesn't give you any output?09:32
Xperiment62your asking for information i dont have09:32
Xperiment62ti gives regular output09:32
sorenWell, /I/ certainly don't have it.09:32
sorenLet's see it.09:32
Xperiment62umm09:32
Xperiment62how can i do this09:32
sorenregular output != no output09:32
Xperiment62from CLI09:32
Xperiment62regular output = nothing of interest to the situation09:33
sorenpastebinit, for instance.09:33
Xperiment62umm09:33
Xperiment62im in CLI09:33
sorenpastebinit - command-line pastebin client09:33
Xperiment62so you want me to instal a pastebin client?09:34
sorenNo. I want you to show me the output from mplayer. I'm *suggesting* that you use a pastebin client for that. That seems reasonable.09:34
sorenIf you've got a better way, that's fine.09:35
sorenssh from another machine or whatever.09:35
sorenI'm just interested in the output.09:35
Xperiment62oh yeah09:35
Xperiment62fyi09:35
Xperiment62i dont ahve anotehr machine09:35
Xperiment62thats the whol reason for wanting sound09:35
Xperiment62my brotehr killed my IDE controller on my main09:35
Xperiment62so ive had to revert to using my server09:35
Xperiment62ill install a pastebin client09:36
sorenOk. Well, if you've got a better way to show me the output, that's fine. You just asked med how to do it.09:36
sorenIf you can dump it in a file an put in on a webserver somewhere, that's cool.09:36
Xperiment62that would be a good idea09:37
Xperiment62if i hadnt killed my apache server a couple of weeks ago09:37
Xperiment62unless09:37
Xperiment62nah09:37
Xperiment62chuck me an example of what i should be doing with pastebin init09:38
sorenDunno. never used it myself.09:38
Xperiment62like what command should i run to use it to output the output from a command?09:39
Xperiment62hrmm09:39
Xperiment62i think ive got it figured out09:40
Xperiment62wont be a minute or two09:40
Xperiment62http://pastebin.com/f20b3558a09:42
Xperiment62that work>?09:43
Xperiment62that was usign mplayer filename >> alsa.txt09:44
Xperiment62then pastebininit -i alsa.txt09:44
sorenYes.09:44
Xperiment62col09:44
Xperiment62cool*09:44
sorenCould you send the output of amixer as well?09:46
Xperiment62umm09:46
Xperiment62one sec09:46
Xperiment62http://pastebin.com/fd8fa4f09:47
sorenYour master is muted.09:47
Xperiment62really?09:47
Xperiment62why would it be muted?09:47
Xperiment62thats just bizzare09:47
soren*shrug*09:48
Xperiment62know how to remedy the situation?09:48
sorenUnmute it with your favourite mixer application?09:49
Xperiment62umm09:50
Xperiment62i dont ahve a favourite09:50
Xperiment62or have one that i really know how to use fully09:50
Xperiment62as i dotn often use a server as a desktop machine09:50
sorenYou said earlier that you had turned up the volume... What did you use for that?09:51
Xperiment62my amp09:52
sorenEh?09:52
soren....09:52
Xperiment62external09:52
sorenSo you never touched your sound cards mixer settings?09:52
Xperiment62no09:52
soren....09:53
sorenI see.09:53
sorenNow would be a good time to start doing so.09:54
Xperiment62aah09:54
Xperiment62found it09:54
sorenActually, before asking about why you don't have any sound output would be an even better time. :/09:54
Xperiment62tinkered around in alsamixer09:54
Xperiment62and for some bizzare reason all my outputs were muted09:54
Xperiment62tried random keys and found the muting key09:55
=== diehaai is now known as thefish
Xperiment62thankyou soren09:59
suigenerishah! and you said "gah" when I asked "did you unmute it?"10:02
sorensuigeneris: He also didn't want us to treat him like an idiot.10:07
lukehasnonamenijaba: Thank you for updates to the KVM documentation10:29
lukehasnonameI've been wanting this for a while, it looks good so far. Haven't tested the instructions, but I hope to when I have a chance later this week10:30
nijabalukehasnoname: I merely reordered the instructions and split it in multiple page so that it is a bit less scary10:31
nijababut thanks10:31
lukehasnonamethe instructions are updated for hardy/interpid, and the wording is more informative rather than 'cp this into console and you have kvm!'10:32
UndertakerX2Could some one help me with this error? http://pastebin.ubuntu.com/115946/10:40
Kamping_Kaiserinstalled aclocal10:41
Kamping_Kaiser?10:41
UndertakerX2dont believe so, sudo apt-get aclocal ?10:41
UndertakerX2that right?10:42
Kamping_Kaiserapt-file tells me its in the automake package10:43
UndertakerX2so if i install automake i should be good to go right>10:44
Kamping_Kaiseruntil the next missing dependancy yes10:45
Kamping_Kaiserwhat are you trying to install?10:45
UndertakerX2xbbt backend for gazelle10:45
UndertakerX2that fixxed that but have a new error http://pastebin.ubuntu.com/115951/10:49
Kamping_Kaiserah. they should provide a list of dependancies needed to build it, eitehr in the package (Eg, in an INSTALL file) or on their site10:49
UndertakerX2yeah but im not sure what is already on my system and whats not, and dotn want to overwrite anything10:51
Kamping_Kaiser!be10:51
ubottuSorry, I don't know anything about be10:51
Kamping_Kaiserbah.10:51
Kamping_Kaiser!build-essential10:51
ubottuCompiling software from source? Read the tips at https://help.ubuntu.com/community/CompilingSoftware (But remember to search for pre-built !packages first)10:51
Kamping_KaiserUndertakerX2, ^^10:51
UndertakerX2i will check that out, thanks10:51
godsynnealmcb: I just wanted to stop in and say thanks again. I just google'd my nick (I'm that bored) and our conversation ( http://irclogs.ubuntu.com/2008/07/20/%23ubuntu-server.txt ) came up.11:09
UndertakerX2Can some one help with this error http://pastebin.ubuntu.com/115951/ ?11:12
suigenerisis this channel logged?11:17
suigeneris!log11:17
ubottuOfficial channel logs can be found at http://irclogs.ubuntu.com/ - For LoCo channels, http://logs.ubuntu-eu.org/freenode/11:17
godsynUndertakerX2, do you have libtool installed?11:18
UndertakerX2i used this command: apt-get install cmake g++ libboost-date-time-dev libboost-dev libboost-filesystem-dev libboost-program-options-dev libboost-regex-dev libboost-serialization-dev make zlib1g-dev11:19
godsynnew to linux?11:19
UndertakerX2a biot yes :p11:19
UndertakerX2bit*11:19
godsynhehe, ok. Echo back the results from "aptitude search libtool". I'm only interested in the ones that are installed (they'll have an "i" in front).11:20
UndertakerX2http://pastebin.ubuntu.com/115977/11:23
UndertakerX2there ya go11:23
godsynaptitude install libtool, then run your above command.11:24
UndertakerX2that worked, thanks!11:25
UndertakerX2you would think they could list that in the dpendincies ya know :p11:26
godsynno prob. enjoy XBT (just a guess).11:26
UndertakerX2close enough11:26
UndertakerX2gazelle, xbbt back end11:27
UndertakerX2i used to work on a tbdev install for a friend awhile back so wanted to play around with gazelle11:27
suigeneristhe other day ScottK gave me a command to see inside a certificate, but I don't remember. does anybody know?11:29
suigenerisopenssl x509 something11:29
UndertakerX2gosyn, used make and most of it went alright untill this part http://pastebin.ubuntu.com/115992/11:30
UndertakerX2sorry godsyn, typing skills are horrid tonight11:31
godsynreading up on gazelle11:31
UndertakerX2k thanks11:32
UndertakerX2suigeneris: http://www.mkssoftware.com/docs/man1/openssl_x509.1.asp that what you want?11:32
godsynthe 1st list of dependancies. did they install ok? (apache / etc)11:32
UndertakerX2yep11:33
UndertakerX2if memorey serves me right, i can gdouble check if you like11:34
UndertakerX2the front end is up and running fine, but the guise i was using says i need xbbt but the offical instal docs did not11:35
godsynhttp://projectgazelle.org/viewtopic.php?pid=982#p98211:37
godsynout f date makefile :(11:38
godsyn**of11:38
UndertakerX2thanks let me try that11:39
godsynMy shift is over and my replacement here (datacenter). Best of luck!11:44
suigenerisUndertakerX2, thanks, with a little trial and error, i managed to see it11:45
UndertakerX2thanks godsyn11:45
UndertakerX2suigeneris: no problem glad to help11:46
=== KterinK is now known as dou213
dou213can someone here help me with my ftp-server? installed vsftpd, in config no anonymous login possible, mount --bind the public folder with one folder from /home/user/, then configured FTP over SSL (like on this site over here: http://www.zeroathome.de/wordpress/ftp-und-webdav-fuer-euren-ubuntu-server/) but now when i go in FileZilla and try to connect, it fails...12:18
dou213configs in FileZilla: host: ip-address of pc behind the router (i'm @ home), Port: 21, Servertype: FTP over SSL (explicit encryption), Logontype: normal with user and password from the users on the server machine12:22
Deepsno idea about filezilla i'm afraid, however there should be some output somewhere, either in the server logs in /var/log, or from your client (in terms of what it recieved from the server as an error, if anything)12:24
dou213hi Deeps, from my client (on windows *baaah*) nothing there, only connection failed... checking now the logs on the server machine12:25
dou213in which log file would there be information about this?12:26
Deepsauth.log maybe? if there's a vsftpd folder it may be in there? syslog?12:27
sorenWhat does it mean when ping says "source quench"?12:31
dou213just seen that vsftpd created a new user: ftp, i think i must login with that user then... Deeps, can u please have a look on the configuration on that link i've sent? i know it is foreign language, have a look only at the commands to run, maybe you get an idea what the problem is... the commands from FTP - Server section to FTP over SSL12:32
Deeps"destination too busy", says cisco on google12:32
sorenDeeps: Google, huh? I should try that.12:32
Deepssoren: ;)12:32
Deepsdou213: i dunno, ive never used vsftpd12:33
Deepsdou213: it "appears" to be ok, but i honestly dont know12:33
Deepssoren: "Source Quench Messages is an IP ICMP message implying the following. The server is getting data at to high a rate and can not buffer it. This messages then means please send data in smaller bursts." if that helps ;_12:34
dou213Deeps, ok mate thx anyway, i'll try to figure it out myself.. maybe i'll get lucky12:34
UndertakerX2how can i downgrade to gcc-4.1 and g++-4.1 ?13:01
suigeneris!downgrads13:05
ubottuSorry, I don't know anything about downgrads13:05
suigeneris!downgrade13:05
ubottuAttempting to downgrade to an older Ubuntu version is explicitly not supported, and may break your system.13:05
UndertakerX2im not downgrading an entire version of ubuntu am i? :s13:06
ScottKUndertakerX2: There are separate packages for differenct GCC versions.13:08
ScottKUndertakerX2: You want to install gcc-4.1 packages and then change the gcc symlink to point there.13:09
UndertakerX2well i have a make file that seems to be compiled with gcc-4.1 and g++-4.1, just looking for the easiest route to resolve this issue13:10
UndertakerX2would it be easiest to change the makefile and instal 4.1?13:12
UndertakerX2rather then completley downgrading13:12
UndertakerX2ScottK: where is the symlink located?13:16
DeepsUndertakerX2: run: which gcc13:17
DeepsUndertakerX2: or: ls -l `which gcc`13:17
UndertakerX2thanks, do i do this for g++-4.1 to?13:19
UndertakerX2i cant seem to make that work for g++13:25
ScottKDunno about g++13:28
UndertakerX2ok thanks13:30
Deeps# ls -l `which g++`13:34
Deepslrwxrwxrwx 1 root root 7 2008-10-15 11:17 /usr/bin/g++ -> g++-4.213:34
UndertakerX2Deeps: thanks, it says i need to use -E or -x.13:42
Deeps?13:43
Deepswhat is "it"?13:43
UndertakerX2the command above13:43
UndertakerX2->13:44
UndertakerX2that one13:44
UndertakerX2] lrwxrwxrwx 1 root root 7 2008-10-15 11:17 /usr/bin/g++ -> g++-4.213:45
Deepsi dont see "it" saying you need to use -E or -x?13:46
UndertakerX2g++: -E or -x required when input is from standard input13:46
Deepswhat are you trying to do?13:47
Deepsif you're trying to make a symlink for g++ to point to g++-4.1, you shouldn't be running g++...13:47
Deepsrm /usr/bin/g++ && ln -s /usr/bin/g++-4.1 /usr/bin/g++13:48
Deepsat a guess, assuming /usr/bin/g++-4.1 exists when you install g++-4.113:48
UndertakerX2sorry deeps im feeling rather sick i think this is going to have to wait untill tomorow13:50
UndertakerX2Deeps: thanks for all the help though13:51
sorenI slept all the way to Berlin, so I thought the flight was longer, but it was only about an hour or so.13:57
sorenErr... Whoops13:57
soren:)13:57
zulhow do I tell apt that I have a sources.list.d as well and to use it?14:12
lapohi14:33
lapois there any documentaion about clustering with hardy? I'm playing with heartbeat+drbd atm, I would like to setup a fail-over samba server14:52
kinnazanyone has exp with ibm server with lsi 1030 on ubuntu ?14:59
=== KterinK is now known as dou213
dou213hi guys, i can't connect to my ftp-server from intern (behind the router) with SSL, unencrypted it works, but not with SSL15:13
dou213can somebody help fix this problem, preferably someone with experience in FileZilla too :)15:23
Faust-Cdou213: ports open? are they being forwarded15:25
dou213Faust-C, in router i didn't open port 2115:27
dou213should i?15:27
DogWaterdoes anyone know what package i need to install to get the lib/modules/2.6.24-19-generic/source/ or lib/modules/2.6.24-19-generic/build/ folders?15:27
Faust-Cdou213: what port does it want for SSL15:28
Faust-Cforward that port15:28
dou213Faust-C, don't know, how can i find that out? probably 443 (default port for SSL)15:28
DeepsFaust-C: he's accessing an ftp server inside his lan from within his lan15:29
dou213Deeps, yes right15:29
dou213that's why i thought i don't need (for now) to open the ports15:29
Faust-Cheh cant work if you dont let it15:29
dou213Faust-C, ok so open port 21 y?15:30
Faust-Cdou213: ? no what port does your ftp server use for SSL, you need to make sure its listening for it15:31
Faust-Cand what do logs say?15:31
Faust-C /var/log/<whatever ftp server app>15:31
DeepsFaust-C: he can connect to his ftp without SSL encryption fine without any ports forwarded because it's on the same lan, no routing involved, it's just not working with SSL15:31
Faust-CDeeps: i read that wrong15:31
dou213thx Deeps for clearing him up, sry for my bad english15:32
Faust-Cmaybe there is a error with the cert15:32
Faust-Cdou213: what ftpd are you using ?15:32
dou213svftpd15:33
dou213vsftpd15:33
dou213w8, i'm giving you the link with what commands i've run to configure it15:33
Faust-Ck15:33
dou213http://translate.google.com/translate?prev=hp&hl=en&u=http%3A%2F%2Fwww.zeroathome.de%2Fwordpress%2Fftp-und-webdav-fuer-euren-ubuntu-server%2F&sl=de&tl=en15:34
dou213btw, very nice site :) translate.google.com, found it out just today15:34
dou213Faust-C, and i've been reading also these pages: http://ubuntuforums.org/showthread.php?t=91887   &&  http://ubuntuforums.org/showthread.php?t=51829315:35
dou213but the cfg i followed is that from the first site, just without his shell script15:36
Faust-Ck15:40
Faust-Cbrb15:43
dou213i sure hope that we can make it work with SSL, cuz the main purpose of me setting a FTP-server is to access it from outside my lan15:44
Faust-Cdou213: imo (in my opinion), it would be simpler to use sftp15:45
Faust-Cbut thats me, anyways brb15:45
ScottK+1 for sftp15:45
dou213Faust-C, maybe you're right, but vsftpd is easier (so i've read, but not convinced :) )15:46
dou213it can be something wrong with the certificates15:46
dou213just llok @ the first page15:46
dou213he creates a new certificate, maybe that's the problem, cuz i've read in some other tutorials that this is not needed15:47
Faust-Cwell i would create a new cert15:47
Faust-Cbut im odd15:47
Faust-Cdou213: btw did you look at logs?15:48
dou213i've looked at tcpdump .. but nothing interesting there15:48
Faust-Cbrb15:48
dou213for me15:48
Faust-Cheh no look at logs /var/log/vsftpd15:48
dou213looking in logs now15:48
dou213Mon Feb  9 16:50:49 2009 [pid 4436] CONNECT: Client "192.168.1.31"15:52
dou213Mon Feb  9 16:50:53 2009 [pid 4435] [alex] OK LOGIN: Client "192.168.1.31"15:52
dou213this appears every time when i try to connect from FileZilla15:53
dou213but it doesn't connect15:53
dou213i can also paste the messages from FileZilla, maybe that'll help some?15:53
Deepsmaybe tell filezilla to use tls instead of ssl explicit?15:53
Deepsodds are you should be getting some kind of error in filezilla though taht'll be telling you what's going wrong15:54
dou213Deeps and Faust-C, i'll paste it on pastebin, too long to do it here w815:55
dou213http://pastebin.com/d6700789215:57
dou213this is the information from FileZilla15:57
dou213everything works just fine till connection timeout :S15:57
dou213Deeps, already tried with TLS/SSL, disconnected right away, won't even work for as long as SSL explicit will15:58
Deepsfirewall on the ftp server?16:00
dou213Deeps, really don't know, probably iptables (common in ubuntu)16:00
Deepsdou213: do you have a firewall enabled? paste `iptables -nvL` to a bin16:01
dou213k16:01
dou213http://pastebin.com/d4499052816:02
=== ogra_ is now known as ogra
dou213Deeps, i see now maybe fail2ban is causing the prob16:03
dou213?16:03
Deepsnah, it looks ok16:05
Deepsnothing indicating why it's timing out trying to do dir listing16:05
dou213so, do i have a fw enabled?16:05
dou213should i simply try a reinstall?16:06
dou213like sudo apt-get --purge remove vsftpd   and then install it anew16:06
Deepspaste your vzsftpd.conf16:09
uvirtbot`New bug: #326517 in ubuntu "Ethernet OK but no internet (dup-of: 307204)" [Undecided,Invalid] https://launchpad.net/bugs/32651716:11
uvirtbot`New bug: #327233 in samba (main) "package samba 3.0.28a-1ubuntu4.7 failed to install/upgrade: subprocess post-installation script returned error exit status 1" [Undecided,New] https://launchpad.net/bugs/32723316:11
dou213http://pastebin.com/d973e60616:11
dou213Deeps, in here is posted my vsftpd.conf: http://pastebin.com/d973e606 ... tell me if there is something fishy about it16:12
Deepslines 139-14116:14
Deepsyou dont appear to have a key file defined16:14
dou213only by commenting line 141 i could make it work without SSL16:16
dou213so unencrypted16:16
Deepsgtg, gl, bbl16:18
=== uvirtbot` is now known as uvirtbot
dou213:) ok Deeps, thx anyway... catch u later hopefully16:19
uvirtbotNew bug: #327242 in bacula (universe) "Hardy bacula update packages broken" [Undecided,New] https://launchpad.net/bugs/32724216:31
chrisadamshi guys - is it bad practice to restart apache using /etc/init.d/apache2 restart?17:43
Nafallochrisadams: kills the active connections for sure.17:44
chrisadamsNafallo: thought as much17:50
chrisadamsis there a way to run it gracefully from /etc/init.d?17:50
Nafalloreload17:50
chrisadamsI get this response when i try:17:50
chrisadamsroot@machine:/usr/sbin# /usr/sbin/apache2 -k graceful-stop17:50
Nafalloalso called "graceful" ;-)17:50
chrisadamsapache2: bad user name ${APACHE_RUN_USER}17:50
Nafalloinvoke-rc.d apache2 reload17:51
chrisadamsthat's the graceful way restart the server?17:51
ivokshello17:52
chrisadamsNafallo: thanks, that works a charm17:54
jmedinaany there anyone have problems with tg4 driver in hardy?18:00
jmedinait is tg3: Broadcom Corporation NetXtreme BCM5721 Gigabit Ethernet PCI Express (rev 11)18:03
lamontMTU:1492 <-- WTF is causing PPPoE to set the MTU down?18:10
ivoksphysics18:14
ivoksit's never 1500 on pppoe18:15
ivoksit can't be18:15
ivoksPPPoE consumes 8 more bytes of data for its own purposes, which leaves us with 1492 of usable space for actual data.18:16
ivoksScottK: ping18:18
ScottKivoks: Pong.18:18
ivoksScottK: hi there18:18
ivoksScottK: i'm working on mail stack atm18:18
ivoksScottK: and i was wondering...18:18
ivoksScottK: what do you think about enalbing managesieve by default in dovecot?18:19
peciskhi people, have you encountered situation when you have LVM volume mounted on some temporary directory, umount /tmp/some_dir answers that device is busy, but no lsof nor fuser doesn't show anything running in that file system, there are also no strange processes in ps ax18:19
ivoksScottK: and making an effort of moving roundcube into main for jaunty+1 (which would include patch for managing sieve scripts)18:19
peciskI can't reboot box because of Xen VMs18:19
ScottKivoks: I think I don't know enough to have an opinion.  I think seive is really not for everyone.18:20
ivoksScottK: well, if we set dovecot as LDA, then we get sieve 'for free'18:20
ivoksScottK: so, we would have sieve, only question is will we enable 'remote' management of scripts18:20
ScottKYes, I'm just thinking about it adds complexity to the system.18:20
ScottKI see.18:21
ivoksthat's true18:21
ivoksthe only problem i see is that none of ubuntu clients supports sieve remote management18:21
ScottKWhat does?18:21
ivoksand roundcube, which does have a patch for it, would support it18:21
ivoksbut roundcube is not in main18:21
ivoksso we shouldn't consider it at all in this case18:22
ScottKAs I said, I don't have a strong opinion.18:22
ivoksok18:23
ivoksi'll raise that question tomorrow on meeting18:23
ivoksthanks18:23
jmedinaivoks: my vote por managesieve in dovecot18:25
ivoksjmedina: :)18:25
ivokshow do you manage sieve remotly?18:26
ivokswith thunderbird?18:26
jmedinaivoks: Im just starting to use it, I recompiled dovecot from intrepid in hardy to get managesieve support18:27
ivoksi see18:28
jmedinabtw, I remember about a security bug report about managesieve, something about user can modify other users scripts18:28
ivokswhat mail client do you use?18:28
jmedinaivoks: kmail18:28
ivokswell, i'll check security stuff, of course18:28
ivokskmail supports managesieve, right?18:28
jmedinayeap, but I have not tried18:29
keesbug 30729118:29
ivoksthere's an open bug in evolution for sieve18:29
uvirtbotLaunchpad bug 307291 in dovecot "Security hole in ManageSieve: Virtual users can edit scripts of other virtual users" [Undecided,New] https://launchpad.net/bugs/30729118:29
jmedinakees: thanks, that is the bug18:30
ivoksgreat18:30
ivoks:)18:30
ivokskees: :*18:30
jmedinadman, this broadcom nic doesnt works with xen's kernel :S18:30
kees:)  it's been a low priority, but we'll be getting to fixing it.  If any one wants to get patches and do tests, we'd appreciate the help, of course.  :)18:31
ivokshm... looks like that's an existing bug in jaunty too18:31
ivoksi'll have to check that out18:32
jmedinaivoks: I want to use IMP ingo for server side filtering18:32
ivokswhy?18:32
jmedinaI also read there is a thunderbird plugin for sive and of course kmail18:32
ivoksif you have kmail, you could do that from it18:32
jmedinaivoks: I use horde webmail18:33
jmedinayeap, but I want the webmail feature for customers18:33
ivoksit's ugly, isn't it? :)18:33
jmedinaI always used maildrop, but I need something to create filters from webmail or another mail client withouth creating scripts manually18:34
ivoksso you would like to have managesieve in 'default ubuntu mail server stack'?18:36
jmedinaivoks: yeap, in fact I was testing managesive in dapper :D18:39
ivoksgreat18:39
jmedinaI know a nothing about creating deb packages, I had to edit control by hand in order to compile in dapper18:40
jmedinaI was using intrepid packages18:40
ivoksok, i'll work on including sieve by default in ubuntu-mail-server package18:43
ivoksthat will not be default in standard dovecot installation18:43
ivoksonly if you install ubuntu-mail-server18:44
keesokay, I've followed https://help.ubuntu.com/community/AutomaticSecurityUpdates and my system still isn't doing automatic updates.  anyone have success with this?18:44
ivokswhich one did you do?18:46
ivokscron or apt.conf.d?18:46
keesthe first one with apt.conf.d18:46
ivoksand you installed unattended-upgrades package?18:46
keesyeah: unattended-upgrades is already the newest version.18:46
lamontivoks: if the underlying card supports jumbo frames, there's no reason it can't be 1500 on the ppp interface18:47
ivokskees: i've tried that long time ago, and it worked :/18:47
ivokskees: like 2 years ago :D18:48
ivokslamont: well, i don't understand MTU so much, but if other side doesn't support jumbo frames, then i guess it shouldn't work?18:48
ivoksso much :)18:49
lamontivoks: well, pathMTU discovery _should_ work, but then much of the internet drops ICMP unreachables, so it doesn't18:52
lamontand not having MTU=1500 sucks18:52
ivoks:)18:52
ivokstake care... see you tomorrow18:54
grze_hi guys, is there anyway to force a --prefix= like behaviour with dpkg?19:06
jmedinagrze_: like --root ?19:07
grze_jmedina: seems to be the one!19:10
jmedinagood19:10
grze_jmedina: does this also affect the resolution of dependencies?19:10
jmedinagrze_: afaik, nop19:10
jmedinabut Im not sure, never use it :D19:11
grze_jmedina: *phew* cool :)19:11
grze_in that case, fingers crossed19:11
grze_thanks :)19:11
uvirtbotNew bug: #327326 in php5 (main) "parse_ini_file wrong return value on failure" [Undecided,New] https://launchpad.net/bugs/32732619:15
nonenti'm getting a stranger error in hardy trying to setup racoon.  racoon does it's modprobes and tries to load   /lib/modules/2.6.24_23_server/kernel/net/ipv6/ipcomp6.ko    which doesn't exist.   the problem is in the path - should be replaced with _, but i can't figure for the life of me why it's doing that.   if i modprobe myself, it works fine19:21
nonentwow, found it, racoon-tool seems to have a typo in it.   i shall file the bug19:29
uvirtbotNew bug: #327306 in apache2 (main) "Apache segfaults under load and can't span more than 130 childs" [Undecided,New] https://launchpad.net/bugs/32730620:13
AndyGraybeali remember someone in here saying something like they were going to write up some Bacula install instructions.  the ones i've found on the web ... are still very confusing to me and i'm having a hard time getting bacula to work20:29
ScottKI think that was ivoks.21:33
kansanhow do i install the php bindings for the GD graphics library on ubuntu hardy LTS server?22:15
Jeeves__'apt-get install php5-gd'?22:15
kansanftw!22:17
kansanis there a way to 'name' certain gnome-terminal instances?  or should i be using screen?22:17
ScottKAs soon as you said Gnome you were asking in the wrong channel.22:25
firestarter87hi everybody22:36
firestarter87i have a problem with my ubuntu-server22:36
firestarter87i can't update my packages22:36
firestarter87i get a 'w' error (can't connect) but my internet connection is up22:37
jdobrienkirkland: have a second for a question about screenbin?22:37
firestarter87my source list seems ok...22:37
kirklandjdobrien: howdy22:38
jdobrienhi22:38
ScottKfirestarter87: What's the exact error?22:38
jdobrienmy guests get prompted for a password...but it looks like it's getting their ssh keys22:38
jdobrienkirkland: ^^22:38
kirklandjdobrien: which images are you using?22:39
kirklandjdobrien: thanks for the reminder, i have a bunch of changes to screenbin that I need to upload22:39
jdobrienkirkland: ami-814aaee822:39
kirklandjdobrien: hmm22:42
kirklandjdobrien: what are the ownership/perms on the .ssh/authorized_keys file?22:42
jdobrienkirkland: when i created the image, should I have installed anything else? I did install openssh :-)22:42
kirklandjdobrien: ;-)  shouldn't need to, no22:42
jdobrienkirkland: one sec22:43
kirklandjdobrien: can you point me to the URL of the ssh keys?22:43
jdobrienhmm22:43
kirklandjdobrien: i've seen some people incorrectly put ssh keys in lauchpad that have whitespace in them22:43
jdobrienowner only22:43
jdobrien-rw-r-----22:43
Deepsshould be owner readable only i think22:46
Deepschmod 60022:46
kansanin general ; better to use _ between words or - ?  (for compatibility in linux and in bash etc)22:47
kirklandjdobrien: yeah, chmod 600 and chown guest:guest22:47
kirklandkansan: for what in particular?22:47
kansankirkland, i just thought one was good/bad22:48
kansankirkland, what permissions should /home/user    have22:48
kansankirkland, specifically for ssh access22:48
kirklandkansan: $HOME is usually 75522:48
kirklandkansan: but some people make it 70022:49
kansan755 is what mine is set on right now22:49
kirklandjcastro: Nafallo: https://edge.launchpad.net/~screen-profiles/+archive/ppa22:49
kirklandnijaba: ^22:49
Nafalloooooh22:50
Nafalloo_O22:50
jcastrokirkland: ta!22:50
Nafallothat's like... killing my manual installs :-D22:50
kirklandNafallo: https://translations.edge.launchpad.net/screen-profiles22:50
kirklandNafallo: get to translating :-)22:50
kirklandjcastro: you too...  we need some 'troit-speak in there :-)22:51
jdobrienkirkland: sorry..not working22:51
Nafallohehe. we'll see if I can find time during the week :-)22:51
kirklandjdobrien: who owns that file?22:51
jcastrokirkland: btw that launch slowness I mentioned was indeed fixed by updating it22:51
kirklandjcastro: rocktastic ;-)22:51
jdobrienkirkland: root guest22:53
kirklandjdobrien: change that to guest:guest22:53
kansanhow do i recursively list all files & directories for top level directory /foo/22:53
kirklandfind .22:53
jdobrienkirkland: tried, it won't let me :-(22:53
kirklandjdobrien: well, you need to be root (or ubuntu) to do that22:54
kirklandjdobrien: that's a bug that i've fixed (and need to upload)22:54
jdobrienkirkland: :-)22:54
kirklandjdobrien: i'm really sorry about that22:55
kirklandjdobrien: you should be able to ssh into that image as root with your key.pem file22:55
jdobrienkirkland: it's totally fine22:55
gluckHi, is there any possibility to enable sound on Ubuntu Server?22:56
dou213hi everybody, Deeps you there?22:57
jdobrienkirkland: thanks for the help, i'll work it out later22:58
kirklandjdobrien: no problem, i'll try to get an update uploaded today/tomorrow22:58
dou213can somebody help me set up my ftp-server correctly? i am behind my router, trying to connect with FileZilla within the lan on an ubuntu server box, when i connect unencrypted it works just fine, when i do it with SSL it gives me an error: Connection timed out!23:10
dou213my basic configuration: http://translate.google.com/translate?prev=hp&hl=en&u=http%3A%2F%2Fwww.zeroathome.de%2Fwordpress%2Fftp-und-webdav-fuer-euren-ubuntu-server%2F&sl=de&tl=en23:10
dou213just without his shell script23:10
dou213tried already a lot of things, here is my vsftpd.conf : http://pastebin.com/d973e60623:11
dou213here is the response i get from FileZilla while trying to SSL: http://pastebin.com/d6700789223:12
dou213i appreciate any kind of help23:12
gluckHi, is there any possibility to enable sound on Ubuntu Server?23:20
lukehasnonameI'm trying to use "sudo apt-get --install-recommends install ubuntu-virt-server" but it doesn't say it's going to install recommended components23:28
lukehasnonameany ideas?23:28
jtajilukehasnoname: the package has no recommends: http://packages.ubuntu.com/intrepid/ubuntu-virt-server23:29
jtajiand even if it or a dependent package did, it doesn't specifically tell you what it's going to install is because of recommends23:30
lukehasnonameAh hell23:30
jtajialso starting with intrepid, recommends are installed by default23:30
lukehasnonamethe package site shows no suggested packages, but apt-get shows several23:31
jtajihow's that?23:32
lukehasnonameunless one of its packages has suggested packages that are being pulled in23:35
jtajiit will do that23:35

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