Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Running a Net::SFTP::Foreign script from cron

by grep (Monsignor)
on Nov 07, 2006 at 21:15 UTC ( [id://582734]=note: print w/replies, xml ) Need Help??


in reply to Running a Net::SFTP::Foreign script from cron

Your cron does not have access to your shell PATH and Net::SFTP::Foreign uses the ssh command line utility (as opposed to Net::SFTP which is pure-perl). ssh is not in cron's path (but it is in yours), so Net::SFTP::Foreign can't find it

The remedy is either to switch to Net::SFTP or to set ssh_cmd => $sshcmd to the full path of your ssh.

my $sftp = Net::SFTP::Foreign->new('host',{ ssh_cmd => '/usr/bin/ssh' +});


grep
One dead unjugged rabbit fish later

Replies are listed 'Best First'.
Re^2: Running a Net::SFTP::Foreign script from cron
by rah (Monk) on Nov 07, 2006 at 21:29 UTC
    Thank you so much. I must have had one of those duh moments. ssh is in /usr/bin on my two systems that work (and therefore in my sparse cron environment), but installed elsewhere on my two systems that failed. Good catch. Works fine now.
Re^2: Running a Net::SFTP::Foreign script from cron
by uzzikie (Sexton) on Jun 15, 2011 at 03:18 UTC
    For Windows users, the process is slightly more convoluted.
    Seems like setting ssh_cmd => $sshcmd still results in a "Unable to connect: Connection to remote server is broken" error.

    My solution to this was to create a ".bat" batch file which contains the command to execute the script perl "D:\Projects\sftp.plx"
    Then using "Scheduled Task" to run the above batch file under a user account which can see the path specified in $ssh_cmd

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://582734]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-12-12 18:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which IDE have you been most impressed by?













    Results (65 votes). Check out past polls.