keijack / python-eureka-client

A eureka client written in python. Support registering your python component to Eureka Server, as well as calling remote services by pulling the the Eureka registry.
MIT License
184 stars 43 forks source link

Eureka server [http://localhost:8761/] is down, use next url to try. #22

Closed rainkidpk closed 4 years ago

rainkidpk commented 4 years ago

Hello, when i use this library, i receive error " Eureka server [http://localhost:8761/] is down, use next url to try."

when I click on the link above,The path I received was "http://localhost:8761/%5D" what "%5D", Is it an error?

pls support

keijack commented 4 years ago

Hi, %5D is the encoded character of ] , I think it's not the main problem, what's the result if you just curl http://localhost:8761/?

adventl commented 4 years ago

Hi Keijack, I am getting the same issue as rainkidpk

I have tried using Postman to send a get request to http://localhost:8761/ and got the HTML page in response

keijack commented 4 years ago

What if to set the eureka url as http://localhost:8761/eureka?

DKMDebugin commented 4 years ago

Adding /eureka to the URI worked for me. Thanks