I ran into the same problem a couple weeks ago.
What worked fine on httpd running under Ubuntu 8.04 did not work at all under Fedora Core 8. Had to do with the httpd/daemon user using a different shell (sh vs bash), different user permissions, different TTY settings, etc, etc, etc.
My solution will be to use a daemonized Perl script running under a user account that will take care of the SSH behavior, while the CGI (or actually mod_perl2 in this case) portion just interacts with the daemon through a "queue" (in a MySQL database table).
I've used this pattern in the past for other reasons, and it has generally worked out very well. It also scales out a bit better too, since I could conceivably have multiple daemons running on different servers, each working from the same queue, leaving the httpd server to simply process web requests, instead of dealing with remote servers as well.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.