SpringCloud: 服务配置中心Caused by: com.jcraft.jsch.JSchException: Auth fail


问题

SpringCloud: 服务配置中心Caused by: com.jcraft.jsch.JSchException: Auth fail

配置

server:
  port: 3344

spring:
  application:
    name:  cloud-config-center 
  cloud:
    config:
      server:
        git:
          uri: git@gitee.com:CodeWaterStudy/spring-cloud-config.git #GitHub上面的git仓库名字
          ####搜索目录
          search-paths:
            - springcloud-config
      ####读取分支
      label: master

解决

生成指定格式公钥(未解决)

待排查原因

  1. 首先注意分支名,有的人是main,不是master

  2. 看下仓库名(我的不对)
    SpringCloud: 服务配置中心Caused by: com.jcraft.jsch.JSchException: Auth fail

  3. 私钥问题,原始开始和结尾是这样的
    SpringCloud: 服务配置中心Caused by: com.jcraft.jsch.JSchException: Auth fail

SpringCloud: 服务配置中心Caused by: com.jcraft.jsch.JSchException: Auth fail

  1. ssh-keygen -m PEM -t rsa -b 4096 -C "11111111@qq.com"重新生成密钥。注意生成后的开头和结尾格式!
    SpringCloud: 服务配置中心Caused by: com.jcraft.jsch.JSchException: Auth fail

  2. 把生成的***.pub公钥添加到git上去。

用https(成功)

  1. 更改yml配置
    SpringCloud: 服务配置中心Caused by: com.jcraft.jsch.JSchException: Auth fail
server:
  port: 3344

spring:
  application:
    name:  cloud-config-center #注册进Eureka服务器的微服务名
  cloud:
    config:
      server:
        git:
#          uri: git@github.com:CodeWater404/SpringCloud-config.git #GitHub上面的git仓库名字
#          uri: git@gitee.com:CodeWaterStudy/spring-cloud-config.git #GitHub上面的git仓库名字
          uri: https://gitee.com/CodeWaterStudy/spring-cloud-config.git #GitHub上面的git仓库名字
          ####搜索目录
          search-paths:
            - SpringCloud-config
      ####读取分支
      label: master
  1. 重启项目,访问成功
    SpringCloud: 服务配置中心Caused by: com.jcraft.jsch.JSchException: Auth fail

参考

加username和密码(失败)

SpringCloud: 服务配置中心Caused by: com.jcraft.jsch.JSchException: Auth fail


参考

原创文章,作者:端木书台,如若转载,请注明出处:https://blog.ytso.com/275228.html

(0)
上一篇 2022年7月18日
下一篇 2022年7月18日

相关推荐

发表回复

登录后才能评论