Questions tagged [jhipster-registry]

Like the JHipster generator, it is an Open Source, Apache 2-licensed application, and its source code is available on GitHub under the JHipster organization at jhipster/jhipster-registry.

The JHipster Registry has three main purposes:

  • It is a an Eureka server, that serves as a discovery server for applications. This is how JHipster handles routing, load balancing and scalability for all applications.
  • It is a Spring Cloud Config server, that provide runtime configuration to all applications.
  • It is an administration server, with dashboards to monitor and manage applications.

All those features are packaged into one convenient application with a modern Angular-based user interface.

To find more information :

172 questions
5
votes
1 answer

How to create new angular component in jhipster

I have created a new project using jhipster and imported it into Intellij. When i try to create a new angular component i get an error.Here is what i did: File >> New >> Angular cli >> component > ok. I get the following error: C:\Program…
Dante
  • 123
  • 1
  • 12
4
votes
2 answers

feign.RetryableException: Connection refused (Connection refused) executing POST

I am using spring cloud to configure microservices. I used Jhipster to generate the application. I have three applications JHipster-Registry, Gateway, and admin application All three application are deployed on separate machine/ip-address. admin and…
Sam
  • 1,298
  • 6
  • 30
  • 65
3
votes
0 answers

Issue installing jhipster-registry

Excuse my lack of technicality concerning this matter, as i am a solely beginner. so I'm trying to install a microservice application, so in order to do that , I need to install both gateway and microservice app and linked them through…
Ayman Erroutabi
  • 183
  • 2
  • 10
3
votes
1 answer

JHipster: Rest service calls return "401 Unauthorized" when routing through the gateway

I am new to micro services and JHipster, so please be patient and help me along where necessary. I have what I believe to be a configuration issue, but I cannot seem to find it. Here are some details: We are running a JHipster gateway with…
cvdmerwe
  • 31
  • 1
  • 4
3
votes
2 answers

How can I switch the active profile to "Dev" in JHipster micro-service app deployed to Kubernetes?

I have a micro-services based JHipster app and have generated a Kubernetes deployment script using the kubernetes sub-generator. I have deployed the app to Azure AKS and have it running smoothly. The current profile it is running with is 'prod'. How…
Omtara
  • 2,911
  • 2
  • 19
  • 31
3
votes
4 answers

Not able to access H2 Console in jhipster

I am not able to open H2 console on the web browser. My jhipster application is running on 8088 port. In server logs I am getting that H2 database is available on port 18088. Tried below. http://localhost:18088/h2-console Getting Below…
Rahul
  • 493
  • 3
  • 7
  • 25
3
votes
2 answers

error:Failed to execute goal com.google.cloud.tools:jib-maven-plugin:0.9.11:dockerBuild dockerizing JHipster-Registry

When I run this command: mvn -e package -Pprod verify jib:dockerBuild in jhipster-registry standard project, to dockerize this application, I get this error: [ERROR] Failed to execute goal com.google.cloud.tools:jib-maven-plugin:0.9.11:dockerBuild…
FChiri
  • 707
  • 8
  • 14
3
votes
1 answer

Jhipster: Mircoservice not registering with jhipster-registry

I created a microservice using jhipster (version of generator-jhipster is 5.0.1). It contains the following components: Microservice1 Jhipster Registry Keycloak as auth server If I start the microservice using the generated docker-compose config…
iwekesi
  • 2,228
  • 4
  • 19
  • 29
3
votes
1 answer

Jhipster Registry 4.0.0 exception pre-packaged WAR

When I run Gateway I get this error on Registry service. 2018-07-31 11:23:33.472 ERROR 1617 --- [get_localhost-3] c.n.e.cluster.ReplicationTaskProcessor : It seems to be a socket read timeout exception, it will retry later. if it continues to…
pronomy
  • 204
  • 4
  • 15
3
votes
2 answers

Connection refused: connect in jhipster

I am new to Jhipster. I have tried to run mvnw but request execution error of Connection refused: connect is occurred. 2017-07-14 10:36:17.411 INFO 19864 --- [ restartedMain] com.netflix.discovery.DiscoveryClient : Saw local status change…
nibun.p
  • 31
  • 1
  • 3
3
votes
1 answer

Configuring jhipster-registry v3.0.3 with Git repo

I am trying to use the pre-packaged v3.0.3 war file for the jhipster-registry. I am launching it with these command-line properties in an attempt to point it to my Git repo for configuration info: jhipster-registry-3.0.3.war…
David I.
  • 4,747
  • 3
  • 26
  • 34
2
votes
0 answers

Gateway not appearing in the jhipster registry

I have created a docker image for the gateway application, but when i run the command: docker-compose up only the microservice and the registry are UP but the gateway is not even appeared in the intances 22-08-25 10:57:23.661 ERROR 1 --- [ …
Khadija
  • 55
  • 5
2
votes
1 answer

How to specify a field name in an entity in jhipster

I have an existing database that I am using with jhipster, The issue is that I have a field named country_iso2 but it seems jhipster adds another underscore just before the number i.e country_iso_2. I have specified the column name in my dto class.…
mulikevs
  • 181
  • 2
  • 17
2
votes
0 answers

Jhipster registry not working on localhost

thanks in advance for this awesome stack platform that is jhipster. I have a question, I am trying to run a microservice directly with: ./mvnw -Pdev -DskipTests And I am getting (UnknownHostException --…
Juano7894
  • 703
  • 1
  • 8
  • 21
2
votes
1 answer

Invalid CORS request: JHipster registry on Azure webapp

I am trying to deploy default Jhipster-registry executable Jar file on Azure webapp. The applications starts and I can see the login page. However, when I put username/password and hit submit, I get error:Invalid CORS request (403 forbidden) I see…
1
2 3
11 12