I'm using Neo4j for my rails app. It was working fine a few days ago, but when I tried to start the server today, it wouldn't start. I checked out the log and got this error
Exception in thread "Thread-11" java.lang.RuntimeException: org.neo4j.kernel.lifecycle.LifecycleException: Component 'org.neo4j.kernel.NeoStoreDataSource@75ed6ed2' failed to stop. Please see attached cause exception. at org.neo4j.helpers.RunCarefully.run(RunCarefully.java:57) at org.neo4j.server.AbstractNeoServer.stop(AbstractNeoServer.java:505) at org.neo4j.server.Bootstrapper$1.run(Bootstrapper.java:181) Caused by: org.neo4j.kernel.lifecycle.LifecycleException: Component 'org.neo4j.kernel.NeoStoreDataSource@75ed6ed2' failed to stop. Please see attached cause exception. at org.neo4j.kernel.lifecycle.LifeSupport$LifecycleInstance.stop(LifeSupport.java:484) at org.neo4j.kernel.lifecycle.LifeSupport.stopInstances(LifeSupport.java:165) at org.neo4j.kernel.lifecycle.LifeSupport.stop(LifeSupport.java:147) at org.neo4j.kernel.impl.transaction.state.DataSourceManager.stop(DataSourceManager.java:132) at org.neo4j.kernel.lifecycle.LifeSupport$LifecycleInstance.stop(LifeSupport.java:476) at org.neo4j.kernel.lifecycle.LifeSupport.stopInstances(LifeSupport.java:165) at org.neo4j.kernel.lifecycle.LifeSupport.stop(LifeSupport.java:147) at org.neo4j.kernel.lifecycle.LifeSupport.shutdown(LifeSupport.java:188) at org.neo4j.kernel.impl.factory.GraphDatabaseFacade.shutdown(GraphDatabaseFacade.java:285) at org.neo4j.server.database.LifecycleManagingDatabase.stop(LifecycleManagingDatabase.java:111) at org.neo4j.kernel.lifecycle.LifeSupport$LifecycleInstance.stop(LifeSupport.java:476) at org.neo4j.kernel.lifecycle.LifeSupport.stopInstances(LifeSupport.java:165) at org.neo4j.kernel.lifecycle.LifeSupport.stop(LifeSupport.java:147) at org.neo4j.server.AbstractNeoServer$6.run(AbstractNeoServer.java:531) at org.neo4j.helpers.RunCarefully.run(RunCarefully.java:47) ... 2 more Suppressed: org.neo4j.kernel.lifecycle.LifecycleException: Failed to transition component 'org.neo4j.kernel.impl.pagecache.PageCacheLifecycle@6a82bc90' from STOPPED to SHUTTING_DOWN. Please see attached cause exception at org.neo4j.kernel.lifecycle.LifeSupport$LifecycleInstance.shutdown(LifeSupport.java:515) at org.neo4j.kernel.lifecycle.LifeSupport.shutdown(LifeSupport.java:203) ... 9 more Caused by: java.lang.IllegalStateException: Cannot close the PageCache while files are still mapped: neostore (1 mapping) neostore.counts.db.a (1 mapping) neostore.relationshipgroupstore.db (1 mapping) neostore.schemastore.db (1 mapping) neostore.labeltokenstore.db (1 mapping) neostore.labeltokenstore.db.names (1 mapping) neostore.relationshiptypestore.db (1 mapping) neostore.relationshiptypestore.db.names (1 mapping) neostore.relationshipstore.db (1 mapping) neostore.propertystore.db (1 mapping) neostore.propertystore.db.arrays (1 mapping) neostore.propertystore.db.strings (1 mapping) neostore.propertystore.db.index (1 mapping) neostore.propertystore.db.index.keys (1 mapping) neostore.nodestore.db (1 mapping) neostore.nodestore.db.labels (1 mapping) at org.neo4j.io.pagecache.impl.muninn.MuninnPageCache.close(MuninnPageCache.java:521) at org.neo4j.kernel.impl.pagecache.PageCacheLifecycle.shutdown(PageCacheLifecycle.java:42) at org.neo4j.kernel.lifecycle.LifeSupport$LifecycleInstance.shutdown(LifeSupport.java:507) ... 10 more
There's more, but is pretty repetitive. I'm not sure what this means. My log before this is clean with no errors. Any help is appreciated.
Thanks