Spring客户端无法向Eureka注册(MiniShift)

时间:2019-08-21 10:00:24

标签: spring-cloud netflix-eureka minishift

我的Spring Eureka服务器YAML配置。这是

spring:
  application:
    name: discovery-service

eureka:
  instance:
    hostname: spring-cloud-gateway.discovery.svc    # it should be service url in openshift cluster.
  client:
    eureka-server-connect-timeout-seconds: 5
    enabled: true
    fetch-registry: false
    register-with-eureka: false
    service-url:
      defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
server:
  port: 8761

我使用OpenShift控制台上显示的服务器URL。

selectors:
    app=spring-cloud-gateway, deploymentconfig=spring-cloud-gateway 
Type:
    ClusterIP
IP:
    172.30.167.146
Hostname:
    spring-cloud-gateway.discovery.svc 
Session affinity:
    None

显示eureka服务器状态的日志是这个。

2019-08-21 09:01:00.921  INFO 7 --- [      Thread-11] e.s.EurekaServerInitializerConfiguration : Started Eureka Server
2019-08-21 09:01:00.991  INFO 7 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 8761 (http) with context path ''
2019-08-21 09:01:00.998  INFO 7 --- [           main] .s.c.n.e.s.EurekaAutoServiceRegistration : Updating port to 8761
2019-08-21 09:01:01.007  INFO 7 --- [           main] c.o.g.DiscoveryServiceApplication        : Started DiscoveryServiceApplication in 56.204 seconds (JVM running for 66.164)
2019-08-21 09:02:00.839  INFO 7 --- [a-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry  : Running the evict task with compensationTime 0ms
2019-08-21 09:03:00.839  INFO 7 --- [a-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry  : Running the evict task with compensationTime 0ms
2019-08-21 09:04:00.841  INFO 7 --- [a-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry  : Running the evict task with compensationTime 1ms
2019-08-21 09:05:00.843  INFO 7 --- [a-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry  : Running the evict task with compensationTime 2ms
2019-08-21 09:06:00.843  INFO 7 --- [a-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry  : Running the evict task with compensationTime 0ms
2019-08-21 09:07:00.843  INFO 7 --- [a-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry  : Running the evict task with compensationTime 0ms
2019-08-21 09:08:00.851  INFO 7 --- [a-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry  : Running the evict task with compensationTime 8ms
2019-08-21 09:09:00.856  INFO 7 --- [a-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry  : Running the evict task with compensationTime 4ms
2019-08-21 09:10:00.860  INFO 7 --- [a-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry  : Running the evict task with compensationTime 4ms
2019-08-21 09:10:59.206  WARN 7 --- [eerNodesUpdater] c.n.eureka.cluster.PeerEurekaNodes       : The replica size seems to be empty. Check the route 53 DNS Registry
2019-08-21 09:11:00.865  INFO 7 --- [a-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry  : Running the evict task with compensationTime 4ms
2019-08-21 09:12:00.866  INFO 7 --- [a-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry  : Running the evict task with compensationTime 0ms
2019-08-21 09:13:00.885  INFO 7 --- [a-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry  : Running the evict task with compensationTime 18ms

REST端点客户端YAML配置。是这个。

spring:
  application:
    name: second-service
server:
  port: 8087

eureka:
  instance:
    preferIpAddress: false
  client:
    service-url:
      defaultZone: http://spring-cloud-gateway.discovery.svc:8761/eureka/

而且似乎没有注册。

        2019-08-21 09:46:12.416 ERROR 7 --- [tbeatExecutor-0] c.n.d.s.t.d.RedirectingEurekaHttpClient  : Request execution error. 

endpoint=DefaultEndpoint{ serviceUrl='http://spring-cloud-gateway.discovery.svc:8761/eureka/ }
    com.sun.jersey.api.client.ClientHandlerException: org.apache.http.conn.ConnectTimeoutException: Connect to spring-cloud-gateway.discovery.svc:8761 timed out
        at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:187) ~[jersey-apache-client4-1.19.1.jar!/:1.19.1]
        at com.sun.jersey.api.client.filter.GZIPContentEncodingFilter.handle(GZIPContentEncodingFilter.java:123) ~[jersey-client-1.19.1.jar!/:1.19.1]
        at com.netflix.discovery.EurekaIdentityHeaderFilter.handle(EurekaIdentityHeaderFilter.java:27) ~[eureka-client-1.9.8.jar!/:1.9.8]
        at com.sun.jersey.api.client.Client.handle(Client.java:652) ~[jersey-client-1.19.1.jar!/:1.19.1]
        at com.sun.jersey.api.client.WebResource.handle(WebResource.java:682) ~[jersey-client-1.19.1.jar!/:1.19.1]
        at com.sun.jersey.api.client.WebResource.access$200(WebResource.java:74) ~[jersey-client-1.19.1.jar!/:1.19.1]

我尝试使用公开的URL(http://spring-cloud-gateway-discovery.192.168.42.79.nip.io/eureka)检查eureka服务器的Web ui,但返回此页面。

enter image description here

NAME                                            HOST/PORT                                             PATH      SERVICES               PORT       T
ERMINATION   WILDCARD
route.route.openshift.io/spring-cloud-gateway   spring-cloud-gateway-discovery.192.168.42.79.nip.io             spring-cloud-gateway   8080-tcp    
             None
NAME                           TYPE        CLUSTER-IP       EXTERNAL-IP   PORT(S)    AGE
service/spring-cloud-gateway   ClusterIP   172.30.167.146   <none>        8080/TCP   23h

服务器或客户端是否有问题?

eureka服务器是project-1的一部分,其余服务客户端是project-2的一部分。这就是我在Openshift控制台中进行设置的方式。那是问题吗 ?我不这么认为。

更新:我将所有内容都移到了同一项目中,但仍显示错误。

2019-08-22 06:45:39.412  WARN 7 --- [tbeatExecutor-0] c.n.d.s.t.d.RetryableEurekaHttpClient    : Request execution 
failed with message: org.apache.http.conn.ConnectTimeoutException: Connect to spring-cloud-gateway.discovery.svc:8761 timed
 out
2019-08-22 06:45:39.413 ERROR 7 --- [tbeatExecutor-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_SE
COND-SERVICE/spring-cloud-gateway-5-bh8rj:second-service:8087 - was unable to send heartbeat!
com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server

1 个答案:

答案 0 :(得分:0)

您的错误日志中显示“超时”和“无法发送心跳”,这可能是客户端注册表的问题,这是由于运行docker容器使用yml / properties文件中指定的端口启动服务所导致的。

我将微服务部署到Cloud Foundry时遇到了相同的问题,尽管我可以在本地成功运行它们。我想根本原因是相同的。

解决方案: 使用安全/非安全端口代替“ server.port”。

这是示例(使用nonSecure端口),祝您好运。

如果eureka服务器与客户端之间仍然存在连接问题,则可以尝试在http://spring-cloud-gateway.discovery.svc/eureka/apps上找到详细信息。

Eureka服务器:

spring:
  application:
    name: discovery-service

eureka:
  instance:
    hostname: spring-cloud-gateway.discovery.svc
    nonSecurePortEnabled: true
    nonSecurePort: 80
    homePageUrl: http://${eureka.instance.hostname}/
    statusPageUrl: http://${eureka.instance.hostname}/actuator/info/
    healthCheckUrl: http://${eureka.instance.hostname}/actuator/health/
  client:
    fetch-registry: false
    register-with-eureka: false
    service-url:
      defaultZone: http://${eureka.instance.hostname}/eureka/

尤里卡客户:

spring:
  application:
    name: second-service

eureka:
  instance:
    nonSecurePortEnabled: true
    nonSecurePort: 80
    hostname: <your_client_host> # or you can use preferIpAddress: true
    homePageUrl: http://${eureka.instance.hostname}/
  client:
    service-url:
      defaultZone: http://spring-cloud-gateway.discovery.svc/eureka/
相关问题