本文介紹了Spring Cloud Config無法使用ssh密鑰克隆私有Bitbucket存儲庫的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我在Linux(ARCH)上,嘗試使用ssh密鑰通過私有的Bitbucket git存儲庫tutorial配置Spring Cloud Config,但一直收到錯誤:
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception
[Request processing failed; nested exception is java.lang.IllegalStateException: Cannot
clone or checkout repository] with root cause com.jcraft.jsch.JSchException: Auth fail
現在,根據教程,它應該可以工作:
如果您不使用HTTPS和用戶憑據,則當您將密鑰存儲在默認目錄(~/.ssh)中并且URI指向SSH位置(例如”[email protected]:configuration/cloud-configuration”.)時,SSH也應該開箱即用~/.ssh/KNOWN_HOSTS中的所有密鑰都采用”ssh-rsa”格式,這一點很重要。不支持新的”ecdsa-sha2-nistp256″格式。存儲庫是使用JGit訪問的,因此您在上面找到的任何文檔都應該適用。HTTPS代理設置可以在~/.git/config中設置,也可以通過系統屬性(-Dhttps.proxyHost和-Dhttps.proxyPort)以與任何其他JVM進程相同的方式設置。
我在~/.ssh文件夾中確實有一個名為Bitbucket-rsa的私有ssh密鑰,它是使用命令ssh-keygen -t rsa -b 4096 -C "[email protected]"
創建的。公鑰被正確地添加到Bitbucket中,因為我能夠從命令行毫無故障地從存儲庫克隆、拉入和推送。私鑰已添加到ssh-agent,且bitbucket.org位于KNOWN_HOSTS文件中。
下面是config-service項目中的bootstrap.yml:
spring:
application:
name: config-service
cloud:
config:
server:
git:
uri: "[email protected]:TarekSaid/my-private-repo.git"
server:
port: 8888
使用帶有用戶名和密碼的https可以工作,但我仍然喜歡使用ssh密鑰,如何才能使其工作?
推薦答案
終于成功了!
這個問題:How to use a custom ssh key location with Spring Cloud Config給我指明了正確的方向。我調試了JschConfigSessionFactory
類,發現當未提供用戶名和密碼時,它會從~/.ssh/config
中的默認配置文件獲取配置。
因此,我所要做的就是將以下內容添加到我的~/.ssh/config文件中:
~/.ssh/config
Host bitbucket.org
User TarekSaid
Hostname bitbucket.org
PreferredAuthentications publickey
IdentitiesOnly yes
IdentityFile ~/.ssh/bitbucket_rsa
現在可以工作了。
這篇關于Spring Cloud Config無法使用ssh密鑰克隆私有Bitbucket存儲庫的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,