Thanks! I tried using Net::OpenSSH with key_path option.
my $key_path = "/home/tom/.ssh/id_file";
my $ssh = Net::OpenSSH->new(
$host,
key_path => $key_path,
);
$ssh->scp_put("$war_full_path", "$ENV{HOME}") or die "SCP failed: " .
+$ssh->error;
Now it fails with the message:
Permission denied (publickey).
SCP failed: unable to establish master SSH connection: master process exited unexpectedly at /home/tom/deploy.pl line 64
Line 64 is the above line where i am using scp_put
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.