0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

client_loop: send disconnect: Broken pipeでつまづいた話

Posted at

はじめに

SSHでサーバーにログインできず、3時間作業が止まったため備忘録として置いておきます。

エラー内容

.ssh % ssh ec2-user@<IPアドレス> -i <Pemファイル>
client_loop: send disconnect: Broken pipe

解決方法

.ssh/configを開きます。

Host *
  IPQoS lowdelay throughput
  Port 22
  HostName <ポート番号>
  User ec2-user
  IdentityFile ~/.ssh/<入りたいPemファイル>

これだけでログインできました。

同じところで詰まっている方がいらっしゃいましたら、
ぜひ参考にしてください。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?