Spring Cloud Config-远程意外挂断

时间:2019-09-25 10:31:43

标签: spring-cloud spring-cloud-config

我正在尝试使用ssh密钥连接到私有gitlab自托管服务。 以下是yaml配置

spring:
   cloud:
    config:
      server:
        git:
          uri: git@gitlab.devops.mhealth.tech:shivhg/config_src.git
          ignoreLocalSshSettings: true
          host-key: shiva.kumar@mhealth.tech
          strictHostKeyChecking: false
          hostKey: someHostKey
          hostKeyAlgorithm: ssh-rsa
          privateKey: |

还尝试了.ssh / config更新

StrictHostKeyChecking no
   PreferredAuthentications publickey
   IdentitiesOnly yes
   IdentityFile ~/.ssh/***private
   ServerAliveInterval 60
   ServerAliveCountMax 5

接收与#1447完全相同的错误,也尝试了那里提供的建议。 在iterm控制台中也尝试过intellij。

一些指向修复此问题的指针会有所帮助,

0 个答案:

没有答案