我有一个ec2实例,我想将文件上传到其中。我是这样做的:
我从AWS管理控制台找到了公共DNS。
然后我运行了scp
命令并得到了它。
scp -v helloworld.java ec2-user@ec2-204-236-198-218.compute-1.amazonaws.com:/home
Executing: program /usr/bin/ssh host ec2-204-236-198-218.compute-1.amazonaws.com, user ec2-user, command scp -v -t -- /home
OpenSSH_5.5p1, OpenSSL 1.0.0d-fips 8 Feb 2011
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to ec2-204-236-198-218.compute-1.amazonaws.com [204.236.198.218] port 22.
debug1: Connection established.
debug1: identity file /home/dassio/.ssh/id_rsa type -1
debug1: identity file /home/dassio/.ssh/id_rsa-cert type -1
debug1: identity file /home/dassio/.ssh/id_dsa type -1
debug1: identity file /home/dassio/.ssh/id_dsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3
debug1: match: OpenSSH_5.3 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.5
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host 'ec2-204-236-198-218.compute-1.amazonaws.com' is known and matches the RSA host key.
debug1: Found key in /home/dassio/.ssh/known_hosts:6
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Trying private key: /home/dassio/.ssh/id_rsa
debug1: Trying private key: /home/dassio/.ssh/id_dsa
debug1: No more authentication methods to try.
Permission denied (publickey).
lost connection
为什么会这样?
答案 0 :(得分:2)
您使用的IP地址是一个内部网络地址,只能从EC2可用区内部到达。
您需要使用外部地址来访问实例。您可以使用ec2-describe-instances
找到此信息。地址可能类似于ec2.x-x-x-x.blah.amazonaws.com。
此外,虽然您似乎已经在命令行中使用过,但您可能已经允许通过EC2防火墙访问端口22到您的实例。
答案 1 :(得分:1)
Caleb是对的。我必须向亚马逊提供一些证件。语法如下:
scp -i YOUR_KEY_PAIR FILE_WANT_TO_UPLOAD ec2-user@ec2.x-x-x-x.blah.amazonaws.com:/home/ec2-user
你无法上传到主目录(我猜是因为你使用的是ec2用户名)。
ec2.x-x-x-x.blah.amazonaws.com
是Caleb提到的外部地址。我在原始问题中所做的是从ifconfig
命令获取内部地址。再次抱歉弄乱了这个问题。