Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

git - Heroku push master ssh problem

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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...