Return-Path: Delivered-To: apmail-perl-modperl-archive@www.apache.org Received: (qmail 83167 invoked from network); 4 Jan 2007 18:05:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Jan 2007 18:05:21 -0000 Received: (qmail 87861 invoked by uid 500); 4 Jan 2007 17:58:13 -0000 Delivered-To: apmail-perl-modperl-archive@perl.apache.org Received: (qmail 87069 invoked by uid 500); 4 Jan 2007 17:58:09 -0000 Mailing-List: contact modperl-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list modperl@perl.apache.org Received: (qmail 86101 invoked by uid 99); 4 Jan 2007 17:58:03 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Jan 2007 09:58:03 -0800 X-ASF-Spam-Status: No, hits=3.3 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_POST,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: 205.188.190.91 is neither permitted nor denied by domain of rlandrum@aol.net) Received: from [205.188.190.91] (HELO inf-ld32.websys.aol.com) (205.188.190.91) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Jan 2007 08:16:40 -0800 Received: from hydrogen (hydrogen.office.aol.com [10.181.102.118]) by inf-ld32.websys.aol.com (Postfix) with ESMTP id E8FB23CC71; Thu, 4 Jan 2007 11:16:05 -0500 (EST) Received: from [127.0.0.1] (localhost [127.0.0.1]) by hydrogen (Postfix) with ESMTP id A6B17A56AA; Thu, 4 Jan 2007 11:19:56 -0500 (EST) Message-ID: <459D292C.1000706@aol.net> Date: Thu, 04 Jan 2007 11:19:56 -0500 From: Robert Landrum User-Agent: Thunderbird 1.5.0.8 (X11/20061117) MIME-Version: 1.0 To: "Snook, Adrian (London)" Cc: modperl@perl.apache.org Subject: Re: Bug Report References: <965DC1D036BF2244BEB424A3645D186A2A31590C@mllna201mb.uk.ml.com> In-Reply-To: <965DC1D036BF2244BEB424A3645D186A2A31590C@mllna201mb.uk.ml.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Snook, Adrian (London) wrote: > 3. This is the core dump trace: (if you get a core dump): > > Core was generated by `/home -k start'. > Program terminated with signal 11, Segmentation fault. > #0 0x002f201e in free () from /lib/tls/libc.so.6 > (gdb) bt full > #0 0x002f201e in free () from /lib/tls/libc.so.6 > No symbol table info available. > #1 0x0121d0a5 in nnfldlc () from /finman- > ds1/ora01/app/oracle/product/9.2.0/lib/libclntsh.so.9.0 > No symbol table info available. > #2 0x0121cad7 in nnflrlc () from /finman- > ds1/ora01/app/oracle/product/9.2.0/lib/libclntsh.so.9.0 > No symbol table info available. Hmm... Interesting. Everything looks good right up until this point, which I believe is attempting to resolve names. Oracle naming conventions suck. Just a shot in the dark... Try changing tnsnames.ora to connect to the IP address rather than the hostname, if that's what you're using. You should also be able to test this without apache. Just run a script with something like $|=1; while(1) { $dbh = DBI->connect(); $dbh->disconnect; print "Connected\n"; } Rob