好的,我花了一个星期的时间试图解决这个问题,看了一遍,我看到了很多解决方案......问题是它们都不适合我。我有来自amazon.com的linux EC2实例。我想将一些文件从那个vps移动到我的电脑......我目前正在从Putty连接它,但我已经尝试过Filezilla以及其他类似的东西。当我使用命令
scp root@ip-xx-xx-xx-xx:/home/ec2-user/filefolder/folder-i-want-to-transfer C:/
我得到以下内容:
The authenticity of host 'ip-xx-xx-xx-xx (xx.xx.xx.xx)' can't be established.
RSA key fingerprint is xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'ip-xx-xx-xx-xx,xx.xx.xx.xx' (RSA) to the list of known hosts.
Permission denied (publickey).
如果可以,请帮忙。
答案 0 :(得分:0)
我看到两个可能的问题:
我不会告诉你如何解决第一个问题;创建另一个用户帐户并通过该帐户传输文件。
对于第二种情况,您需要告诉您的工具不要使用任何密钥。
scp -i NUL: ...
scp -i /dev/null ...
然后,您应该可以使用帐户的密码登录。