当我尝试通过“创建Heroku应用程序模板”创建新项目时,我收到此错误,但是,我可以成功地看到应用程序部署在我的heroku帐户中。
We have encountered a problem creating your application: arcane-citadel-9718. This could be due to the Eclipse SSH key is not matching the SSH key(s) that is associated with your Heroku account. To fix this error, you can: - Associate your SSH key to your Heroku account by going to "Preferences" OR - If the SSH Key is correct, restart Eclipse.
git@heroku.com:arcane-citadel-9718.git: reject HostKey: heroku.com如何修复此错误?
发布于 2013-09-07 16:31:49
我已经找到了解决方案。我用export GIT_SSH=usr/bin/ssh创建了一个指向usr/bin/ssh的环境变量GIT_SSH,然后从终端运行usr/bin/ssh。然后导入或创建新的heroku应用程序。
发布于 2013-09-27 18:20:33
技巧:在eclipse中手动添加git-repo,例如: git@heroku.com:your-app eclipse eGit会将密钥添加到某个已知主机。取消git克隆并返回到“导入heroku应用程序”。看起来不错。
发布于 2013-12-11 01:34:39
看起来git存储库托管在其他地方。诀窍是将其IP添加到已知主机。这是在通过终端克隆你的应用程序时自动完成的,例如
git clone git@heroku.com:myappname.git然后,您还应该能够使用Eclipse导入它。
https://stackoverflow.com/questions/18374030
复制相似问题