4

虽然有很多关于这个错误的问题,但所有这些都与收到错误的人创建的应用程序有关,并没有帮助解决我的问题。我已被添加为 heroku 应用程序的合作者。当我尝试通过

git clone git@heroku.com:myapp.git -o heroku

或者如果我从 github 克隆它基于的代码并运行

git push heroku master(在做了 git add 和 git commit 之后)

它给了我错误“您的带有指纹(...)的密钥无权访问 myapp。” 我尝试过各种heroku 键组合:add、heroku 键:clear 和ssh-keygen。

这个应用程序上的其他合作者在推送到 heroku 时没有任何问题。

4

3 回答 3

4

我收到此错误是因为我使用了多个 heroku 帐户:

我想这样做,这样我就可以使用自己的 Heroku 帐户独立“玩”,同时与团队/项目帐户上的其他人合作。

这与 Heroku 中多人协作团队帐户的概念是分开的:我希望团队帐户成为协作的应用程序所有者,这样我的个人帐户就可以像团队的其他成员一样充当特权较低的协作者. 只有所有者才能:添加/删除付费插件、删除/重命名应用程序以及查看发票。

对于多帐户支持(例如,您自己的个人 heroku 帐户),您需要添加这个文档不太完整的插件:

$ heroku 插件:安装 git://github.com/ddollar/heroku-accounts.git

见:https ://github.com/ddollar/heroku-accounts

这就是你的 git SSH 设置最终的样子:

(venv)MacPro:your_project username$ more .git/config
[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
        ignorecase = true
[remote "origin"]
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = ssh://your_username@git.your_org.com/your_project.git
[branch "master"]
        remote = origin
        merge = refs/heads/master
[remote "heroku_kb"]
        url = git@heroku.individual:your_individual_app.git
        fetch = +refs/heads/*:refs/remotes/heroku/*
[remote "heroku_ocp"]
        url = git@heroku.your_project:your_team_app.git
        fetch = +refs/heads/*:refs/remotes/heroku/*
[heroku]
        account = individual

上面的最后三个部分定义了两个单独的 heroku 遥控器并指定哪个是活动的。

heroku-accounts 插件通过添加 ~/.ssh/config 条目使所有这些工作:

Host heroku.individual
  HostName heroku.com
  IdentityFile "/Users/username/.ssh/identity.heroku.individual"
  IdentitiesOnly yes

Host heroku.your_project
  HostName heroku.com
  IdentityFile "/Users/username/.ssh/identity.heroku.your_project"
  IdentitiesOnly yes

如果您不这样将帐户分开,一个 SSH 密钥会干扰另一个,您最终会像我一样陷入 SSH 困境,在 google/forum-chasing 一个看起来像这样的错误时玩得开心:

MacPro:your_project username$ git push heroku master

 !  Your key with fingerprint cf:5b:6b:91:d5:71:e8:8b:73:dc:cf:86:56:fd:7a:49 is not authorized to access [insert appname here].

fatal: The remote end hung up unexpectedly
于 2012-10-05T23:40:39.897 回答
1

这听起来像是某种配置问题。您确实应该仔细检查您对应用程序是否具有适当的权限,并且您的 SSH 密钥已在 heroku 中注册。

确保您使用的是您认为正在使用的密钥。本质上,cat ~/.ssh/id_rsa.pub(或您使用的任何键)应该显示在heroku keys --long.

阅读https://devcenter.heroku.com/articles/keys了解更多信息。

于 2012-05-25T19:37:56.827 回答
1

您可能拥有多个 ssh 密钥,并且默认使用了错误的密钥。要解决此问题,您需要配置 SSH 以将正确的密钥发送到 heroku.com。有关更多详细信息,请参阅超级用户的此答案。

于 2012-09-16T21:17:30.540 回答