7

エラー全体は次のとおりです。

ssh: connect to host bitbucket.org port 22: Connection timed out
fatal: The remote end hung up unexpectedly

異なるサーバー (国) にある 2 つのプロジェクトからプッシュすると、このエラーが発生します。

何が問題になる可能性がありますか?

アップデート:

使用する

ssh -v

私はこれを得ています:

usage: ssh [-somecode] [-b bind_address] [-c cipher_spec]
           [-D [bind_address:]port] [-e escape_char] [-F configfile]
           [-i identity_file] [-L [bind_address:]port:host:hostport]
           [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]
           [-R [bind_address:]port:host:hostport] [-S ctl_path]
           [-w tunnel:tunnel] [user@]hostname [command]
4

3 に答える 3

15

これにより、再び機能する可能性があります

ssh 構成ファイルを編集します。

nano ~/.ssh/config

次の行があることを確認してください。

Host bitbucket.org
 Hostname  altssh.bitbucket.org
 Port  443
于 2016-08-15T11:04:27.190 に答える
5

ssh 発信接続用の iptable ルールがないかどうかを確認します。true の場合は、ポート 22 を追加します。
複数のポートの場合:

iptables -t filter -A OUTPUT -p tcp --match multiport --dport 22,1111,2222,3333 -j ACCEPT
于 2013-10-04T13:02:28.303 に答える
-2

check if bitbucket is down

  1. Open Browser
  2. Go to http://www.bitbucket.org
  3. If the page doesn't display, it means bitbucket is down.

Solution: Wait for it :)

于 2014-04-27T13:14:03.077 に答える