【macOS】git问题:permission denied

现在使用git等很多,自己也尝试了下,结果在安装后执行一下命令等时候总是报permission denied

ssh -T git@github.com

各种baidu终于搞定。

想要使用git必须先安装git,可以自行baidu安装并注册github账号。这里就不必多说。

打开终端输入以下命令查看是否存在.ssh文件夹

$cd ~/.ssh

如果存在会返回以下信息

Last login: Sat Jul1 17:45:48 on ttys000

pantieruideMacBook-Pro:~ pantierui$ cd ~/.ssh

pantieruideMacBook-Pro:.ssh pantierui$

如果不存在,可以使用mkdir创建一个.ssh文件夹

通过以下命令默认参数生成ssh的key

ssh-keygen -t rsa -C xxxxx@gmail.com(注册github时的email)

回车后如下:

pantieruideMacBook-Pro:~ pantierui$ ssh-keygen -t rsa -C "pantierui@hotmail.com"

Generating public/private rsa key pair.

Enter file in which to save the key (/Users/pantierui/.ssh/id_rsa): xxxxxxx(此处为key等名字)

Enter passphrase (empty for no passphrase):(此处为密码,git验证时用)

Enter same passphrase again:(再次输入密码)

Your identification has been saved in pantierui.

Your public key has been saved in pantierui.pub.

The key fingerprint is:

SHA256:QlhWPjXi1AjbWFiMvalu+yFv4d2NfUj41mhWZkJ196c pantierui@hotmail.com

The key's randomart image is:

+---[RSA 2048]----+

|+O*oo|

|+oO+o..+|

|. + =o.+|

|.o.. o|

|..So ..|

|.... E +|

|....o . * O |

|ooo.. o X o|

|..+o+ . |

+----[SHA256]-----+

pantieruideMacBook-Pro:~ pantierui$

此时用以下命令查看生成等密钥(确保当前目录为.ssh)

cat pantierui.pub (此文件为刚刚生成的,记录下来以下步骤会用到)

登陆github网站,找到自己用的的【setting】下的【SSH and GPG keys】,点击【New SSH key】

【title】此处随便起个名字

【Key】此处就是刚刚cat出来的内容

执行以下命令验证是否可以链接到github

ssh -T git@github.com

会提示以下信息

The authenticity of host 'github.com (192.30.255.112)' can't be established.

RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.

Are you sure you want to continue connecting (yes/no)?

回复yes,继续。此时会报以下错误

Permission denied (publickey).

使用以下命令查看log,诊断信息如下

pantieruideMacBook-Pro:.ssh pantierui$ ssh -T -v git@github.com

OpenSSH_7.4p1, LibreSSL 2.5.0

debug1: Reading configuration data /etc/ssh/ssh_config

debug1: Connecting to github.com [192.30.255.112] port 22.

debug1: Connection established.

debug1: key_load_public: No such file or directory

debug1: identity file /Users/pantierui/.ssh/id_rsa type -1

debug1: key_load_public: No such file or directory

debug1: identity file /Users/pantierui/.ssh/id_rsa-cert type -1

debug1: key_load_public: No such file or directory

debug1: identity file /Users/pantierui/.ssh/id_dsa type -1

debug1: key_load_public: No such file or directory

debug1: identity file /Users/pantierui/.ssh/id_dsa-cert type -1

debug1: key_load_public: No such file or directory

debug1: identity file /Users/pantierui/.ssh/id_ecdsa type -1

debug1: key_load_public: No such file or directory

debug1: identity file /Users/pantierui/.ssh/id_ecdsa-cert type -1

debug1: key_load_public: No such file or directory

debug1: identity file /Users/pantierui/.ssh/id_ed25519 type -1

debug1: key_load_public: No such file or directory

debug1: identity file /Users/pantierui/.ssh/id_ed25519-cert type -1

debug1: Enabling compatibility mode for protocol 2.0

debug1: Local version string SSH-2.0-OpenSSH_7.4

debug1: Remote protocol version 2.0, remote software version libssh-0.7.0

debug1: no match: libssh-0.7.0

debug1: Authenticating to github.com:22 as 'git'

debug1: SSH2_MSG_KEXINIT sent

debug1: SSH2_MSG_KEXINIT received

debug1: kex: algorithm: curve25519-sha256@libssh.org

debug1: kex: host key algorithm: ssh-rsa

debug1: kex: server->client cipher: chacha20-poly1305@openssh.com MAC: compression: none

debug1: kex: client->server cipher: chacha20-poly1305@openssh.com MAC: compression: none

debug1: expecting SSH2_MSG_KEX_ECDH_REPLY

debug1: Server host key: ssh-rsa SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8

debug1: Host 'github.com' is known and matches the RSA host key.

debug1: Found key in /Users/pantierui/.ssh/known_hosts:1

debug1: rekey after 134217728 blocks

debug1: SSH2_MSG_NEWKEYS sent

debug1: expecting SSH2_MSG_NEWKEYS

debug1: SSH2_MSG_NEWKEYS received

debug1: rekey after 134217728 blocks

debug1: SSH2_MSG_SERVICE_ACCEPT received

debug1: Authentications that can continue: publickey

debug1: Next authentication method: publickey

debug1: Trying private key: /Users/pantierui/.ssh/id_rsa

debug1: Trying private key: /Users/pantierui/.ssh/id_dsa

debug1: Trying private key: /Users/pantierui/.ssh/id_ecdsa

debug1: Trying private key: /Users/pantierui/.ssh/id_ed25519

debug1: No more authentication methods to try.

Permission denied (publickey).


因为ssh会找id_rsa和id_rsa.pub文件,注意我们生成的pantierui和pantierui.pub不等于前面的两个文件,顾验证失败。使用以下命令复制出上名的文件

cp pantierui id_rsa && cp pantierui.pub id_rsa.pub

重新执行验证命令

ssh -T git@github.com

需要回复密码

Enter passphrase for key '/Users/pantierui/.ssh/id_rsa':(此处为创建key时的密钥)

Hi pantierui! You've successfully authenticated, but GitHub does not provide shell access.

如果出现上述信息就可以使用github了。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,080评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,422评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,630评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,554评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,662评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,856评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,014评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,752评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,212评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,541评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,687评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,347评论 4 331
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,973评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,777评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,006评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,406评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,576评论 2 349

推荐阅读更多精彩内容