> Program received signal SIGABRT, Aborted.
> [Switching to Thread 1024 (LWP 17423)]
> 0x40107781 in kill () from /lib/libc.so.6
> (gdb) source ~alexei/forge/furnace/libapache-mod-perl-1.26/.gdbinit
> (gdb) up
> #1  0x40373cd3 in Perl_my_unexec () from /usr/lib/libperl.so.5.6
> (gdb) curinfo
> Attempt to extract a component of a value that is not a structure pointer.

warzavod:~# perl -V:archlibexp
archlibexp='/usr/lib/perl/5.6.1';
warzavod:~# ls /usr/lib/perl/5.6.1/CORE/libperld.a
/usr/lib/perl/5.6.1/CORE/libperld.a

I rebuild mod_perl with PERL_DEBUG=1, restart process:
--------------
gdb /usr/sbin/apache
...
--------------
But result the same :(
--------------
Attempt to extract a component of a value that is not a structure pointer.
--------------

But...
I found a line in startup.pl, which brokes Apache:
use DBD::Oracle

I don't know why, but simple scripts on this machine kinda
--------------
use strict;
use DBI;

$ENV{ORACLE_HOME} = "/u01/app/oracle/product/8.1.7";
$ENV{NLS_LANG} = "AMERICAN_AMERICA.CL8MSWIN1251";

my $dbh = DBI->connect('DBI:Oracle:SIMain', '', '');
my $news = $dbh->selectrow_array("select count(*) from portal.contents");
print "$news\n";
$dbh->disconnect;
--------------
works fine...

:-/
--
Sergey Polyakov                 aka BeerBong
Chief of WebZavod     http://www.webzavod.ru
Tel. +7 (8462) 43-93-85 | +7 (8462) 43-93-86
          mailto:[EMAIL PROTECTED]



-- 
Reporting bugs: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html

Reply via email to