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

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.

share|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
1  
The following line solved the problem for me. heroku accounts:set youraccount – Flow Jan 14 '12 at 16:47

27 Answers

up vote 743 down vote accepted

You have to upload your public key to Heroku:

heroku keys:add ~/.ssh/id_rsa.pub
share|improve this answer
this worked for me! – brendan May 27 '11 at 3:07
12  
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
4  
just a note to people saying it didn't work. you need to make sure you have an ssh public key already made. help.github.com/mac-set-up-git for more info on doing so with mac. – Ryan Dec 28 '11 at 0:08
43  
if you don't have a public key, heroku will prompt you to add one automatically which works seamlessly. Just use: heroku keys:add – vansan Jul 9 '12 at 15:55
6  
Also try ssh-keygen -t rsa -C "your_email@youremail.com" if still having the error, to create another file.pub and use that one in the recommended command in this answer – Tom Roggero Oct 23 '12 at 4:01
show 13 more comments

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

share|improve this answer
5  
This solved it for me. I think the reason was, I had a 'github_rsa' file from Github for Windows, but no id_rsa file. – m--s Jul 4 '12 at 11:40
this works for me, too – Kiddo Jul 8 '12 at 21:03
Thanks! Strange they don't mention this in the getting started docs :-/ – Jason Oct 26 '12 at 8:26

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

share|improve this answer
1  
Heroku never prompted me to add one. So I had to do the ssh-keygen first. This helped. Thanks! – Kal Jan 4 at 22:26

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
share|improve this answer
2  
Thanks... It worked for me like a charm and saved my lot of time! – Nimesh Nikum Jul 27 '12 at 19:13
2  
This worked for me as well, after nothing else did! However there should be a line break before User in that last line. Also, it complained about the # comment, so I just removed it. – Erik J Aug 7 '12 at 21:32
2  
Make sure that the "IdentityFile" has the non public file (like above), not the public one. For some reason mine had the public version and it was throwing an error saying the permissions for the file were incorrect. – KevinM Sep 26 '12 at 13:31
Adding this host info to my config file solved the problem for me. I created a heroku rsa key and the default permissions on heroku.pub threw an error when I tried to git push. I had to chmod 600 heroku.pub and then when I pushed it worked. – Dylan Valade Oct 12 '12 at 2:53
1  
IdentityFile ~/.ssh/ssh-dss is the path to the private key. You want to enter your private key here, not your public key. – HairOfTheDog Apr 24 at 21:43

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.

share|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 '12 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 '12 at 11:09
2  
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 '12 at 7:43

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

share|improve this answer
This worked for me. thanks! – Nick Siderakis Apr 30 '12 at 16:32
Worked for me!! – Goaler444 Dec 27 '12 at 18:38

This was the solution for me:

ssh-add ~/.ssh/my_heroku_key_rsa
share|improve this answer
This helped me. – Zhaidarbek Nov 27 '12 at 10:34
Same here. Thank you. Also, make sure your private key has the proper permissions associated to it. chmod 600 ~/.ssh/heroku_rsa – Arnaud Brousseau Jan 31 at 7:47

To share my experience :

Git (my own install) was looking for the key named 'id_rsa'.

So I tried to rename my keys to 'id_rsa' and 'id_rsa.pub' and it worked.

Btw, I'm sure there is an other way to do it but I didn't look deeper yet.

share|improve this answer
This worked for me when nothing else helped. – kilves76 Nov 25 '12 at 18:37
Worked for me (Windows 7 64bit). I have GitHub for Windows installed, and it names the keys GitHub_rsa. Is there a way to specify which key Git should use? – Spongeboy Apr 9 at 13:13
awesome! its worked for me – Zakharov Roman May 2 at 20:40

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.

share|improve this answer
this worked for me, even if I already did that with key with other names. – Eduard Sep 9 '12 at 20:14

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)

share|improve this answer
Didn't work for me – Rob B Jan 18 '12 at 11:01
1  
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. – Loren Rogers Feb 7 '12 at 19:07
3  
Not sure why this answer deserved a down vote... It solved the problem for me, and it suggests an answer to the problem. – Loren Rogers Feb 27 '12 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 '12 at 7:48
worked for me. Toggling between dsa and rsa seems to work if you change your keys after heroku create and before git push. – Pramod Jul 22 '12 at 16:56

If you've already uploaded the key then try to remove the key and then re-upload it with a new key.

 heroku keys:remove //removes the existing key
 ssh-keygen -t rsa //generates a new key in ~/.ssh folder
 heroku keys:add    //uploads the new key, if no arguments r passed then the key generated                              
                    //in default directroy i.e., ~/.ssh/id_rsa is uploaded
 git push heroku

this should work.

share|improve this answer

I had this problem when TortoiseGIT was installed on my machine. After changing the environment variable GIT_SSH from

"c:\Program Files\TortoiseGit\bin\TortoisePlink.exe"

to

"c:\Program Files (x86)\Git\bin\ssh.exe"

and following this tutorial with ssh-keygen and keys:add, it works!

share|improve this answer
which tutorial did you follow? – eckes Aug 15 '12 at 16:31
the one up here from Onur Turhan – zooli Sep 8 '12 at 12:36
Using ssh provided by Git IS a very good solution. It was really getting complicated understanding plink/pageant/putty here ... – Stéphane Nov 16 '12 at 19:39
It works to me, thanks – xueliang liu Jan 19 at 10:31

One single command works:

heroku keys:add

It will make one if it doesn't exist.

share|improve this answer

Pushing was working for me and then stopped suddenly.

If the heroku api is experiencing downtime, you will get this error when you try to push.

Check:

https://status.heroku.com/

before freaking out too hard.

share|improve this answer
good call. this was exactly my problem tonight. – Billy Coover Dec 25 '12 at 5:16

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.
share|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

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
share|improve this answer

I had to do:

$ ssh-keygen -t rsa  
$ heroku keys:add  

Then it worked:

$ git push heroku master  
share|improve this answer

The problem I faced was on Windows and invariably whenever I run the "heroku keys:add" it selected the github keys. So here are the steps I followed to resolve the issue

  1. went to the .ssh directory under "Document and Settings" folder and deleted the git hub keys
  2. run the command heroku keys:add

The above command asked me to generate a new keys and following was the output Could not find an existing public key. Would you like to generate one? [Yn] Y Generating new SSH public key. Uploading SSH public key C:/Documents and Settings/Admin/.ssh/id_rsa.pub... done ! The 'heroku' gem has been deprecated and replaced with the Heroku Toolbelt, download and install from https://toolbelt.heroku.com.

  1. rerun the command heroku keys:add

The above command will not give the following output Found existing public key: C:/Documents and Settings/Admin/.ssh/id_rsa.pub Uploading SSH public key C:/Documents and Settings/Admin/.ssh/id_rsa.pub... done

  1. Now use the git push heroku master

for me using the above steps solved the issue and was able to deploy the application on the cloud.

share|improve this answer

I was experiencing the same problem; following these steps should help:

  1. First, log in: heroku login
  2. Clear all keys: heroku keys:clear
  3. Delete all files in local folder ( all .pub files and know_host) in .ssh/ folder
  4. Log in again : heroku login - u will prompt with no key, so follow the onscreen instructions.
share|improve this answer
It works for me. Thx! – illDev Apr 5 at 12:55

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%
share|improve this answer

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...

share|improve this answer

I almost don't see on StackOverflow the important detail about this problem: as seen on https://help.github.com/articles/generating-ssh-keys it's necessary to upload (paste) pub key (id_rsa.pub) to github account before: https://github.com/settings/ssh. Until I did it I lost some days for solving this problem.

share|improve this answer
1  
The original question was about Heroku not Github and it has been answered more than a year ago. – reto Sep 20 '12 at 13:14
The question is about "git push heroku master". With no git config it will not work sometimes. I didn't find this feature on this page and posted. If your mark is not for "more than a year ago" - please cancel it. – Ivan Sep 24 '12 at 9:24
2  
Github is not involved when you call "git push heroku". Your comment is very valid and helpful, just not very much in the context of this Question. Anyway, thanks for the contribution! – reto Sep 24 '12 at 10:27

Check your .ssh config for heroku. Go to the .ssh folder and open the config file

cd ~/.ssh
subl config

The 'subl' is for Sublime Text, but you can use whatever editor you wish. Look for the line "IdentityFile" and make sure it has the non public key listed:

IdentityFile "/Users/ircmullaney/.ssh/my_ssh"

not

IdentityFile "/Users/ircmullaney/.ssh/my_ssh.pub"

That did it for me. I'm not sure why mine had the public version in the config file, but it did and it was throwing the error:

Permissions 0644 for '/Users/ircmullaney/.ssh/my_ssh.pub' are too open.
share|improve this answer

I was still having problems after trying all of these ideas. This was my problem:

My remote heroku repository was funked. I refreshed it as follows:

git remote -v

Then remove the heroku one that is wrong:

git remote rm heroku

Then add the new one

git remote add heroku git@heroku.com:sitename.git

You can get the sitename from your Heroku settings page for your app. Good Luck!

share|improve this answer

Try repairing permissions in Disk Utility (Mac OS X). Helped me

share|improve this answer

At first make sure hidden files are visible in your Mac. If not do:

  • Open terminal and type in defaults write com.apple.Finder AppleShowAllFiles TRUE
  • killall Finder

Next steps:

  • Going to Users/user_name/.ssh/ removed all the files.
  • Opening terminal type in ssh-keygen -t dsa
  • Then heroku keys:add ~/.ssh/id_dsa.pub

N.B. I did it in Mac OSX 10.7.2 Lion. Though the procedure should be same in others too.

share|improve this answer

I have this issue as well. I am using Mac OSX. The way I fixed that was to login as admin

sudo su

password

share|improve this answer

protected by Community Jan 24 at 13:04

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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