首页 文章

Atlassian Stash - 权限被拒绝(publickey)

提问于
浏览
3

我实际上正在为我的工作场所设置Atlassian Stash . 我遇到了这个我无法解决的问题 . 请注意,这是在Windows 7 64位安装上运行的 .

设置SSH密钥时,我按照Stash Guide了解如何创建它们并将它们设置到我的帐户中 . 尽管如此,这里遇到的问题并不是真正的文字,因为它似乎不接受密钥 . (在Stash中创建的两个用户都是管理员,并且在所有存储库中拥有管理员权限 . )

执行简单克隆命令时,我收到此错误:

$ git clone ssh://git@localhost:7999/test/test.git
Cloning into 'test'...
Permission denied (publickey).
fatal: Could not read from remote repository.

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

我按照Atlassian网站上的文档区域中的步骤进行了操作,但我仍然无法使其工作 .

Git Operations Fail - Permission denied - publickey

Permission denied (publickey)

$ ssh -p 7999 -I ~/.ssh/id_rsa -vT git@localhost
OpenSSH_6.6.1, OpenSSL 1.0.1m 19 Mar 2015
debug1: Connecting to localhost [127.0.0.1] port 7999.
debug1: Connection established.
dlopen /c/Users/Webit-Alex/.ssh/id_rsa failed: dlopen: Win32 error 126
debug1: identity file /c/Users/Webit-Alex/.ssh/id_rsa type 1
debug1: identity file /c/Users/Webit-Alex/.ssh/id_rsa-cert type -1
debug1: identity file /c/Users/Webit-Alex/.ssh/id_dsa type -1
debug1: identity file /c/Users/Webit-Alex/.ssh/id_dsa-cert type -1
debug1: identity file /c/Users/Webit-Alex/.ssh/id_ecdsa type -1
debug1: identity file /c/Users/Webit-Alex/.ssh/id_ecdsa-cert type -1
debug1: identity file /c/Users/Webit-Alex/.ssh/id_ed25519 type -1
debug1: identity file /c/Users/Webit-Alex/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.6.1
debug1: Remote protocol version 2.0, remote software version SSHD-CORE-0.14.0
debug1: no match: SSHD-CORE-0.14.0
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: RSA 0e:58:0e:af:a8:a1:35:5b:5e:3c:ac:8a:50:af:13:a9
debug1: Host '[localhost]:7999' is known and matches the RSA host key.
debug1: Found key in /c/Users/Webit-Alex/.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: Offering RSA public key: /c/Users/Webit-Alex/.ssh/id_rsa
debug1: Authentications that can continue: publickey
debug1: Trying private key: /c/Users/Webit-Alex/.ssh/id_dsa
debug1: Trying private key: /c/Users/Webit-Alex/.ssh/id_ecdsa
debug1: Trying private key: /c/Users/Webit-Alex/.ssh/id_ed25519
debug1: No more authentication methods to try.
Permission denied (publickey).

有没有人有解决方案或愿意帮助Stash正常工作?

2 回答

  • 0

    检查 /var/log/auth.logjournalctl -u sshd 以获取任何信息,例如密钥文件的无效权限 . 另一个常见的错误也是 authorized_keys 上有拼写错误 .

  • -1

    我有同样的问题,但试图到达远程主机而不是本地 . 奇怪的是前一天晚上工作正常 . 我得到了与原始海报完全相同的错误 . 最后,我删除了存储服务器上的所有SSH密钥,并重新添加了我以前的id_rsa.pub密钥 . 我再试一次,效果很好 . 我的SSH密钥在存储服务器上被破坏或者存储服务器无法加载我的密钥 - 无论哪种方式重新添加它都修复了问题 .

相关问题