key_load_public:Ubuntu 15.10でのscpまたはgitクローンの無効な形式


17

Ubuntu 15.10の新規インストール後、scpまたはを使用git cloneすると、次の警告が表示されます(コマンド自体は失敗しません)。key_load_public: invalid format

この警告を取り除くにはどうすればよいですか?

更新:これはの出力ですscp -vvv

OpenSSH_6.9p1 Ubuntu-2, OpenSSL 1.0.2d 9 Jul 2015
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to ... [...] port 22.
debug1: Connection established.
key_load_public: invalid format
debug1: identity file /home/alexzeitler/.ssh/id_rsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/alexzeitler/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/alexzeitler/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/alexzeitler/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/alexzeitler/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/alexzeitler/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/alexzeitler/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/alexzeitler/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.9p1 Ubuntu-2

だけでなくkey_load_public: invalid format
AB

詳細ログ全体を投稿してください。
-Jakuje

@Jakuje質問に詳細な出力を追加しました。
アレクサンダーツァイトラー

sshのコンテキストを表示するscpなど、かなり詳細なログを意味しましたscp -vvv file remote:file
-Jakuje

@Jakujeは再び更新しました-これで十分ですか?
アレクサンダーツァイトラー

回答:


33

ファイルを確認してください/Users/alexzeitler/.ssh/id_rsa。そこにあるもの?どうやってそこに来たの?

秘密のRSAキーである必要がありますよね?そして、/Users/alexzeitler/.ssh/id_rsa.pub何かありますか?有効な公開鍵ですか?

これらのキーを使用しない場合は、両方を削除すると、メッセージが消えます。別の方法で使用している場合は、別の場所に移動してください。異なる形式の場合も同じです。

パブリック部分はおそらく破損しているため、次のコマンドを使用してプライベート部分から再作成できます。

ssh-keygen -f ~/.ssh/id_rsa -y > ~/.ssh/id_rsa.pub

ホストキーの可能性

他の可能性は、クライアントがサーバー公開鍵を読み込もうとしていることですHostBasedAuthentication。許可されていません/etc/ssh/ssh_configか?

これらのファイルのいずれかが欠落または破損しています。

/etc/ssh/ssh_host_ecdsa_key.pub
/etc/ssh/ssh_host_ed25519_key.pub
/etc/ssh/ssh_host_dsa_key.pub
/etc/ssh/ssh_host_rsa_key.pub

あなたのsshdサーバーは文句を言っていませんか?


公開鍵と秘密鍵などのgit + GitHubのでそれらを使用するときに有効です
アレキサンダーZeitler氏

答えを編集しました。サーバーキーは、場合によっては原因にもなります。
-Jakuje

2
あれは以前あった。私は公共部分が何らかの形で破損していると信じています。を使用して、プライベートから新しい公開キーを再生成することができssh-keygen -y ~/.ssh/id_rsaます。
-Jakuje

3
秘密から公開鍵を再作成し、それを修正しました-あなたの助けと忍耐に感謝します!回答を更新して、回答としてマークできるようにしてください。
アレクサンダーツァイトラー

5
ところで、私が使用するコマンドは以下のとおりであった:ssh-keygen -f ~/.ssh/id_rsa -y > ~/.ssh/id_rsa.pub
アレクサンダーZeitler氏
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.