【发布时间】:2016-01-03 19:26:36
【问题描述】:
很难弄清楚如何让 AWS CodeCommit 与标准 SSH 身份验证一起工作。看到另一个这样的话题,但没有答案,我还不允许发表评论。这是在 Windows 上使用 Git Bash。
重现步骤
- 已创建具有完全权限的 IAM 用户 (AwsAdministrator)
- 来自 ~/.ssh 中的 Git Bash
- “cat id_rsa.pub”并将输出复制到剪贴板
- 在 IAM 控制台中,单击按钮添加 SSH 密钥并粘贴到输入字段中。点击保存。
- 尝试访问 CodeCommit 存储库(在这种情况下尝试推送)并获得“权限被拒绝”。
Git + SSH 输出
这是我从带有 DEBUG3 日志记录的 SSH 中得到的:
debug3: authmethod_is_enabled publickey
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /c/Users/Dan/.ssh/id_rsa
debug3: send_pubkey_test
debug2: we sent a publickey packet, wait for reply
debug1: Server accepts key: pkalg ssh-rsa blen 535
debug2: input_userauth_pk_ok: fp SHA256:<omitted>
debug3: sign_and_send_pubkey: RSA SHA256:<same-as-above>
debug1: Authentications that can continue: publickey
debug2: we did not send a packet, disable method
debug1: No more authentication methods to try.
Permission denied (publickey).
fatal: Could not read from remote repository.
为了比较,这是我使用与 GitHub 完全相同的 SSH 密钥得到的结果:
debug3: authmethod_is_enabled publickey
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /c/Users/Dan/.ssh/id_rsa
debug3: send_pubkey_test
debug2: we sent a publickey packet, wait for reply
debug1: Server accepts key: pkalg ssh-rsa blen 535
debug2: input_userauth_pk_ok: fp SHA256:<same-as-above>
debug3: sign_and_send_pubkey: RSA SHA256:<same-as-above>
debug1: Authentication succeeded (publickey).
Authenticated to github.com ([192.30.252.130]:22).
以上输出来自于运行一个普通的 git 命令,例如 git push origin master,并在 .ssh/config 中启用了 ssh 调试日志记录:
Host git-codecommit.us-east-1.amazonaws.com
LogLevel DEBUG3
Host github.com
LogLevel DEBUG3
【问题讨论】:
-
您用来获取此日志的命令是什么?您可以在服务器错误日志中看到什么?
-
@Jakuje 用我如何运行命令来获取日志更新了描述。不知道如何查看 AWS 和 GitHub 的服务器日志?
标签: git ssh aws-codecommit