- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用DockerCompose使用远程存储库部署ConfigServrService和客户端。
docker-compose.yml类似于:
version: '2'
services:
rabbitmq:
image: rabbitmq
ports:
- "5672:5672"
config-server:
image: config-server
environment:
- "SPRING_PROFILES_ACTIVE=desa"
ports:
- "8888:8888"
links:
- rabbitmq
depends_on:
- rabbitmq
user-service-config:
image: user-service-config
environment:
- "SPRING_PROFILES_ACTIVE=desa"
ports:
- "8090:8090"
links:
- config-server
- rabbitmq
depends_on:
- rabbitmq
- config-server
c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at: http://localhost:8888
Could not locate PropertySource: I/O error on GET request for "http://localhost:8888/user-server-config/desa": Connection refused; nested exception is java.net.ConnectException: Connection refused
server:
port: 8090
spring:
rabbitmq:
host: 172.17.0.1
port: 5672
username: guest
password: guest
application:
name: user-server-config
cloud:
enabled: true
config:
uri: http://config-server:8888
failFast: true
retry:
maxAttempts: 20
management:
security:
enabled: false
最佳答案
根据spencergibb的建议here并根据official documentation的建议,创建一个bootstrap.yml
文件:
spring:
cloud:
enabled: true
config:
uri: http://config-server:8888
failFast: true
retry:
maxAttempts: 20
application.yml
中删除上述包含的属性。
关于docker - Docker-SpringConfig-连接被拒绝到ConfigServer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43005558/
我已经安装了 CSF“ConfigServer Security & Firewall”,但不知道如何进行端口转发。是否有教程或如何操作,或者有人可以向我解释如何操作吗? 最佳答案 您可以使用“/et
我们有一个非常简单的 Spring Boot 服务 (@EnableConfigServer) 在 nginx 代理后面运行。 该服务基本上可以工作,但它一直在重新启动(Context 不断关闭并启动
当我尝试连接到我的 RDS 实例时,它因 (111) 错误而失败。如果我禁用防火墙: csf -x 我可以连接。如果我尝试通过端点添加实例: csf -a csf 错误: is not a val
我开发了一个用户微服务,它充当 Spring 配置服务器的客户端,但是在启动用户微服务时,它给出了以下错误。你能帮我解决这个问题吗 错误堆栈java.lang.IllegalStateExceptio
我有简单的配置服务器实现,当我浏览 /health 端点时,我得到: { status:"UP", "details":{ "configserver":{ "statu
我的公司正在使用 Spring Boot 和 Spring Cloud OSS,并且有许多 java spring-boot 服务向 Eureka 报告自身并从 ConfigServer 获取其配置覆
我是一名优秀的程序员,十分优秀!