Internal error: github.com[0: 192.30.252.130]: errno=No error fatal: unable to connect a socket (No error)

StackOverflow https://stackoverflow.com/questions/19204333

  •  30-06-2022
  •  | 
  •  

Question

I'm pretty much a start up (noob) in this whole coding thing. But I have my eclipse running with the aptana studio plugin. I open a new web project, and click on the "HTML5 Boilerplate" Option, and upon creating the project, get this error message: Internal error:

github.com[0: 192.30.252.130]: errno=No error fatal: unable to connect a socket (No error)

when I click on the eclipse "Problem Occured" prompt on "Details" I am not sure of how to fix this problem. I already installed the git plugins on eclipse and everything, if that was a possible solution.

Was it helpful?

Solution 2

It depends on the GitHub url for the HTML5 boilerplate repo.

But if you are behind a firewall, chances are that url is an ssh one, and ssh is blocked.
If you have not control over said url, and cannot change it to an https one, you still can attempts a manual download and installation, as in this answer.

OTHER TIPS

This solved my issue.... Bypass git using git:// addresses, force them to use https://

git config --global url."https://".insteadOf git://

To revert the settings back to git port, use below command

git config --global --unset url."https://".insteadOf

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top