EC2 — ERR_CONNECTION_TIMED_OUT

EC2 — ERR_CONNECTION_TIMED_OUT

我有一个运行 Linux、apache Web 服务器和 nodejs 应用程序的 ec2 免费层实例。

我已经配置了安全组并且到目前为止运行正常。

但是现在我无法通过域或带有端口的 IP 访问服务器(端口已在入站规则中打开)。

我使用 ssh 连接到远程服务器并登录 pm2,但它工作正常。然后我使用 lynx 在命令中浏览 localhost,nodejs 应用程序仍在该端口上运行。

Apache 日志处于活动状态(正在运行)。

在我写这篇文章之前,我无法将 ssh 连接到服务器,实例的状态为 StatusCheckFailed_Instance,我重新启动实例,所以它工作正常。此后,大约 2 小时,我再次访问并遇到此问题。

有人能指出是什么导致了这个问题吗?谢谢。

更新

重新启动 ec2 实例后,它可以正常运行,但 10 分钟后无法连接到服务器。

我转到 error_log 中的 apache 日志。

[Sat Aug 22 17:28:34.698537 2020] [mpm_event:notice] [pid 5050:tid 140422190045376] AH00492: caught SIGWINCH, shutting down gracefully
[Sat Aug 22 17:32:05.288561 2020] [suexec:notice] [pid 3666:tid 140585338529984] AH01232: suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
[Sat Aug 22 17:32:05.314134 2020] [lbmethod_heartbeat:notice] [pid 3666:tid 140585338529984] AH02282: No slotmem from mod_heartmonitor
[Sat Aug 22 17:32:05.316840 2020] [mpm_event:notice] [pid 3666:tid 140585338529984] AH00489: Apache/2.4.43 () OpenSSL/1.0.2k-fips configured -- resuming normal operations
[Sat Aug 22 17:32:05.316866 2020] [core:notice] [pid 3666:tid 140585338529984] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
    

[Sat Aug 22 17:32:05.637067 2020] [proxy:error] [pid 3670:tid 140584547055360] (111)Connection refused: AH00957: HTTP: attempt to connect to 127.0.0.1:6969 (127.0.0.1) failed
[Sat Aug 22 17:32:05.637097 2020] [proxy_http:error] [pid 3670:tid 140584547055360] [client *****:****] AH01114: HTTP: failed to make connection to backend: 127.0.0.1, referer: https://***.herokuapp.com/profile

17:32 时我成功访问了 IP。10 分钟后它就挂了。但在日志文件中,即使在 17:32 时也出现错误。

这是我的 apache 配置。

<VirtualHost *:80>    
     ServerAdmin **@gmail.com    
     DocumentRoot /var/www/html/hhs_api    
     ServerName api.***.xyz    
     Redirect / https://api.***.xyz/
    <Directory "/var/www/html/hhs_api">
         Order deny,allow
         Allow from all
         AllowOverride All
         Require all granted
   </Directory>    
<Location />
</Location>    
</VirtualHost>

这是 SSL 配置

<VirtualHost _default_:443>
    SSLEngine On
    SSLProxyEngine On
    ProxyRequests Off
    ProxyPreserveHost On
    SSLProxyVerify none
    SSLProxyCheckPeerCN off
    SSLProxyCheckPeerName off
    SSLProxyCheckPeerExpire off
    ServerAdmin ***@gmail.com
    DocumentRoot /var/www/html/hhs_api
    ServerName api.***.xyz
    SSLCertificateFile "/etc/httpd/conf/hhs_api-ssl/certificate.crt"
    SSLCertificateChainFile "/etc/httpd/conf/hhs_api-ssl/ca_bundle.crt"
    SSLCertificateKeyFile "/etc/httpd/conf/hhs_api-ssl/private.key"

        ProxyPass /  http://127.0.0.1:6969/
        ProxyPassReverse / http://127.0.0.1:6969/

    <Directory "/var/www/html/hhs_api">
         Order deny,allow
         Allow from all
         AllowOverride All
         Require all granted
   </Directory>
</VirtualHost>

今天之前,一切都正常。我不知道为什么。

相关内容