Git Permission denied (publickey,gssapi-keyex,gssapi-with-mic)?

后端 未结 1 1301
渐次进展
渐次进展 2021-01-07 14:50

Client: OS Ubuntu, git-version 2.7.4.

Server: OS Centos , git-version 2.7.4.

I have a private ssh key in my client and public key in server.

I can us

相关标签:
1条回答
  • 2021-01-07 15:38

    My 2 cents: on server side, disable GSSAPIAuthentication (i.e. SSO backed by Kerberos) unless you are using Active Directory authentication on Linux (with either Centrify or SSSD) inside a corporate firewall.

    If you are indeed in a SSO scenario, but Single Sign-On does not work out of the box for some reason, then use client-side options to bypass Kerberos e.g.

    ssh -o GSSAPIAuthentication=no -o GSSAPIKeyExchange=no

    0 讨论(0)
提交回复
热议问题