Sequel ProでSSH接続に失敗するときの対処

Pocket

macのSequel Proで

と出た。
この対策を調べると、以下のような記事が

http://serverfault.com/questions/580753/ssh-aborts-with-too-many-authentication-failures

そこで、sshのconfigを編集する。

# vi ~/.ssh/config

して、一番上に

Host *
  GSSAPIAuthentication no
  IdentitiesOnly=yes

として再度接続テストすると、今度は成功。

この記事を書いた人