SSH 连接到 EC2 实例的 natty 操作超时
新手已经连续 5 小时尝试 ssh 进入 ec2。他们还能对新手变得不友好吗?尝试了 4-5 个不同的教程,但没有效果。我已将 cert 和 pk 保存在 .ec2 文件夹和 .ssh 文件夹中的密钥对。这里变量太多(需要端口授权?,需要 ubuntu uni/multiverse?,语法问题?)。大家有什么想法吗?
ssh -v -v -i *****.pem [email protected]
OpenSSH_5.2p1, OpenSSL 0.9.8l 5 Nov 2009
debug1: Reading configuration data /etc/ssh_config
debug2: ssh_connect: needpriv 0
debug1: Connecting to ec2-XX-XX-XX-XX.us-west-1.compute.amazonaws.com [XX.XX.XX.XX] port 22.
debug1: connect to address XX-XX-XX-XX port 22: Operation timed out
ssh: connect to host ec2-XX-XX-XX-XX.us-west-1.compute.amazonaws.com port 22: Operation timed out
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您的安全组中打开了端口吗? - 如果不允许端口 22 用于您要连接的 IP。
do you have the port opened in your security group ? - if not allow port 22 for the ip's from where you want to connect.
正如 Paul 所说,默认安全组会阻止 ssh。您可以在“安全和组”下启用它。
此外,此信息列在 Amazon 文档中,网址为 http://docs.amazonwebservices.com/AmazonEC2/gsg/2006-06-26/running-an-instance.html
As Paul says, the default security group blocks ssh. You can enable it under "Security & Groups".
Also, this information is listed in the Amazon documentation at http://docs.amazonwebservices.com/AmazonEC2/gsg/2006-06-26/running-an-instance.html
正如 Deanpcmad 所说:
因此连接到:
As deanpcmad said:
So connect to:
我遇到了同样的问题,Dean Perry 的答案对我有用。如果您设置弹性 IP,则需要通过 SSH 连接到该新 IP,而不是公共 DNS。
I had the same problem and The Dean Perry's answer worked for me.If you setup an elastic IP, you need to connect via SSH to that new IP, not the public DNS.