本文主要是介绍springcloud config报错com.jcraft.jsch.jschexception: reject hostkey:github.com,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
目录
- 一、问题描述
- 二、解决方法
- 1.方法1
- 2.方法2
一、问题描述
Spring Cloud Config Server 编译报错:
com.jcraft.jsch.jschexception: reject hostkey:github.com
二、解决方法
1.方法1
配置ssh公私钥。
2.方法2
将 uri 链接方式由 git 改为 https:
spring:application:name: config-servercloud:config:server:git:uri: https://gitee.com/*********/springcloud-config.git # 仓库链接search-paths:- springcloud-configusername: ***********password: ***********
这篇关于springcloud config报错com.jcraft.jsch.jschexception: reject hostkey:github.com的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!