如何在EC2服务器之间rsync / scp文件/文件夹?

时间:2013-05-03 08:44:35

标签: ssh rsync scp private-key

我尝试在两台EC2服务器之间执行scp / rsync命令,但我得到的错误是低快照。

通常当我通过PuTTY ssh connect到我的服务器时,我需要附加一个私钥。所以我能猜到的是命令需要密钥。

我不知道如何在命令中添加密钥。请帮忙!

enter image description here

1 个答案:

答案 0 :(得分:2)

man scp会显示选项-i

  -i identity_file
         Selects the file from which the identity (private key) for RSA authentication is read.  This option is directly passed to ssh(1).

由于该选项已传递给ssh(如上所述),因此可以将其传递给rsync-e "ssh -i /path/to/private/key"