我一直在扫描 web/SO 并阅读了几个权限被拒绝请求的帮助我只是找不到以我理解的方式解决我的问题的请求。
我正在遵循这些说明(Heroku/Cedar 上的 Python 入门)。一切都很顺利,直到:
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.
作为在这些问题上经验不足的人,我不确定如何安全地撤消我所做的事情,因为我知道我正在使用强大的工具。关于这里发生的事情有什么建议吗?如果我需要包含更多信息来解决问题,请告诉我。