在Windows 7上配置GitBash:ssh失败,我正在尝试一切,疯了

时间:2013-12-26 20:41:58

标签: windows git ssh

我只想尝试ssh到github。

我在Windows 7上。

诚实地对待Murgatroyd我一直在扫描谷歌和论坛,而不是突破。

在我最近的尝试中,我已将配置文件放在C:\ Users \ myname.ssh中。结果更接近幸福,但仍然不存在。

我的配置只是说:

Host github.com
    IdentityFile ~/.ssh/id_rsa

命令ssh -vT git@github.com产生:

OpenSSH_4.6p1, OpenSSL 0.9.8e 23 Feb 2007
debug1: Reading configuration data /c/Users/myname/.ssh/config
debug1: Applying options for github.com
debug1: Connecting to github.com [192.30.252.130] port 22.
debug1: Connection established.
debug1: identity file /c/Users/myname/.ssh/id_rsa type 1
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.9p1 Debian-5ubuntu1+github5
debug1: match: OpenSSH_5.9p1 Debian-5ubuntu1+github5 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_4.6
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 none
debug1: kex: client->server aes128-cbc hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host 'github.com' is known and matches the RSA host key.
debug1: Found key in /c/Users/myname/.ssh/known_hosts:2
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering public key: /c/Users/myname/.ssh/id_rsa
debug1: Authentications that can continue: publickey
debug1: No more authentication methods to try.
Permission denied (publickey).

输出的顶部看起来像我的密钥正在被找到和使用,而底部就像它不是。

我非常困惑。

任何建议都会受到高度赞赏。

感谢阅读。

3 个答案:

答案 0 :(得分:0)

正如我在“SSH error on push to an existing project Permission denied (publickey)”中提到的那样,仔细检查:

  • 您的%HOME%环境变量(应设置为%USERPROFILE%
  • %HOME%\.ssh\config文件中的完整(Windows)路径(“~”对Windows没有多大意义。)
    例如:

    Host gitlab.com
      HostName gitlab.com
      IdentityFile C:\path\to\.ssh\gitlab_rsa
      IdentitiesOnly yes
    

请注意,如果您使用私钥和公钥的默认名称id_rsaid_rsa.pub,则不需要配置文件。

答案 1 :(得分:0)

我在这里猜测你的情况可能出现什么问题,但除了其他事项外,请尝试检查私钥和公钥文件的文件模式。对于私钥通常应该是600(因此,只有文件所有者可写和可读,希望你 - 也指向检查),公共密钥文件为644(相同,加上所有其他人都可读):

$ ll ~/.ssh
-rw------- 1 YOU   YOU   1.8K Sep  5 23:53 id_rsa
-rw-r--r-- 1 YOU   YOU    398 Sep  5 23:53 id_rsa.pub

如果没有,请尝试从Git Bash中跟随:

chmod 600 ~/.ssh/id_rsa
chmod 644 ~/.ssh/id_rsa.pub

当你在Windows上时,这些命令在从Git Bash执行时可能会失败 - 因为在运行它时,奇怪的是,你没有足够的提交来修改文件模式(还)。如果是这种情况,请首先尝试通过标准“文件属性”菜单修改文件访问权限,并将其设置为允许所有用户“完全控制”。完成后 - 尝试再次从Git Bash修改文件模式 - 现在应该工作。或者,您可以尝试以管理员身份运行Git Bash,但我从未尝试过此操作,也不确定最终结果。

说到访问权限,最后的方法是仔细检查~/.ssh目录的权限和所有者:)

答案 2 :(得分:0)

事实证明 - 非常奇怪 - 在Windows 7下,ssh-keygen每次都不会产生良好的可用密钥对。

我重复了几次generate-upload-then-test循环 - 出于纯粹的绝望 - 问题本身就消失了。

非常奇怪。