当前位置: 首页 > 知识库问答 >
问题:

拒绝Github权限:ssh添加代理没有标识

夏朗
2023-03-14

这是我第一次访问GitHub,我没有使用控制台的经验。我正在使用Bash的MacBook上。当我尝试访问GitHub时,我得到的是:

git clone git@github.com:dhulihan/league-of-legends-data-scraper.git
Cloning into 'league-of-legends-data-scraper'...
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

我试着按照Github页面上关于拒绝权限的说明操作。

OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011
debug1: Reading configuration data /etc/ssh_config
debug1: /etc/ssh_config line 20: Applying options for *
debug1: Connecting to github.com [192.30.252.129] port 22.
debug1: Connection established.
debug1: identity file /Users/XXXX/.ssh/id_rsa type -1
debug1: identity file /Users/XXXX/.ssh/id_rsa-cert type -1
debug1: identity file /Users/XXXX/.ssh/id_dsa type -1
debug1: identity file /Users/XXXX/.ssh/id_dsa-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.2
debug1: Remote protocol version 2.0, remote software version libssh-0.6.0
debug1: no match: libssh-0.6.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_KEXDH_INIT
debug1: expecting SSH2_MSG_KEXDH_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 /Users/XXXX/.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: Roaming not allowed by server
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: /Users/XXXX/.ssh/id_rsa
debug1: Trying private key: /Users/XXXX/.ssh/id_dsa
debug1: No more authentication methods to try.
Permission denied (publickey).

这就是我被困住的地方。

共有1个答案

况承福
2023-03-14

详细情况请参阅本答案。

总之,当ssh-add-l返回“代理没有标识”时,这意味着ssh使用的密钥(存储在~/.ssh/id_rsa~/.ssh/id_dsa等文件中)丢失,作为身份验证代理的ssh-agent不知道这些密钥,或者它们的权限设置不正确(例如,world ;writable)。

如果缺少密钥或未生成任何密钥,请使用ssh-keygen-t rsa,然后使用ssh-add添加它们。

如果存在密钥,但ssh-agent不知道这些密钥(如它们位于非标准文件夹中),请使用ssh-add/path/to/my-non-standard-ssh-folder/id_rsa添加这些密钥。

如果使用ssh-addssh-agent遇到问题,请参阅此答案。

 类似资料:
  • 我只是将nginx设置为直接代理到tomcat应用服务器的网络服务器。当用户连接到我的网站时,Nginx应该将请求重定向到运行tomcat应用服务器的端口8080。 我正在运行Redhat7的AmazonEC2实例上执行所有操作。 到目前为止,我得到的是: 我在连接上游客户端时遇到的错误是(13:权限被拒绝) 这肯定是一个用户访问问题,但似乎无法解决。nginx似乎无法重定向到端口8080。 另外

  • 我正在使用终端,我在根,GitHub存储库存在,我不知道现在该做什么。

  • 问题内容: 尝试执行使用多处理程序包的python程序时出现错误: 用户似乎没有访问共享内存的权限。使用root特权执行时,它可以正常工作。 有什么解决方案可以以普通用户(不是root)身份运行它? Python版本2.6.2,操作系统是Linux 2.6.18(CentOS版本5.4),它是VPS计算机。 问题答案: 为了使POSIX信号正常工作,用户需要对共享内存()具有读写权限。 检查对的权

  • 问题内容: 当我尝试运行简单的docker命令时,例如: 我收到一条错误消息: 获得权限被拒绝… /var/run/docker.sock:connect:权限被拒绝 当我检查权限 我看到这一行: 因此,我遵循许多论坛的建议并将本地用户添加到docker组: 但这无济于事。我仍然收到非常相同的错误消息。我该如何解决? 问题答案: 对于那些刚接触shell的人,命令: 需要在您的外壳中定义。默认情况

  • 问题内容: 尝试显示URI时出现以下异常。我认为这是在我的活动停止后发生的,我尝试再次访问可行的URI。还有其他问题可以解决这个问题,但是我对如何对我的代码应用任何解决方案感到非常困惑,因为我的takePhotoIntent允许拍照或从图库中选择图片(如下所示)。 我的createImageFile和我的takePhotoIntent: 问题答案: 根据Storage Access Framewo