I\'m giving JetBrains IntelliJ IDEA 12.0.4 a spin and have run into an issue when compiling programs. When I run a program I get the following error:
Internal err
i got the below error in windows env:
Error:Internal error: (com.intellij.util.io.PersistentEnumeratorBase$CorruptedException) PersistentEnumerator storage corrupted C:\Users>.IntelliJIdea14\system\compile-server\cmx_cdc441bb\aj\aspect_path.dat
and deleted the .dat file located at the above path and my jetbrain IDE started compiling all the classes and problem got resolved.
I had the same issue with OSX. What I did is just recreate the directory where IntelliJ caches compiled classes.
I had the exact same problem. So I edited the IDEA_HOME\bin\idea.properties file and uncommented:
Then I removed the ${user.home}
from the idea.config.path
and idea.system.path
and everything worked fine.
The following steps worked for me:
Edit IDEA_HOME\bin\idea.properties to contain the following lines:
idea.config.path=C:/Users/<yourUsername>/.IdeaIC/config
idea.system.path=C:/Users/<yourUsername>/.IdeaIC/system
Open IntelliJ IDEA
now the .IdeaIC folder (specified above) is created automatically and it has the following structure:
.IdeaIC
- config
- system
This Error may encounter in IntellijIdea if you try to use some language-specific keywords as your class name or object name. In my case once I got a similar kind of error on using the reserved keywords.
Some options to fix the issue:
It seems that your user home is located on a network drive, which is unsupported by IntelliJ
In some environments user's home directory is located on the mapped network drive which is unacceptable for IntelliJ IDEA. You'll notice the huge performance degradation. You may also want to move system directory to the faster or larger drive partition.
You should copy IDEA_HOME\bin\idea.properties
to your home directory and adjust the following paths so that they point to local directories instead:
See the above link for further details. If you don't want to lose everything you already configured, just move \domain.local\usersfolders\roberth\.IntelliJIdea12
to a local folder.