I am new to Rails, and I was trying to deploy a very simple app to Heroku. This is the second app that I deploy, and the first one I was able to do it just fine. However I am having some issues with this one. Whenever I "git push heroku master", I get this error:

! Your key with fingerprint xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx is not authorized to >access my_heroku_app.

fatal: The remote end hung up unexpectedly

I have tried to manage my keys after logging in heroku. If I type in my console "heroku keys", then I get:

No keys for myemailaddress.

However, If I run the comand "heroku keys:add" I get

Found existing public key: /Users/michele/.ssh/id_rsa.pub Uploading ssh public key /Users/michele/.ssh/id_rsa.pub ! Fingerprint already exists. Please use one ssh key per Heroku account

Please help me! This is soo frustating, I have no idea what's wrong! Thank you

link|improve this question
3  
How is this off-topic?? – Kenny Evitt Feb 11 at 15:45
1  
I agree, this seems wrongfully closed. This is not off topic. – ssorallen Apr 25 at 7:24
feedback

closed as off topic by casperOne Feb 9 at 17:09

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

3 Answers

I had the same problem, I followed this post and others of the same kind without success :-((

At the end, I found the solution: I had to add my new rsa identity in my machine!

So, first of all I created a new rsa key:

ssh-keygen -t rsa -C "giordano.scalzo[at]gmail.com" -f  ~/.ssh/id_rsa_heroku

then added to my machine

ssh-add ~/.ssh/id_rsa_heroku

and, finally, to Heroku

heroku keys:add ~/.ssh/id_rsa_heroku.pub

After that,

git push heroku master

worked like a charm!

Hope this helps.

link|improve this answer
3  
This was really close for me. But there was one more thing. I had two heroku accounts. The first one had added my default SSH key for my machine. No matter what I did trying to fix my second account, it would not take until I removed my default key from the first account. SSH-AGENT will send the first key by default, causing this problem. The fix is to create specific keys for heroku (not the default) for each account – Tom Carchrae Mar 6 at 12:15
I had the same problem as @TomCarchrae. I logged out of the account that seemed permanently busted with heroku logout, logged in to the other account, and deleted the default RSA key from that account. After that I was able to push with this newly-generated key. – ssorallen Apr 25 at 7:22
2  
For me personally, I did the equivalent of ssh-add ~/.ssh/id_rsa_heroku though mine was ssh-add ~/.ssh/identity.heroku.foo because I'm also using https://github.com/ddollar/heroku-accounts (a multiple accounts manager for Heroku). – user664833 Apr 25 at 20:14
user664833 was the most concise approach for me – noli Apr 26 at 2:46
one other thing to keep in mind - if you have too many SSH keys, it won't be able to log in because it tries the keys in order (and then you get kicked out of the login too many failures). this seems to be a flaw with the ssh-agent (in ubuntu anyway, but i presume other implementations too). so, if you're pulling your hair out, try moving your ~/.ssh directory and starting a new one (you can then pull in keys one by one). – Tom Carchrae Apr 27 at 14:01
feedback

youn will need to create new keys and add those

specify a new file name after running

ssh-keygen

then (in my case)

heroku keys:add /home/alex/.ssh/alex_heroku_rsa.pub
link|improve this answer
Thanks, that solved it! – mresposito Jan 10 at 18:09
Then mark it as answered.. :) – user664833 Jan 30 at 21:15
feedback

I have the same issue last week. This linked helped me out. I hope it helps you out a little. http://devcenter.heroku.com/articles/keys

link|improve this answer
I have seen that link, tried to remove and add my keys again, however I still can't get it to work. – mresposito Jan 9 at 16:06
Have you sorted this problem out? – Vezu Jan 10 at 10:38
Unfortunately no :( – mresposito Jan 10 at 11:34
might also try this railsapps.github.com/rails-heroku-tutorial.html – Vezu Mar 3 at 16:57
feedback

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