5

I created a Node.js (Using ExpressJS) microservice and registered it with Eureka Discovery Server using eureka-js-client.

I already have some Java based microservices registered with Eureka and using it through Zuul API Gateway.

When I try to invoke a specific endpoint on my Node.js micro-service via API Gateway, it throws an error:

Caused by: com.netflix.client.ClientException: Load balancer does not 
have available server for client: tryout

Note: tryout is the name of my demo service application.

g00glen00b
  • 41,995
  • 13
  • 95
  • 133
dileep keeppalli
  • 129
  • 1
  • 2
  • 12

1 Answers1

0

i had the same issue setting vipAddress same as the app name

vipAddress: your_app_name

in the eureka client config solved it.