swarm中无法连接Eureka
来源:6-5 微服务部署
lialzm
2018-09-29
Eureka部署在a容器
另一个微服务部署在b容器
进入b容器ping a可以返回ip
但是使用wget a 返回400
使用wget ip 返回Eureka页面
写回答
2回答
-
400一般就不是连接层面的问题了,从应用本身入手看问题
012018-09-30 -
lialzm
提问者
2018-09-29
version: '3.3'
services:
eureka_server:
image: "a"
deploy:
mode: replicated
replicas: 1
endpoint_mode: dnsrr
shumei:
image: "b"
deploy:
mode: replicated
replicas: 1
endpoint_mode: dnsrr
placement:
constraints:
- node.hostname == bd
depends_on:
- eureka_server
00
相似问题