Questions tagged [netflix-eureka]

AWS Service registry for resilient mid-tier load balancing and failover.

https://github.com/Netflix/eureka/

1623 questions
0
votes
1 answer

Eureka Service Startup Error

I have created a spring boot application to register my application in Eureka Service named 'eureka-service'. While running the application it is throwing error. I am using the boot version '2.0.1' here is the stack…
Vishnu
  • 176
  • 1
  • 2
  • 19
0
votes
1 answer

Netflix OSS Eureka Spring boot 2.0 app on K8s returning name instead of ip address

I am trying to deploy a spring boot netflix OSS discovery server on kubernetes. The server deploys fine and my apps register with the server and I even get an instance url back when I query the using the Eureka client. @Autowired private…
jjenksy
  • 13
  • 4
0
votes
0 answers

Eureka Server does not show configserver micro service - Why?

I have a created a config server and enabled discovery client on it but my problem is on my eureka server GUI it is not showing under applications tab. My code is: @EnableEurekaServer @SpringBootApplication public class EurekaServerApplication { …
T-Bag
  • 10,916
  • 3
  • 54
  • 118
0
votes
0 answers

App is not discvorable in PCF Cloud with Service Registry

I have configured a service and client and deployed into PCF Cloud. I have also bind both apps to Service Registry. As I have bind services with Service Registry, I am trying to access service app in client using it's name configuredd in…
user09
  • 920
  • 2
  • 12
  • 38
0
votes
1 answer

What is the Benefit of registering Zuul Proxy server to Eureka Server?

I am new to microservices and currently designing an application. I have one eureka server for testing and one Zuul proxy server, I can connect to the services via Zuul even if it's registered or not registered to the Eureka server. My zuul config…
0
votes
1 answer

Feign HATEOS response contains wrong server,port information

I am working on Spring Cloud and using the sample project by Josh Long at Bootiful Microservice by Josh Long There is an API gateway reservation-client which consumes data from the service reservation-service which provides a HATEOAS response,…
Anoop Hallimala
  • 625
  • 1
  • 11
  • 25
0
votes
0 answers

CamelCase resgitraiton of eureka app using REST API

I'm using eureka server,Config server and zuul server,and registering a rest service using Eureka REST API provided at Eureka REST Operations eureka url to register : http://localhost:8761/eureka/apps/DemoClient with post body as below : { …
0
votes
1 answer

Testing Spring Boot Eureka Server 404

I'm trying to test authentication in my Spring Boot Eureka Server. To do so, I perform a GET on /eureka/apps. I get a 404 instead of 200. @RunWith(SpringRunner.class) @WebAppConfiguration @SpringBootTest(classes = Application.class) public class…
user5365075
  • 2,094
  • 2
  • 25
  • 42
0
votes
3 answers

Spring-boot eureka.datacenter property not found when used in application.yml

I am creating spring-boot Eureka server and client micro-services to deploy on aws. I have read on tutorials that I have to define eureka.datacenter: cloud in my application.yml of eureka server so that it knows it is on aws. But when I try to use…
anujprashar
  • 6,263
  • 7
  • 52
  • 86
0
votes
1 answer

Can I use Netflix Eureka with Kubernetes?

I am deploying a microservice application in kubernetes cluster. And one of the services it has is Neflix Eureka for service discovery. My Question : Is it possible to deploy Neflix Eureka from kubernetes? Because if the other Pods try to register…
Anand Mohan
  • 31
  • 1
  • 4
0
votes
2 answers

Jersey Not Defined in Spring Cloud Edgware

I upgraded one of our Spring Boot services from looking like this in the POMs: org.springframework.boot spring-boot-starter-parent 1.5.5.RELEASE
0
votes
0 answers

The Hazelcast client from the Spring Boot/Eureka code samples does not work

Had an attempt to use the samples provided here https://github.com/hazelcast/hazelcast-code-samples/tree/master/hazelcast-integration/springboot-eureka-partition-groups. Everything goes well, meaning the eureka server registers correctly as many…
Alin B
  • 1
  • 1
0
votes
0 answers

Multiple turbine clusters by specific services

I have two services(spring cloud applications) implementing fallbacks, let's say service1 and service2. Now i want to have 2 clusters, cluster 1 contains service1 and service 2 and another cluster which only contains dash for service1. Here is the…
0
votes
1 answer

Eureka get self instance

I'm using Spring-Eureka for microservice discovery. I just implemented this bit and I want to maintain other parts of the system before I fully switch to service discovery. The services published their host address which was configured by…
Amanuel Nega
  • 1,899
  • 1
  • 24
  • 42
0
votes
2 answers

Docker compose cross containers communication

I'm a very beginner in docker world, and I'm not able to make two containers communicate using docker compose. I have two containers: Service Registry: a simple spring boot application using Netflix Eureka to implement a service registry feature.…
Hedi Ayed
  • 371
  • 2
  • 3
  • 12