springcloud(connect to localhost:8761 timed out)


yml文件设置

server:
  port: 7001
eureka:
  instance:
    hostname: www.eureka.7001.com 
  client:
    register-with-eureka: false #false表示不向注册中心注册自己。
    fetch-registry:  false #false表示自己端就是注册中心,我的职责就是维护服务实例,并不需要去检索服务
    service-url:
      defaulteZone: http://www.eureka.7002.com:7002/eureka,http://www.eureka.7003.com:7003/eureka

标红的位置,是单词错了(defaultZone)

defaulteZone改成defaultZone

猜你喜欢

转载自blog.csdn.net/wang20y8/article/details/84990974