使用docker部署springCloud应用网关zuul报forward错误问题 com.netflix.zuul.exception.ZuulException: Forwarding error

使用docker部署springCloud应用的时候,我们会使用到网关gateway,但是在使用的时候会出现各种问题,如标题所示,出现这种问题的原因很多,一半比较简单的,按照下面配置就没问题了,配置如下:

spring:
  application:
    name: platform-gateway
#  cloud:
#    config:
#      discovery:
#        enabled: true
#        service-id: CONFIG
#      profile: dev
server:
  port: 8083
eureka:
  client:
    service-url:
      defaultZone: http://localhost:8761/eureka
  instance:
    prefer-ip-address: true
zuul:
  routes:
    # platform-config可以随便命名
    platform-config:
      path: /config/**
      serviceId: config
      # 设置cookie可以传到服务器
      sensitiveHeaders:

  host:
    max-total-connections: 500
    max-per-route-connections: 50

ribbon:
  ReadTimeout: 6000
  ConnectTimeout: 6000
  eureka:
    enabled: true
management:
  security:
    enabled: false
hystrix:
  command:
    default:
      execution:
        timeout:
          enabled: true
        isolation:
          strategy: THREAD
          thread:
            timeoutInMilliseconds: 60000

如果你的配置和上面的一样,那么出现这种问题的原因就是docker的原因,docker在run镜像的时候,如果我们不指定启动的模式,默认是按照桥接模式启动,这样启动之后,是访问不到的,我们只需要在run的时候,改成host模式,问题解决,命令如下:

docker run -d -P --net host -v 持久化地址:持久化地址 -t 镜像名称

想了解原理,可以补充一下docker的知识。

你可能感兴趣的:(springCloud,docker,springCloud专项)