SCP日志文件到服务器

时间:2018-07-27 18:35:31

标签: ssh scp

您好,我尝试向SCP提供日志文件,但我不断出错

Warning: Identity file ids-east-1.pem not accessible: No such file or directory.
ec2-11.com: Permission denied (publickey).
lost connection

我已经尝试了前面介绍的所有解决方案,但似乎无法找出问题所在。 我正在使用的密钥是:

scp -r -i ids-east-1.pem ~/int/resources/tests/tasks/lib/testing.log ec2-user@11.com:/home/wn/shelf/wrDb/fractions

提醒一下,我可以使用以下命令从此服务器获取日志文件:

scp -i ids-east-1.pem ec2-user@11.com:/home/wn/shelf/wrDb/fractions/chrono.log ~/Desktop/aws_chrono.log

1 个答案:

答案 0 :(得分:1)

如果一个命令有效,但另一个命令给您:

Warning: Identity file ids-east-1.pem not accessible: No such file or directory.

您可能不在同一目录中运行命令。尝试完全指定密钥路径(类似):

scp -i ~/.ssh/ids-east-1.pem ...