【发布时间】:2012-03-27 00:43:38
【问题描述】:
我一直在扫描网络/SO 并阅读了一些权限被拒绝请求的帮助我只是找不到以我理解的方式解决我的问题的请求。
我正在遵循这些说明 (Getting Started with Python on Heroku/Cedar)。一切都很顺利,直到:
drewverlee@ubuntu:~/helloflask$ source venv/bin/activate
(venv)drewverlee@ubuntu:~/helloflask$ git push heroku master
The authenticity of host 'heroku.com (50.19.85.132)' can't be established.
RSA key fingerprint is ##:##:##:##:##:##:##:##:##:##:##:## (I replaced with #)
Are you sure you want to continue connecting (yes/no)? yes
Failed to add the host to the list of known hosts (/home/drewverlee/.ssh/known_hosts).
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
(不确定安全性,所以我将密钥替换为(#))
我想可能是因为
drwx------ 2 root root 1024 2012-03-08 21:26 .ssh
因为
drewverlee@ubuntu:~$ ssh-keygen
Generating public/private rsa key pair.
Enter file in which to save the key (/home/drewverlee/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
open /home/drewverlee/.ssh/id_rsa failed: Permission denied.
Saving the key failed: /home/drewverlee/.ssh/id_rsa.
作为在这些问题上经验不足的人,我不确定如何安全地撤消我所做的事情,因为我知道我正在使用强大的工具进行干预。关于这里发生的事情有什么建议吗? 如果我需要包含更多信息来解决问题,请告诉我。
【问题讨论】:
-
@CIRCLE 在我看来不是个好主意
标签: git heroku ssh ssh-keys chown