赞
踩
在使用GitHub上传文件时检测ssh key 是否配置成功时 出现问题 ssh: connect to host github.com port 22: Connection refused。
ssh: connect to host github.com port 22: Connection refused
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
ssh: connect to host github.com port 22: Connection refused
这个错误提示的是连接github.com
的22端口被拒绝了。
原本以为github.com挂了,但是浏览器访问github.com一切正常。
网上搜索这个报错,发现很多人遇到这个问题,大概是以下方法解决。
这个问题的解决方案的思路是:给~/.ssh/config
文件里添加如下内容,这样ssh连接GitHub的时候就会使用443端口。
vim ~/.ssh/config
Host github.com
Hostname ssh.github.com
Port 443
如果~/.ssh
目录下没有config文件,新建一个即可。
修改完~/.ssh/config
文件后,使用ssh -T git@github.com
来测试和GitHub的网络通信是否正常,如果提示Hi xxxxx! You've successfully authenticated, but GitHub does not provide shell access.
就表示一切正常了。
这个方案有效的前提是:执行命令ssh -T -p 443 git@ssh.github.com
后不再提示connection refused
,所以要尝试这个方案的小伙伴先执行这条命令测试下。
但是,这个方案在我这里行不通,修改后还是提示ssh: connect to host github.com port 443: Connection refused
。
请教大佬以后说可以试一下不使用校园网访问,改用热点。
结果,果真是校园网的问题!
改为热点以后,检测GitHub的SSH key 配置成功
如果**IP默认是超时的话,是连不上的,**这就需要去更改IP地址,可参考 https://ping.chinaz.com/github.com 里面的IP,选择延时时间最短的,例如下图中的德国的最短,就使用它。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。