http://www.perlmonks.org?node_id=830618


in reply to Re: Net::OpenSSH in a mod_perl handler
in thread Net::OpenSSH in a mod_perl handler

This got me one step further: [Wed Mar 24 18:16:06 2010] [error] [client 127.0.0.1] child process STDOUT is not a real system file handle at /tmp/lib/test/openssh.pm line 40\n

After setting the default_stdout_fh option using the same schema the $ssh->system command works, at least with mod_perl 2. $ssh->capture still does not work; there is no error, but also nothing is captured.

Replies are listed 'Best First'.
Re^3: Net::OpenSSH in a mod_perl handler
by salva (Canon) on Mar 25, 2010 at 00:04 UTC
    The issue was related to STDIN and STDOUT not being attached to file descriptors 0 and 1 respectively under mod_perl.

    Can you try version 0.46_01 that I have just uploaded to CPAN?

      Excellent! This fixes the problem, at least with mod_perl 1 (mod_perl 2 not tested).