AWS EC2:(连接被拒绝)连接到上游时

发布于 2025-01-10 03:35:15 字数 1342 浏览 0 评论 0原文

错误:

2022/02/25 05:25:23 [错误] 16292#16292: *1 connect() 失败 (111: 连接被拒绝),同时连接到上游,客户端:172.31.9.17, 服务器:,请求:“GET / HTTP/1.1”,上游: “http://127.0.0.1:5000/”,主机:“172.21.11.88”

这是我第一次在AWS EC2中上传全栈JAR文件。 Jar 文件包含 Thymleaf 网页和主要 java 代码。

我还在 AWS 中设置了 RDS。我将安全组更改为“允许在任何地方访问”,这样我就可以在本地 MySQL Workbench 上连接到它。至此,我就完成了 SQL 表的设置。

所以我上传了 JAR 文件。状态从健康变为严重。 当我访问应用程序的 URL 时,我得到:

在此处输入图像描述

application.properties

server.port=5000

AWS 安全组 输入图片此处描述

入站规则 输入图片此处描述

健康监测 输入图片此处描述

更新:

这是我的位置

在此处输入图像描述

这是导致我的错误的原因吗?

Error:

2022/02/25 05:25:23 [error] 16292#16292: *1 connect() failed (111:
Connection refused) while connecting to upstream, client: 172.31.9.17,
server: , request: "GET / HTTP/1.1", upstream:
"http://127.0.0.1:5000/", host: "172.21.11.88"

It's my first time uploading a fullstack JAR file in AWS EC2. Jar file contains Thymleaf web pages and the main java codes.

I've also done setting my RDS in AWS as well.I changed the security group to 'allow access' anywhere so I can connect to it on my local MySQL Workbench. By this, Im done setting up my SQL tables.

So I uploaded the JAR file. The status went from Healthy to Severe.
When I access the URL of my app I get this:

enter image description here

application.properties

server.port=5000

AWS Security Group
enter image description here

Inbound Rules
enter image description here

Health Monitoring
enter image description here

UPDATE:

Here's where Im at

enter image description here

Is this what's causing my errors?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

穿越时光隧道 2025-01-17 03:35:15

默认情况下,EB 希望您的应用程序侦听端口 5000。来自 文档

默认情况下,Elastic Beanstalk 将 nginx 代理配置为在端口 5000 上将请求转发到您的应用程序。您可以通过将 PORT 环境属性 设置为主应用程序侦听的端口来覆盖默认端口.

By default EB expects your app to listen on port 5000. From docs:

By default, Elastic Beanstalk configures the nginx proxy to forward requests to your application on port 5000. You can override the default port by setting the PORT environment property to the port on which your main application listens.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文