5
votes

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.

1
Were you able to resolve this issue?Chakradhar Vyza

1 Answers

0
votes

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

vipAddress: your_app_name

in the eureka client config solved it.