无法打开与 localhost:3101 的 TCP 连接 - Rails / Docker
Failed to open TCP connection to localhost:3101 - Rails / Docker
我正在尝试从我们的应用程序 ping 我们的一个 Rails 微服务(处理电子邮件),但出现标题错误。
我们的微服务 运行 在 docker localhost:3101
,而我们的应用也在 localhost:3000 docker - 我用 ping 了它邮递员请求,它工作正常。
我已经在我们的 ENV 变量中设置了我们的身份验证令牌和电子邮件服务 API,如下所示:-
EMAIL_SERVICE=http://localhost:3101
EMAIL_SERVICE_TOKEN=1234
这是我的 EmailService
:-
class EmailService
require 'net/http'
HEADER = { 'Content-Type': 'application/json' }.freeze
ENDPOINTS = {
root: ENV['EMAIL_SERVICE'],
test_email: {
post: {
url: '/api/test_email'
}
}
}
def initialize
@token = ENV['EMAIL_SERVICE_TOKEN']
end
def call_api(section, action, data, method='POST')
address_url = ENDPOINTS[section][action][:url]
uri = URI.parse("#{ENDPOINTS[:root]}#{address_url}")
# Create the HTTP objects
http = Net::HTTP.new(uri.host, uri.port)
if method == 'POST'
request = Net::HTTP::Post.new(
uri.request_uri,
HEADER
)
request.body = data.merge({ auth_token: @token }).to_json
else
request = Net::HTTP::Get.new(
uri.request_uri,
HEADER
)
end
http.use_ssl = true
response = http.request(request)
end
end
知道我错过了什么吗?
我假设这两个微服务 运行 在单独的 docker 容器上。
我认为问题在于,当 docker 从容器外部接收到您的请求,然后尝试向 localhost
发出 HTTP 请求时,它实际上是在向其 OWN localhost
(所以在容器内)而不是你机器的 localhost
。要解决此问题,不要尝试向 localhost
发送请求,而是让 docker 内的应用程序将请求发送到 host.docker.internal:DESIRED_PORT
,这会告诉 docker 使用 localhost
它是主机。
您可以在此处阅读更多相关信息:
https://docs.docker.com/docker-for-mac/networking/#use-cases-and-workarounds
我正在尝试从我们的应用程序 ping 我们的一个 Rails 微服务(处理电子邮件),但出现标题错误。
我们的微服务 运行 在 docker localhost:3101
,而我们的应用也在 localhost:3000 docker - 我用 ping 了它邮递员请求,它工作正常。
我已经在我们的 ENV 变量中设置了我们的身份验证令牌和电子邮件服务 API,如下所示:-
EMAIL_SERVICE=http://localhost:3101
EMAIL_SERVICE_TOKEN=1234
这是我的 EmailService
:-
class EmailService
require 'net/http'
HEADER = { 'Content-Type': 'application/json' }.freeze
ENDPOINTS = {
root: ENV['EMAIL_SERVICE'],
test_email: {
post: {
url: '/api/test_email'
}
}
}
def initialize
@token = ENV['EMAIL_SERVICE_TOKEN']
end
def call_api(section, action, data, method='POST')
address_url = ENDPOINTS[section][action][:url]
uri = URI.parse("#{ENDPOINTS[:root]}#{address_url}")
# Create the HTTP objects
http = Net::HTTP.new(uri.host, uri.port)
if method == 'POST'
request = Net::HTTP::Post.new(
uri.request_uri,
HEADER
)
request.body = data.merge({ auth_token: @token }).to_json
else
request = Net::HTTP::Get.new(
uri.request_uri,
HEADER
)
end
http.use_ssl = true
response = http.request(request)
end
end
知道我错过了什么吗?
我假设这两个微服务 运行 在单独的 docker 容器上。
我认为问题在于,当 docker 从容器外部接收到您的请求,然后尝试向 localhost
发出 HTTP 请求时,它实际上是在向其 OWN localhost
(所以在容器内)而不是你机器的 localhost
。要解决此问题,不要尝试向 localhost
发送请求,而是让 docker 内的应用程序将请求发送到 host.docker.internal:DESIRED_PORT
,这会告诉 docker 使用 localhost
它是主机。
您可以在此处阅读更多相关信息:
https://docs.docker.com/docker-for-mac/networking/#use-cases-and-workarounds