springcloud配置中心server启动报错: Authentication is required but no CredentialsProvider has been registered
猜测 是在github上创建的仓库是私有的 ,所以 需要安全连接到github仓库,在application.yml中配置上自己github 的用户名和密码 就可以了:
spring:
application:
name: 微服务名称
cloud:
config:
server:
git:
uri: 自己的github 路径
search-paths: # 搜索目录
- 自己的目录名称
force-pull: true
username: 自己的github用户名
password: 自己的github密码
label: master # 读取分支 分支
还有个地方,就是 spring.cloud.config.server.git.uri 地址有的用 ssh的方式 会报错 改成 https 的方式就可以了