linux - Github 权限被拒绝 (publickey) SSH key 位于错误的目录中?

标签 linux git amazon-web-services ssh

我最近在 AWS EC2 上安装了这个堆栈: https://aws.amazon.com/marketplace/pp/B00NO1HJ56/ref=srh_res_product_title?ie=UTF8&sr=0-2&qid=1461119036279

实例的系统日志显示 SSH key 安装在此处:

Generating public/private rsa key pair.
Your identification has been saved in /etc/ssh/ssh_host_rsa_key.
Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub.

我已将公钥添加到我的 Github 帐户并且指纹匹配。

克隆存储库时我得到: 权限被拒绝(公钥)。

来自 Github 帮助部分 https://help.github.com/articles/error-permission-denied-publickey

我运行:ssh -vT git@github.com 并得到:

OpenSSH_6.6.1, OpenSSL 1.0.1f 6 Jan 2014
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: /etc/ssh/ssh_config line 56: Applying options for *
debug1: Connecting to github.com [192.30.252.122] port 22.
debug1: Connection established.
debug1: identity file /home/bitnami/.ssh/id_rsa type -1
debug1: identity file /home/bitnami/.ssh/id_rsa-cert type -1
debug1: identity file /home/bitnami/.ssh/id_dsa type -1
debug1: identity file /home/bitnami/.ssh/id_dsa-cert type -1
debug1: identity file /home/bitnami/.ssh/id_ecdsa type -1
debug1: identity file /home/bitnami/.ssh/id_ecdsa-cert type -1
debug1: identity file /home/bitnami/.ssh/id_ed25519 type -1
debug1: identity file /home/bitnami/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.6
debug1: Remote protocol version 2.0, remote software version libssh-0.7.0
debug1: no match: libssh-0.7.0
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-sha1 none
debug1: kex: client->server aes128-ctr hmac-sha1 none
debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: RSA 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48
debug1: Host 'github.com' is known and matches the RSA host key.
debug1: Found key in /home/bitnami/.ssh/known_hosts:1
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: Trying private key: /home/bitnami/.ssh/id_rsa
debug1: Trying private key: /home/bitnami/.ssh/id_dsa
debug1: Trying private key: /home/bitnami/.ssh/id_ecdsa
debug1: Trying private key: /home/bitnami/.ssh/id_ed25519
debug1: No more authentication methods to try.

我似乎 ssh 代理正在搜索/home/bitnami/.ssh/但 key 位于/etc/ssh

这是/home/bitnami/.ssh的内容

authorized_keys
known_hosts

这是/etc/ssh 的内容

moduli
ssh_host_dsa_key
ssh_host_ecdsa_key.pub
ssh_host_rsa_key
ssh_config
ssh_host_dsa_key.pub
ssh_host_ed25519_key
ssh_host_rsa_key.pub
sshd_config
ssh_host_ecdsa_key
ssh_host_ed25519_key.pub
ssh_import_id

如果我检查将哪些 key 添加到 ssh 代理中,我会得到:

$ ssh-add -l I get:
The agent has no identities.

这是否只是使用 ssh-add 将/etc/ssh/中的公钥添加到 ssh 代理,以便它知道在哪里查找?

我不明白为什么 key 没有安装在/etc/hosts 中而不是安装在主目录中。

最佳答案

解决方案很简单,忽略/etc/ssh 中的 key 。这些 key 由 AWS 用于访问实例,属于系统而不是用户。

所以我刚刚为 bitnami 用户生成了新 key ,这些 key 现在正确地位于/home/.ssh/

我现在可以从 Github 中提取我的存储库。

关于linux - Github 权限被拒绝 (publickey) SSH key 位于错误的目录中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36732911/

相关文章:

postgresql - RDS 到 S3 直接使用 pg_dump(没有中介)

python - Selenium:单击的元素,使用 xpath 识别,在 Windows 上工作正常,但在 Linux 上失败

linux - 删除 shell 命令后的换行符

linux - 你如何着手将修复程序放入 linux 包中?

c - 监控子进程的内存使用情况

git - 使用 github 批量更改 git 上的电子邮件地址

git - 致命的 : reference is not a tree: develop

具有冲突解决功能的 Git merge 使先前的提交消失

amazon-web-services - 当模板获取 AWS::EC2::EIP(弹性 IP)的 AllocationID 时,AWS CloudFormation 出现错误

java - 如何在AWS中构建各种微服务组件