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