Re: Please help: resource limit for running Perl under Apache?

2017-05-22 Thread John Dunlap
any hint. > > Thanks again. > > -Original Message- > From: André Warnier (tomcat) [mailto:a...@ice-sa.com] > Sent: Monday, May 22, 2017 7:35 PM > To: modperl@perl.apache.org > Subject: Re: Please help: resource limit for running Perl under Apache? > > Hi. > >

RE: Please help: resource limit for running Perl under Apache?

2017-05-22 Thread ST Wong (ITSC)
ndré Warnier (tomcat) [mailto:a...@ice-sa.com] Sent: Monday, May 22, 2017 7:35 PM To: modperl@perl.apache.org Subject: Re: Please help: resource limit for running Perl under Apache? Hi. It sounds like what you need to do is : add some logging directly in your perl script, to a separate logfile. (And may

Re: Please help: resource limit for running Perl under Apache?

2017-05-22 Thread tomcat
Hi. It sounds like what you need to do is : add some logging directly in your perl script, to a separate logfile. (And maybe re-open STDERR to that same logfile). Then you will see exactly where and why the perl script crashes under Apache. Do not forget that when the perl script runs under Apach

Please help: resource limit for running Perl under Apache?

2017-05-22 Thread ST Wong (ITSC)
Hi, I've a Perl script that does following: - Ssh to a device and get information, e.g.: open(DEV, "/usr/bin/ssh -v statuser\@192.168.11.1 sh get client list| "); - Loop through the result and display as html. The Perl script can complete without problem when run in bash or i