LoginSignup
0
0

More than 1 year has 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