I'm attempting to deploy my code to heroku with the following command line:

git push heroku master

but get the following error:

Permission denied (publickey).
fatal: The remote end hung up unexpectedly

I have already uploaded my public SSH key, but it still comes up with this error.

link|improve this question

did sebarmeli's solution work for you? I'm not using an rsa key named "id_rsa.pub" and just had enter "heroku keys:add ~/.ssh/<rsa_key_filename>.pub" – Michael Merchant Oct 5 '11 at 0:40
1  
I had this problem almost a year ago and the proposed solution at the time didn't exactly work for me, but I figured it out somehow (at this point I don't remember what I did exactly). Sebarmeli answered a while after I no longer needed assistance, although it seems his answer is quite popular among those that experienced a similar problem. If it makes people happy, I'll choose his answer as the correct one. – mmichael Oct 5 '11 at 1:35
The following line solved the problem for me. heroku accounts:set youraccount – Flow Jan 14 at 16:47
feedback

13 Answers

up vote 277 down vote accepted

You have to upload your public key to Heroku:

heroku keys:add ~/.ssh/id_rsa.pub
link|improve this answer
this worked for me! – brendan May 27 '11 at 3:07
Worked for me too – Fred Hsu Jul 26 '11 at 22:29
worked for me too :) thanks. – Oded Harth Jul 30 '11 at 15:59
This worked perfectly! Why hasn't this suggestion been accepted yet? – Gaurav Sep 25 '11 at 20:51
2  
Didn't work for me. I had to revoke my old key and then let heroku app generate and upload a new one for me. See the link on how to do this provided by Lithium. – Lego Oct 26 '11 at 22:49
show 6 more comments
feedback

Here is the link that explains how to manage your ssh keys : http://devcenter.heroku.com/articles/keys#adding_keys_to_heroku

link|improve this answer
feedback

If you are a windows user the other solutions here probably won't solve your problem.

I use Windows 7 64-Bit + Git-1.7.7.1-preview20111027 and the solution was to copy my keys from C:\users\user\.ssh to C:\Program Files (x86)\Git\.ssh. That's where this git client looks for the keys when pushing to heroku.

I hope this helps.

link|improve this answer
1  
For me it was c:\msysgit\.ssh. I just created a directory junction to the .ssh folder in my personal folder. – Colin Bowern Nov 29 '11 at 2:33
I had to do the same thing for WinXP. Now it works! Thanks. – Sumod Mar 17 at 10:22
Same problem here, but why I don't know. Each time I added keys it displayed that used the keys from my User folder, same with this fix but it worked. – Dolphin Apr 9 at 11:09
DON'T DO THAT! This works because HOME is empty, and it defaults to current exe dir. If someone manages to logon as Guest, he can get your private key. Set HOME in Advanced User Settings to %HOME_DRIVE%%HOMEPATH%, (or C:\Users\<username> on Win7) and copy .ssh dir there. – dmajkic May 23 at 7:43
feedback

I had the same issue, the steps below worked for me,

->heroku login

abc@gmail.com & password

->cd C:\Users\yourusername\.ssh

->ssh-keygen -t rsa -f id_rsa

if asks any passphrase don't use blank, fill with a passphrase,but not forget it.

->heroku keys:add "id_rsa.pub"

change directory to workspace, than

->git clone git@heroku.com:stark-dawn-1234.git -o heroku

use passphrase that you set above.


Actually i also remove files below, but not sure that they are imp,

C:\Users\yourusername.heroku\credientals and C:\Users\yourusername.ssh\known_hosts

link|improve this answer
feedback

On Windows 7,64 bit,the above solution (Onur Turhan's) worked for me with slight changes as below

C:\Users\MyName > heroku login

Enter email/password

C:\Users\MyName >ssh-keygen -t rsa -f id_rsa

This generated two files(id_rsa and id_rsa.pub) in my c:\Users\MyName directory (Not in .ssh directory)

heroku keys:add id_rsa.pub
git clone git@heroku.com:some-heiku-xxxx.git -o heroku

I guess adding the correct "id_rsa.pub" file is the most important.After generating the public key using keygen just verify that you are adding correct key by looking at the time-stamp when it was created.

link|improve this answer
feedback

This problem was messing with me for a few days.

This this might help.

1) Find out what keys you have in Heroku now.

$ heroku keys
=== 1 key for joe@example.com
ssh-dss AAAAB8NzaC...DVj3R4Ww== joe@workstation.local

2) Build a ~/.ssh/config file:

$ sudo vim ~/.ssh/config

Edit with this info

Host heroku.com
Hostname heroku.com 
Port 22 
IdentitiesOnly yes 
IdentityFile ~/.ssh/ssh-dss # location and name of your public key
TCPKeepAlive yes User joe@workstation.local
link|improve this answer
feedback

It sounds like your ~/.ssh/authorized_keys file is not set up correctly. Verify that:

  • It is in the correct path.
  • The permissions of the file are 0600.
  • The permissions of ~/.ssh are 0700.
link|improve this answer
I'm fairly new at this stuff so sorry if this is going to sound dumb, but my public SSH key file is just a bunch of characters (standard key gen) with no other information. I acquired this SSH file when I setup git on my computer. I assumed this would be the same public SSH key that I would use to deploy my heroku code. Or does heroku have its own public SSH key that I need to generate? – mmichael Nov 24 '10 at 18:18
1  
Yes, you can reuse your public SSH key for many different hosts. I am not sure exactly how Heroku works, but I can see that my answer doesn't really apply in this case. You might verify that your key was accepted by their web interface. If everything still checks out, try contacting their support team. – cdhowie Nov 24 '10 at 18:21
Thanks for the advice! I have contacted heroku support. I will update once I have an answer. – mmichael Nov 24 '10 at 18:28
Ok. I'm interested to hear what the problem is too. :) – cdhowie Nov 24 '10 at 18:29
1  
So, the issue was with naming the public SSH key file. When I had originally created the file, I also renamed it, which caused issues in deploying as git would not connect properly and thus made heroku deployment a failure as well. To solve the problem, I generated a new public SSH key and added that to github prior to attempting again. It now connects! Thanks for your help! – mmichael Nov 24 '10 at 19:55
show 1 more comment
feedback

The above given answer DOES work, but found out I needed to do some extra steps before it worked.

  1. I removed all id_rsa* files and generated a new SSH using this guide.
  2. Then, I destroyed the heroku app. Removed the ~/.heroku/credentials file.
  3. 'heroku create' command (and since the credentials file is removed, it will prompt you for your email/password.
  4. FINALLY type 'heroku keys:add' and it will upload the default ~/.ssh/id_rsa.pub file.
  5. It works! Well.... YMMV but I really do hope this can be some help as I struggled the whole day trying to figure this out! Haha
link|improve this answer
feedback

This was the solution for me:

ssh-add ~/.ssh/my_heroku_key_rsa
link|improve this answer
feedback

I had the same problem cause i had no public keys, so i did:

heroku keys:clear
heroku keys:add

That will generate a public key and then it works well

link|improve this answer
This worked for me. thanks! – Nick Siderakis Apr 30 at 16:32
feedback

I would just to like to add that the directory is not necessarily C:\Users\[username]\.ssh. It is the directory in which you created your public key in.

For instance my home directory in Windows was changed to C:\[username]. Your home directory in a .ssh sub-folder is the best and most likely place you may have created your keys. You can check your home directory in Windows with the command:

    echo %HOMEPATH%
link|improve this answer
feedback

I killed myself for 3 days trying every possible combination to try to get this to work -- I finally tried making a DSA key instead and it worked.

Try DSA instead of RSA if it's not working for you.

(I'm using Ubuntu 11.10, ruby 1.8.7, heroku 2.15.1)

link|improve this answer
Didn't work for me – Rob B Jan 18 at 11:01
I talked with Heroku support, and they suggested this as a temporary solution. It worked for me, but I'm sure it's not the answer for every case. – lrog Feb 7 at 19:07
1  
Not sure why this answer deserved a down vote... It solved the problem for me, and it suggests an answer to the problem. – lrog Feb 27 at 3:38
I had the opposite problem... even though the Heroku dev docs say you can use a DSA key (ssh-dss), I kept getting the 'Permission denied' message until I switched to an RSA key – brandonjp Mar 11 at 7:48
feedback

If you want to use "sudo", example:

sudo git clone git@heroku.com......... -o heroku

you should also generate ssh key for your root user.

sudo su
cd /root/.ssh  
ssh-keygen -t rsa
....
heroku keys:add id_rsa.pub

and it'll work.

if you don't use root user, generate ssh key in your user directory instead.

cd /home/user/.ssh

Sorry if my sentences messed up...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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