Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know it is not recommended, but is it at all possible to pass the user's password to scp?

I'd like to copy a file via scp as part of a batch job and the receiving server does, of course, need a password and, no, I cannot easily change that to key-based authentication.

share|improve this question
See also (later) question: stackoverflow.com/questions/1462284/… where one answer mentions another possible way to do this. (NB: this is not a duplicate question - it is the original which the other duplicates.) – Jonathan Leffler Sep 22 '09 at 20:50

7 Answers

up vote 7 down vote accepted

You can script it with a tool like expect (there are handy bindings too, like Pexpect for Python).

share|improve this answer

Here is an example of how you do it with expect:

sub copyover {
    $scp=Expect->spawn("/usr/bin/scp ${srcpath}/$file $who:${destpath}
+/$file");
    $scp->expect(30,"ssword: ") || die "Never got password prompt from
+ $dest:$!\n";
    print $scp 'password' . "\n";
    $scp->expect(30,"-re",'$\s') || die "Never got prompt from parent 
+system:$!\n";
    $scp->soft_close();
    return;
}
share|improve this answer

Use "sshpass"!

#!/bin/bash
sshpass -p "password" scp -r user@example.com:/some/remote/path /some/local/path
share|improve this answer
This recently saved me a lot of trouble on a project, thanks :) – Elliott Apr 12 at 0:37

If you are connecting to the server from Windows, the Putty version of scp ("pscp") lets you pass the password with the -pw parameter.

share|improve this answer

An alternative would be add the public half of the user's key to the authorized-keys file on the target system. On the system you are initiating the transfer from, you can run an ssh-agent daemon and add the private half of the key to the agent. The batch job can then be configured to use the agent to get the private key, rather than prompting for the key's password.

This should be do-able on either a UNIX/Linux system or on Windows platform using pageant and pscp.

share|improve this answer

You can use the 'expect' script on unix/terminal

For example create 'test.exp' :

#!/usr/bin/expect
        spawn scp  /usr/bin/file.txt root@<ServerLocation>:/home
        set pass "Your_Password"
        expect {
        password: {send "$pass\r"; exp_continue}
                  }

run the script

expect test.exp 

I hope that helps.

share|improve this answer

just generate a ssh key like:

ssh-keygen -t rsa -C "your_email@youremail.com"

copy the content of ~/.ssh/id_rsa.pub and lastly add it to the remote machines ~/.ssh/authorization_keys

make sure remote machine have the permissions 0700 for ~./ssh folder and 0600 for ~/.ssh/authorized_keys

share|improve this answer
1  
As I wrote: No, I cannot easily switch to key-based authentication. – Argelbargel Mar 9 '12 at 12:53
it would be good for everyone to pass it on :) – mustafaturan Mar 10 '12 at 14:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.