Eclipse help won't show under Ubuntu

后端 未结 6 1246
迷失自我
迷失自我 2020-12-19 04:27

Whenever I open some help within eclipse I get a page saying:

Server Error. The following error occurred: [code=CANT_CONNECT_LOOPBACK] Cannot connect

6条回答
  •  时光说笑
    2020-12-19 04:51

    Basically, this error means that Eclipse is failing to establish a TCP/IP connection to your localhost using 127.0.0.1 (Eclipse starts a server for the Help).

    If you are using some specific proxy settings (either global at the OS level or local at the Eclipse level), double check that you are bypassing the proxy for localhost and 127.0.0.1.

    If this doesn't help, try setting the hostname that help uses to localhost when starting eclipse (either on the command line or in the eclipse.ini):

    eclipse -vmargs -Dserver_host=localhost
    

提交回复
热议问题