Return-Path: Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: (qmail 45262 invoked from network); 14 May 2009 21:22:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 14 May 2009 21:22:11 -0000 Received: (qmail 12078 invoked by uid 500); 14 May 2009 21:12:31 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 12057 invoked by uid 500); 14 May 2009 21:12:31 -0000 Mailing-List: contact users-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Users List" Delivered-To: mailing list users@tomcat.apache.org Received: (qmail 12046 invoked by uid 99); 14 May 2009 21:12:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 May 2009 21:12:31 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of aw@ice-sa.com designates 212.85.38.228 as permitted sender) Received: from [212.85.38.228] (HELO tor.combios.es) (212.85.38.228) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 May 2009 21:12:21 +0000 Received: from localhost (localhost [127.0.0.1]) by tor.combios.es (Postfix) with ESMTP id DB88A226081 for ; Thu, 14 May 2009 23:09:25 +0200 (CEST) Received: from tor.combios.es ([127.0.0.1]) by localhost (tor.combios.es [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id K4wx3S0SJOQE for ; Thu, 14 May 2009 23:09:25 +0200 (CEST) Received: from [192.168.245.129] (montserrat.wissensbank.com [212.85.37.175]) by tor.combios.es (Postfix) with ESMTPA id 979AD226080 for ; Thu, 14 May 2009 23:09:25 +0200 (CEST) Message-ID: <4A0C8918.3090608@ice-sa.com> Date: Thu, 14 May 2009 23:11:52 +0200 From: =?ISO-8859-1?Q?Andr=E9_Warnier?= Reply-To: aw@ice-sa.com User-Agent: Thunderbird 2.0.0.16 (Windows/20080708) MIME-Version: 1.0 To: Tomcat Users List Subject: Re: tomcat no longer writing to log files References: <4A0C7A6C.90802@ice-sa.com> <4A0C7DBF.5030604@ice-sa.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Michael A. Repucci wrote: > Well, actually, I did this stupid thing under Ubuntu Linux. I've even now > gone through the process of completely uninstalling and reinstalling the > Tomcat packages, and it doesn't help. So now, not only does our application > not work on my local machine, but I can't figure out why because Tomcat > won't give me error messages. I think I'm going to give up on Tomcat > entirely ... crappy piece of software. I take it that you have nothing > useful to contribute to my problem? > Sorry, I got confused between your system and your colleague's. I'll quote you : > --See life as it is, not as it appears to be. > But yes, I'll try some suggestions : Under Ubuntu, your Tomcat is probably running under "jsvc", which is a kind of wrapper which allows Tomcat to be started as non-root, but still use port 80 for instance if needed. And it is probably also being launched by the script /etc/init.d/tomcatx.y. (where x.y is the version) If you look in that file, you'll also probably find that it does some funny things with some logfiles, which normally should be found under /var/log/tomcatx.y., but which may just end up in one of the other logfiles in /var/log in this case. If you did install this tomcat with the apt utility, then just do - apt-get remove tomcatx.y - apt-get purge tomcatx.y Then, make sure that the java you have is a Sun Java, not gcj, and make it the default (update-alternatives java). Then - apt-get install tomcatx.y and it should just magically run again. (Under Ubuntu, you probably need to prefix all the above by "sudo"). Alternatively, if you are going to be using this mainly for development, and you don't care if it is well-integrated with the rest of the Ubuntu package system, and you want a Tomcat layout a bit easier to understand than what the Debian and Ubuntu packagers do, you may want to download and install an "official" Tomcat from the Tomcat website. That one installs under a single directory, usually /usr/local/tomcat or so. Then you have everything in one place, without symlinks etc.. The inconvenient is that you'll have to write your own system start/stop scripts etc.. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org For additional commands, e-mail: users-help@tomcat.apache.org