up vote 46 down vote favorite
30
share [g+] share [fb]

I am using Eclipse 3.3 ("Europa"). Periodically, Eclipse takes an inordinately long time (perhaps forever) to start up. The only thing I can see in the Eclipse log is:

    !ENTRY org.eclipse.core.resources 2 10035 2008-10-16 09:47:34.801
    !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.

Googling reveals someone's suggestion that I remove the folder:

workspace\.metadata\.plugins\org.eclipse.core.resources\.root\.indexes

This does not appear to have helped.

Short of starting with a new workspace (something which I am not keen to do, as it takes me hours to set up all my projects again properly), is there a way to make Eclipse start up properly?

link|improve this question

feedback

protected by Michael Myers Feb 1 '11 at 16:53

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

13 Answers

up vote 56 down vote accepted

This may not be an exact solution for your issue, but in my case, I tracked the files that Eclipse was polling against with SysInternals Procmon, and found that Eclipse was constantly polling a fairly large snapshot file for one of my projects. Removed that, and everything started up fine (albeit with the workspace in the state it was at the previous launch).

The file removed was:

.metadata\.plugins\org.eclipse.core.resources\.projects\<project>\.markers.snap
link|improve this answer
1  
This worked for me too and I'm on Ubuntu. Thanks. – rmcc Apr 2 '10 at 14:17
I also needed to remove the .markers.snap files for my projects to get Eclipse to start. – Nighthawk Aug 10 '10 at 18:48
+1 Just saved me having to recreate my entire workspace - cheers! – chrispy Aug 16 '10 at 9:18
This file didn't exist on my version. – User1 Feb 16 '11 at 15:47
4  
2011-06-08: Under Eclipse 3.6 (Helios), the corresponding file seems to be .metadata/.plugins/org.eclipse.core.resources/.snap . I killed that file and presto, Eclipse started up again. I just noticed this duplicates the answer by joj. – Carl Smotricz Jun 9 '11 at 15:32
show 1 more comment
feedback

try:

  1. cd to <workspace>\.metadata\.plugins\org.eclipse.core.resources
  2. remove the file .snap
link|improve this answer
3  
This worked for me. – Chase Seibert May 18 '10 at 20:20
This worked for me. Took me forever to figure this out! – Brian Aug 24 '10 at 3:39
Worked for me too. Thanks. – chong Nov 4 '10 at 12:02
You're my god! BTW, what does this .snap normally do? – Michał Pękała Jan 9 '11 at 22:17
This file existed for me, but .metadata.plugins\org.eclipse.core.resources.projects\.markers.snap mentioned on the other answer did not. I didn't seem to lose anything critical from my workspace by deleting this file. – User1 Feb 16 '11 at 15:48
show 1 more comment
feedback

I also had luck with removing the *.snap files. Mine were located in a different directory than mentioned in the posts (below).

/.metadata/.plugins/org.eclipse.core.resources/.projects

Consequently, the following unix cmd did the trick:

find /.metadata/.plugins/org.eclipse.core.resources/.projects -name "*.snap" -exec rm -f {} \;

link|improve this answer
works for Indigo too – Balint Pato Nov 4 '11 at 10:46
feedback

You can try to start Eclipse first with the -clean option.

On Windows you can add the -clean option to your shortcut for eclipse. On Linux you can simply add it when starting eclipse from the command line.

link|improve this answer
With my issue on windows (similar if not identical to the question askers') this did not resolve the issue. – drknexus Jan 19 '11 at 5:24
feedback

Windows -> Preferences -> General -> Startup and Shutdown

Is Refresh workspace on startup checked?

link|improve this answer
2  
That might be a tidge hard to assess when the Eclipse workspace won't open in the first place. – drknexus Jan 19 '11 at 5:25
feedback

I just had problems with Eclipse starting up. It was fixed by deleting this file:

rm org.eclipse.core.resources.prefs

I found in .settings

link|improve this answer
feedback

Since I don't have a .snao or .prefs file in .metadata.plugins\org.eclipse.core.resources folder (running on OS X), what did the trick for me was copy the .project folder to old.project, start Eclipse, and check

Windows -> Preferences -> General -> Startup and Shutdown -> Refresh workspace on startup

as proposed by matt b. After that, I closed Eclipse, renamed the folder old.projects back to .projects and after that everything worked fine again.

link|improve this answer
feedback

Check that the Workspace Launcher hasn't opened on your TV or some other second monitor. It happened to me. The symptoms look the same as the problem described.

link|improve this answer
feedback

I had a similar problem with a rather large workspace in 3.5 and no .snap-files anywhere to be seen. "Windows -> Preferences -> General -> Startup and Shutdown -> Refresh workspace on startup" seems to be a workspace-related setting and so I couldn't change it for the workspace that was causing the hang.

Running eclipse with the command line parameter -refresh and then changing the setting seems to do the trick.

link|improve this answer
feedback

This one works for me:

Another, and a bit better workaround which apparently works:

  1. Close Eclipse.
  2. Temporary move offending project somewhere out of the workspace.
  3. Start Eclipse, wait for workspace to load (it should).
  4. Close Eclipse again.
  5. Move the project back to workspace.

Source: Eclipse hangs while opening workspace after upgrading to GWT 2.0/Google app engine 1.2.8

link|improve this answer
feedback

I did this:

  1. cd to .metadata.plugins\org.eclipse.core.resources
  2. remove the file .snap
  3. Noticed the Progress tab was doing something every few seconds..it seemed stuck
  4. Exit eclipse (DO NOT FILE|RESTART HERE OR YOU HAVE TO GO BACK TO STEP 1 AGAIN)
  5. Open eclipse again.

Using -refresh or -clean when starting eclipse did not help.

link|improve this answer
feedback

I didn't have the .snap files too. Here's another helpful how to: http://ahtik.com/blog/2008/01/15/eclipse-workspace-fails-to-start-after-crash-quick-fix/

link|improve this answer
feedback

I had no snap files. Going through the help menu installation list, at least 90% of my plugins had the uninstall button deactivated so I could not handle it through there. Under startup/shutdown most of plugins were not listed. Instead, I had to manually remove items from my plugins folder. Wow, the startup time is much faster for me now. So if everything else does not work and you have plugins that are disposable, this could be the ultimate solution to use.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.