Home > Enterprise >  An internal error occurred during: "Check license status". ECLIPSE_HOME is undefined
An internal error occurred during: "Check license status". ECLIPSE_HOME is undefined

Time:10-04

I have eclipse Version: 2020-09 (4.17.0) for java.

On every startup eclipse shows this error.

It is not creating any problem.

But still bugging me.

I have changed workspace and still the same.

Installed pluggin:

  1. Eclipse Web Developer Tools 3.19
  2. Maven Integration for Eclipse (Luna and Newer) 1.5

CodePudding user response:

That's not Eclipse, but a known issue of CodeMix or another Genuitec plugin you have installed.

In contrast to CodeMix, Eclipse Wild Web Developer is free and open source (so no license checking at all), providing also support for JavaScript, TypeScript and other languages and frameworks via VS Code language servers.

CodePudding user response:

I found the answer.

Credit goes to https://stackoverflow.com/users/14262893/tom-károly

My file was at "c:\Program Files\eclipse\configuration\config.ini"
The path may vary as per your eclipse installation.

eclipse.home=c:\Program Files\eclipse\

I added this line in the "config.ini" file and no more prompting.

  • Related