Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

https://devcenter.heroku.com/articles/python

When i'm trying to deploy my code through $ git push heroku master i get an error:

    Warning: Permanently added the RSA host key for IP address '50.19.85.132' to the list      of known hosts.
    Permission denied (publickey).
    fatal: The remote end hung up unexpectedly

Next, I was able to add the RSA host key for that IP address by $ heroku keys:add but I still get this error:

   Found existing public key: /Users/opalkale/.ssh/github_rsa.pub
   Uploading SSH public key /Users/opalkale/.ssh/github_rsa.pub... done
   (venv)Opal-Kales-MacBook-Pro:helloflask opalkale$ git push heroku master
   Permission denied (publickey).

What am I doing wrong...?

share|improve this question
Mark the correct answer please :) – Learath2 Feb 23 at 16:58
@Learath How do I do this if I don't have enough reputation points? – Opal Kale Feb 24 at 10:03
You can mark the correct answer by clicking on the check mark next to the answer: meta.stackoverflow.com/a/5235/142717 – Lipis Feb 24 at 10:34

1 Answer

up vote 1 down vote accepted

Add your id_rsa.pub SSH key to your Heroku account online: https://dashboard.heroku.com/account

And make sure that the corresponding private key has been added to your identity

$ ssh-add ~/.ssh/id_rsa

E.g.

$ ssh-add ~/.ssh/github_rsa
share|improve this answer
On my heroku account, I already have an ssh-rsa key? – Opal Kale Feb 23 at 8:41
Make sure it is the right public key. It is okay to have more than one public key. – Ric Feb 23 at 8:44
thanks, I got it! – Opal Kale Feb 23 at 8:54
Nice. Was my answer the solution? – Ric Feb 23 at 8:56
Yes, it was, very clear! – Opal Kale Feb 23 at 9:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.