Questions tagged [configserver]

88 questions
0
votes
1 answer

https websites getting stooped automatically 443 port

We are using cPanel with CSF Firewall. The port 443 getting blocked in CSF firewall and all the websites running with https getting stooped automatically. There is no issue with port 80 and websites running without SSL working fine. If we restart…
Praveen
  • 11
  • 3
0
votes
1 answer

How to read the properties defined in config server inside the express

I have config server which is a containerized. now my task to create a API in express. the problem i am facing is how to read the common properties defined in the config server in my express api.
Debi
  • 1
  • 1
0
votes
1 answer

How to redirect http to https without trailling slash in apache?

I want to redirect a url from http to https but if the url doesn't have traillin slash it won't be redirect. I tried many way as I'm noobie in Apache I haven't done it. this is the config: ServerName mydomain.nl …
Kourosh
  • 917
  • 1
  • 11
  • 24
0
votes
1 answer

Spring Boot Config Server - Always returning old values

Config client is unable to fetch the changed property values from the modified property files in Git. I need assistance in resolving this issue. I created a new spring config server and client. Initially the values from the property files were…
VRamesh
  • 25
  • 1
  • 6
0
votes
1 answer

ConfigServer clones the whole branch from gitlab creating space issue in PCF

In My project we want to use existing gitlab project repo for the config server rather than maintaining a different repo for a particular service. Now we have deployed the config server in PCF with 1 GB of disk space but looks like 1 GB is not…
p.k
  • 57
  • 1
  • 1
  • 5
0
votes
1 answer

How to setup Pivotal Cloud Foundry Config Server to use multiple search paths from my git repo?

I have a local config server and it works okay with yml configurations setup like this? spring: cloud: config: server: git: uri: https://github.com/xxx/xxxxx search-paths: - 'kenya*' -…
IsaacK
  • 1,178
  • 1
  • 19
  • 49
0
votes
1 answer

How to run spring boot application multiple instance when get resource from config server?

I have Eureka server, Eureka zuul and config server. So I write a simple microservice. Then, running on 8686 port. So I want to run that microservice on another port. I trying that command. But don't work. java -Dserver.port=8687 -jar…
Nyamkhuu Buyanjargal
  • 621
  • 2
  • 11
  • 29
0
votes
0 answers

Fallback resource when git goes down, while starting the config server itself

New to spring boot. My question is, "at the time of running" the spring boot app, if the git url is down/not available, then I want to have fallback. My code looks like, spring: application: name: myconfigservername profiles: include:…
0
votes
1 answer

Spring Cloud Config Server serving nested plain text files

I have a Config Server up and running, with the relevant application.yml setting of spring: application: name: config ... searchPaths: - '{application}' - '{application}/{profile}' I would like to access a file that…
jeremysprofile
  • 10,028
  • 4
  • 33
  • 53
0
votes
1 answer

Application.yml for config server not readable

I have a config server whose config file for client app looks like this . #!/bin/bash echo "Choosing Project..." IP="10.90.21.244"; Port=9011; Options="--spring.cloud.config.profiles.active=native --…
0
votes
0 answers

Avoid resetting HikariCP datasource connection pool on property change/refresh

I am using spring boot 2 with PCF config server to use centrallized config. My microservice is basic crud rest service. What I noticed is that whenever a property is being changed and http post is being made on "actuator/refresh" endpoint, spring…
0
votes
1 answer

Spring config server set up IllegalStateException: You need to configure a uri for the git repository

I was trying to set up the Spring Config server. Even If I am giving a bitbucket url in the config server application's bootstrap.yml, I am still getting exceptions. Below is the sample from my bootstrap.yml (config-server) spring.application.name:…
0
votes
1 answer

Problems reading configuation using Spring cloud config with GIT

I am following the Spring cloud config sample from spring.io. Trying to read a property from properties file by using git. I tried the suggestions given in Stackoverflow for similar questions but it did not work. Any insights to help solve this…
Suresh
  • 515
  • 1
  • 8
  • 21
0
votes
0 answers

Restful Webservice Plus Config Server Plus GitHub

What is Developed: Springboot Restful webservice App is deployed to Pivotal Cloud Foundry. Config server connects to Github and loaded all the property files. Springboot App connects to Config Server to read the properties. Springboot App will be…
IMNash
  • 25
  • 1
  • 1
  • 9
0
votes
1 answer

How to return a null value from config server in PCF?

I am trying to receive a null value from the Config Server in a microservice. I have tried "null" (without quotes) as well as "${null}" (also without quotes) in the application.yml the config server is referencing. Both served an empty string. Is…