環境
macOS High Sierra Ver. 10.13.6
質問
SSHの公開鍵と秘密鍵を作成することができたが、Githubに接続することができません。どんな原因が考えられるでしょうか。
SSHの公開鍵と秘密鍵を作成し、公開鍵をGithubに登録し
$ ssh -T git@github.com
と打ったところ、次のように返ってきました。
The authenticity of host 'github.com' can't be established. RSA key fingerprint is (...). Warning: Permanently added 'github.com, ' (RSA) to the list of known hosts. no such identity: /Users/(name)/.ss/id_rsa: No such file or directory git@github.com: Permission denied (publickey).
試したこと
configファイルを確認した方が良いとのことでした。(こちらのstep4参照)既に存在したconfigファイルを
開けてみるとIdentityfileが~/.ssh/id_rsaのままでした。↑リンクとこちらを参考にファイルを次のように書き換えました。
Host github github.com HostName github.com AddKeysToAgent yes IdentityFile ~/.ssh/id_ed(number)
configを保存して
❯ ssh -T git@github.com
と叩きましたが、
no such identity: /Users/...../.ssh/id_ed37141: No such file or directory git@github.com: Permission denied (publickey).
とまた出てきました…他にどのような原因が考えられるでしょうか。
お力を貸していただけると嬉しいです!!
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/17 14:40 編集
2021/02/17 14:38 編集
2021/02/17 14:41