配置springcloud配置中心读取github上的配置文件报错:com.jcraft.jsch.JSchException: Auth fail解决方案
首先,在配置中检查要读取的分支是否正确,从2020年几月份开始,github上的master分支变为了mian分支。因此yml中读取分支的配置应该是:label: main其次,如果yml使用的是uri: git@github.com:***/springcloud-config.git这种ssh方式连接的话,需要进行其他的配置,因此我放弃了这种方式进行配置,而采用http/https方式进行配置
·
首先,在配置中检查要读取的分支是否正确,从2020年几月份开始,github上的master分支变为了mian分支。因此yml中读取分支的配置应该是:label: main
其次,如果yml使用的是uri: git@github.com:***/springcloud-config.git
这种ssh方式连接的话,需要进行其他的配置,因此我放弃了这种方式进行配置,而采用http/https方式进行配置。值得注意的是,采用http和https方式,如果没配置免密的话,需要在配置文件中加入密码及用户名。
修改之后好用的配置如下:
spring:
application:
name: cloud-config-center #注册到eureka服务器的微服务名
cloud:
config:
server:
git:
uri: https://github.com/xxxxx/springcloud-config.git
search-paths:
- springcloud-config #搜索目录
password: xxxx
username: xxxxx
label: main #读取分支
如图:
更多推荐
已为社区贡献3条内容
所有评论(0)