Questions tagged [configserver]
88 questions
6
votes
1 answer
Spring Config Server encrypting issue of "=" sign
Can anyone experience problem while encrypting through config server with values having special characters?
Currently I am doing this
curl http://localhost:8888/configser/config/encrypt -d eF345edo=
I also referred this…

Shashank_Itmaster
- 2,465
- 5
- 30
- 56
5
votes
2 answers
Is setting active profie to "native", mandatory in spring boot 2 config server
I am trying to create an embedded config server in spring boot 2.1.6 version. The start-up fails saying:
***************************
APPLICATION FAILED TO START
***************************
Description:
Invalid config server…

Always a newComer
- 531
- 8
- 21
4
votes
0 answers
Spring Cloud Config Server with Vault - vault overrides any value from native profile
I am trying to mix native and vault profile with config server backend:
spring:
profiles:
active: native, vault
cloud:
config:
server:
native:
searchLocations: classpath:/abc
vault:
kv-version:…

SuperAndrew
- 3,013
- 1
- 17
- 10
4
votes
2 answers
Spring Cloud : Load Message Sources from config server
I'm working on Spring cloud project (Spring Boot + Eureka API ) that contains client , registry and a config server , so I need to load Message properties from the config Server :
I have already a config server with application.properties well…

Yassine Abainou
- 145
- 2
- 13
3
votes
1 answer
Multiple search-paths for config server in Spring boot
I need to create a dedicated config server for a list of microservices.
Following is the snippet of application.yml of the config server:
server.port: 8888
management.security.enabled: false
spring:
cloud:
config:
server:
git:
…

Vipin Makde
- 86
- 1
- 7
3
votes
2 answers
spring-cloud-starter-bus-kafka setup on configserver
Dear Spring developers!
I would like to setup the spring cloud configserver from offical docs, and from sample codes. It works for me, and I would like to refresh my properties at runtime, if I change it github.
I already added the…

Lovi
- 45
- 5
2
votes
1 answer
Getting "replica set IDs do not match, ours:<>,remote node‘s: <>" while trying to run replicaset of config servers
I am trying to create a sharded collections. For that I created of replica set of config server. But I faced some problem doing that to I deleted the replica set from "local.system.replset". Changed replset name in the config files for the config…

V K
- 1,645
- 3
- 26
- 57
2
votes
2 answers
Spring Cloud config client not picking values from Config server
My Config client is not picking the property values from config
server.
http://localhost:8888/customer_service/default
Above Config server endpoint is returning proper values for Config client,
{
"name": "customer_service",
…

Arunprasad
- 567
- 4
- 14
- 29
2
votes
1 answer
How to disable configserver Health page checking for default label git
I have simple config server implementation and when i browse /health end point I get:
{
status:"UP",
"details":{
"configserver":{
"status":"UP",
"details":{
"repositories":[
{
...
How can I…

Gowtham aspnet
- 21
- 2
2
votes
0 answers
How to access git based spring-boot configurations without config-server
I would like to load spring-boot configuratons using embedded config-server without exposing the config-server rest endpoints or without inheriting the @EnableMvc so that i can use my @EnableWebFlux based controllers/handlers
According to…

Comfort Chauke
- 126
- 1
- 9
2
votes
1 answer
How to use non-root vault token for vault login in spring boot
I am using default token authentication method for vault. Also integrating vault with spring cloud config server in spring boot application.
Root token has super user access which enables to read/write secrets for application but I need to create a…

esha ingle
- 163
- 1
- 3
- 18
2
votes
0 answers
Spring cloud's config server plain text api with SVN and a default label
I have spring boot 2 app that acts as a config server with the following properties. Notice in particularly the "default-label" properties which is the empty string because we check out directly the folder that contains the files, and not some…

user1884155
- 3,616
- 4
- 55
- 108
2
votes
1 answer
Unable to read property key value from GIT repository using Config Server Services in Steeltoe
I am not able read property value from git in steeltoe for dot net core 2.1 application.
From my client application, I want to read properties file which is present in Git repository for different environment properties files like…

Sumit Manna
- 541
- 1
- 5
- 16
2
votes
1 answer
503 status in case of starting spring configuration server via docker-compose
I've created demo configuration server using spring boot. It works fine.
$ curl GET http://localhost:9090/actuator/health
curl: (6) Could not resolve host: GET
{"status":"UP"}%
I use as parent project
…

Sergii
- 7,044
- 14
- 58
- 116
2
votes
0 answers
Connecting to an OAuth2 protected Spring Config Server
I have a Spring Cloud Config Server protected with OAuth2 through Keycloak.
On the client, there is no option to configure this flow (only basic authentication). Any solutions?
Thanks

Francesco
- 313
- 3
- 11