AWS 中的服务器已关闭连接

AWS 中的服务器已关闭连接

昨天与 AWS 服务器的连接工作正常,但今天我尝试使用以下命令提示符进行连接:

ssh -i <mypemfile.pem> ubuntu@<my-ip-address>

我遇到了错误:

IP 地址关闭的连接

我还更改了安全组中的入站规则。

我尝试连接 filezilla、putty、winscp,但没有成功。请帮我找出问题所在。

我是从谷歌做的

ssh -v -i <mypemfile.pem> ubuntu@<my-ip-address>

它将显示以下内容

OpenSSH_6.6.1, OpenSSL 1.0.1m 19 Mar 2015
debug1: Connecting to 52.88.36.194 [52.88.36.194] port 22.
debug1: Connection established.
debug1: identity file instacare.pem type -1
debug1: identity file instacare.pem-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.6.1
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.6.1p1 Ubu
ntu-2ubuntu2
debug1: match: OpenSSH_6.6.1p1 Ubuntu-2ubuntu2 pat OpenSSH_6.6.1* compat 0x04000
000
debug1: SSH2_MSG_KEXINIT sent
Connection closed by 52.88.36.194

我也用 telnet 22 检查,它会显示以下行并卡住

SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2

请帮我找出我做错了什么。

答案1

这种情况通常是由于内存 RAM 或磁盘空间不足而发生的,这些空间用于分配新会话。您可以通过重新启动实例或等待它释放一些资源(这不太可能)来解决此问题

相关内容