当前位置:首页 » 《随便一记》 » 正文

【ssh】解决port 22:connection time out

5 人参与  2024年02月07日 11:46  分类 : 《随便一记》  评论

点击全文阅读


突然git clone报错了,之前没遇到过,记录一下

报错信息:

ssh: connect to host github.com port 22: Connection timed outPlease make sure you have the correct access rightsand the repository exists.

运行以下命令检查ssh是否能够连接成功

ssh -T git@github.com

报错:

$ ssh -vT git@github.comOpenSSH_9.2p1, OpenSSL 1.1.1t  7 Feb 2023debug1: Reading configuration data /etc/ssh/ssh_configdebug1: Connecting to github.com [20.205.243.166] port 22.debug1: connect to address 20.205.243.166 port 22: Connection timed outssh: connect to host github.com port 22: Connection timed out

这个错误消息表明计算机无法通过 SSH 连接到 GitHub。 "Connection timed out" 意味着连接超时。

检查一下是否添加了SSH密钥

cat ~/.ssh/id_rsa.pub

输出显示已经配置密钥了。

查阅资料后,解决问题方案如下:

在 C:\Users\Username\.ssh 目录下,新建config文件,内容如下:

 

Host github.comUser xxx@xxx.com(你的邮箱)Hostname ssh.github.comPreferredAuthentications publickeyIdentityFile ~/.ssh/id_rsaPort 443

配置完成后,再次执行ssh -T git@github.com
输出如下,输入yes即可

The authenticity of host '[ssh.github.com]:443 ([192.30.255.123]:443)' can't be established.RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.Are you sure you want to continue connecting (yes/no)? yesWarning: Permanently added '[ssh.github.com]:443,[192.30.255.123]:443' (RSA) to the list of known hosts.

再次运行ssh -T git@github.com就连接上了


点击全文阅读


本文链接:http://zhangshiyu.com/post/67686.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1