2

I get this when I am trying to push to my Heroku app:

ssh_exchange_identification: read: Connection reset by peer
fatal: The remote end hung up unexpectedly

I tried regenerating the ssh keys and adding them to the remote, but no joy. Any help. Kinda stuck in a rut here!

EDIT: and now I get the same error from a different app that was working very recently. :/

Cameron
  • 4,181
  • 9
  • 36
  • 40

2 Answers2

2

It is usually usefull to make a:

ssh -vvv yourlogin@heroku

in order to dispay all the operations taking place during the ssh communication.

Various causes can be at the origin of these,

  • from a $HOME not correctly defined (usual on Windows where the environment variable %HOME% isn't defined at all by default)
  • to an IP conflict address (see this thread) for the SSH daemon.

See also this SO answer for more debug tips.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
2

Heroku is having git problems - see Heroku server status: http://status.heroku.com/

I just started getting this error now.

Rob d'Apice
  • 2,416
  • 1
  • 19
  • 29