Re: mod_perl[12] + DBD::Oracle under Debian

2006-06-28 Thread Philip M. Gollucci
PerlSetEnv ORACLE_HOME /usr/local/instantclient_10_2 PerlRequire startup.pl You might also look at PerlPassEnv. -- Philip M. Gollucci ([EMAIL PROTECTED]) 323.219.4708 Consultant / http://p6m7g8.net/Resume/resume.shtml Seni

mod_perl[12] + DBD::Oracle under Debian

2006-06-28 Thread Rob Bloodgood
So, this problem just took 2 days away from me: I'm moving a site we have running on an *old* RedHat box to a new Debian sarge box. Which means, of course, I have to make sure all of the pieces are working. A critical piece is, of course, the Database driver, which in my case is Oracle. Our DB

Re: memory leaks

2006-06-28 Thread Jonathan Vanasco
On Jun 28, 2006, at 6:30 PM, Philip M. Gollucci wrote: Jonathan Vanasco wrote: i'm using Crypt::OpenSSL::RSA it has a memory leak when generating keys > 512 i generate keys 1024 i'm thinking that using sizelimit (i already do) should reclaim the memory every so often when the child dies unl

Re: memory leaks

2006-06-28 Thread Philip M. Gollucci
Jonathan Vanasco wrote: i'm using Crypt::OpenSSL::RSA it has a memory leak when generating keys > 512 i generate keys 1024 i'm thinking that using sizelimit (i already do) should reclaim the memory every so often when the child dies unless the memory leak is happening elsewhere, not sure.

memory leaks

2006-06-28 Thread Jonathan Vanasco
i'm using Crypt::OpenSSL::RSA it has a memory leak when generating keys > 512 i generate keys 1024 i'm thinking that using sizelimit (i already do) should reclaim the memory every so often when the child dies unless the memory leak is happening elsewhere, not sure. i only call the routi

Re: use of STDERR in forked children

2006-06-28 Thread Andrew C. Stayart III
I always keep separate logs for forked processes because i have no idea how to make that work flawlessly. but if you are really desperate, you could do something as bizarre as POSTing your log messages-from the forked process-to an apache process that simply echos the posted data to the apa

use of STDERR in forked children

2006-06-28 Thread Matthew Smith
Hi, I originally posted this to the embperl listserv, but I haven't gotten any responses. So maybe somebody here can help me. I hope! I'm working on a mechanism to fork a a long running child process. I've followed the standard mod_perl forking wisdom in http://modperlbook.org/html/ch10_02.htm