I get the following error as I'm actively writing to the database in a java program when I sync the database with neoclipse. I have connected to the database in read-only mode. Is this caused by Juno (which I'm using with neoclipse 1.7) or is this some bug? If I downgrade my eclipse will this fix the issue?
Exception in thread "Thread-3" java.lang.IllegalStateException: Unable to lock store [C:\Documents and Settings\Desktop\Neo4j\neo4j-community-1.8.M06\data\graph.db\neostore], this is usually a result of some other Neo4j kernel running using the same store.
at org.neo4j.kernel.impl.nioneo.store.CommonAbstractStore.checkStorage(CommonAbstractStore.java:173)
at org.neo4j.kernel.impl.nioneo.store.CommonAbstractStore.<init>(CommonAbstractStore.java:114)
at org.neo4j.kernel.impl.nioneo.store.AbstractStore.<init>(AbstractStore.java:77)
at org.neo4j.kernel.impl.nioneo.store.NeoStore.<init>(NeoStore.java:82)
at org.neo4j.kernel.impl.nioneo.store.StoreFactory.attemptNewNeoStore(StoreFactory.java:88)
at org.neo4j.kernel.impl.nioneo.store.StoreFactory.newNeoStore(StoreFactory.java:77)
at org.neo4j.kernel.impl.nioneo.xa.NeoStoreXaDataSource.<init>(NeoStoreXaDataSource.java:213)
at org.neo4j.kernel.InternalAbstractGraphDatabase.create(InternalAbstractGraphDatabase.java:416)
at org.neo4j.kernel.InternalAbstractGraphDatabase.run(InternalAbstractGraphDatabase.java:223)
at org.neo4j.kernel.EmbeddedGraphDatabase.<init>(EmbeddedGraphDatabase.java:79)
at org.neo4j.graphdb.factory.GraphDatabaseFactory$1.newDatabase(GraphDatabaseFactory.java:70)
at org.neo4j.graphdb.factory.GraphDatabaseBuilder.newGraphDatabase(GraphDatabaseBuilder.java:195)
at org.neo4j.graphdb.factory.GraphDatabaseFactory.newEmbeddedDatabase(GraphDatabaseFactory.java:56)
at Grapher.setUp(Grapher.java:130)
at Console2$MessageLoop.run(Console2.java:103)
at java.lang.Thread.run(Unknown Source)