Eclipse can not connect to internet

匿名 (未验证) 提交于 2019-12-03 02:33:02

问题:

I am using Eclipse 3.6. I am trying to download a plug in from an update site, but it won't connect, it keeps saying "Pending" for quite some time.

回答1:

Not alot of information there. It helps to let us know what you have tried...

I'll quote an answer I gave to a similar question, which contains the basic workarounds:


Can you connect to internet at all through Eclipse?

Open the internal webbrowser. In Eclipse: Window -> show view -> Other -> General: Internal web browser. Look up any normal adress, is it working?

Can you connect to another update site? Try for example Eclipse Emma: http://update.eclemma.org/ Do you see anything there?

What are your proxy preferences? Go to Window -> preferences -> General: Network connections.

The active provider:

Specifies the settings profile to be used when opening connections. Choosing the Direct provider causes all the connections to be opened without the use of a proxy server. Selecting Manual causes settings defined in Eclipse to be used. On some platforms there is also a Native provider available, selecting this one causes settings that were discovered in the OS to be used.

If internet is working fine outside of Eclipse, try changing to Native. After that, try Direct.



回答2:

Here's one more option to try if none of the efforts above helped. You might be using Eclipse from a Shared Drive (for eg, H:). If so, move/copy it the entire Eclipse directory to C: and try again.

My Eclipse could not connect to internet, nor access Eclipse Marketplace, nor even open ports for Tomcat server. I am behind a corporate proxy and tried many options that I have found on Stack Overflow and other forums but to no avail. I've also tried different versions (Mars, Luna, Kepler and a corporate-provided Kepler).

These are the options I have tried:

Use Direct Connection

  • Go to Windows > Perferences > General > Network Connections.
  • Change Active Provider to Direct.
  • Restart Eclipse.

Set up Manual Proxy

  • Go to Windows > Perferences > General > Network Connections.
  • Change Active Provider to Manual.
  • Input proxy details, including username/password if required.
  • Clear SOCKS proxy.
  • Restart Eclipse.

Change Eclipse.ini

  • Go to Windows > Perferences > General > Network Connections.
  • Change Active Provider to Native.
  • Open Eclipse.ini.

Add the following under -vmargs, each on its own line.

-Dorg.eclipse.ecf.provider.filetransfer.excludeContributors=org.eclipse.ecf.provider.filetransfer.httpclient4 -Dhttp.proxyPort=8080 -Dhttp.proxyHost=myproxy -Dhttp.proxyUser=mydomain\myusername -Dhttp.proxyPassword=mypassword -Dhttp.nonProxyHosts=localhost|127.0.0.1 -Djava.net.preferIPv4Stack=true 
  • Restart Eclipse

See:

Add Eclipse to Firewall

Delete Oomph-releated sub folders

  • Delete all Oomph-releated sub folders in ${user.home}/.eclipse/ folder
  • For Windows this may be in C:\Users\.eclipse

See answer by Stephan EberleFriend on Fri, 14 August 2015 18:54: https://www.eclipse.org/forums/index.php/t/270718/

See my other answer for Eclipse not able to open ports for Tomcat (https://stackoverflow.com/a/37246227/4212710).



回答3:

If eclipse could not able to connect to internet, following may be one of the reason: There is a service called "Network Access Protection Agent", which might be blocking eclipse from accessing the internet.

In this case, you can try the following (this worked for me-Windows 7 PC): 1. Click on Windows Start button and search for Administrative Tools and Open it 2. Then open Services 3. Look for "Network Access Protection Agent" service 4. Stop this service 5. Now eclipse should be able to connect to internet

Note: This happens when Windows are not up to date. So after stopping this service, update your Windows, then start this service.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!