Reputation: 874
I used to have neo4j on a small hard drive on my machine and I created a new installation on a larger hard drive and now I can't start neo4j console. I can start neo4j shell, but console hangs up after this:
WARNING: Max 16384 open files allowed, minimum of 40 000 recommended. See the Neo4j manual.
Starting Neo4j Server console-mode...
Using additional JVM arguments: -server -XX:+DisableExplicitGC -Dorg.neo4j.server.properties=conf/neo4j-server.properties -Djava.util.logging.config.file=conf/logging.properties -Dlog4j.configuration=file:conf/log4j.properties -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -Xms512m -Xmx30000m
2015-01-09 19:24:14.268+0000 INFO [API] Setting startup timeout to: 120000ms based on -1
Any suggestions on why this may be happening? I used to get the similar Max x open files allowed warning and everythign worked fine. Any suggestions on where to look for the source of error would be great. Thanks!
Upvotes: 1
Views: 1707
Reputation: 19211
It is not because of the warning about open files.
But, you will definitely find the error in the log that is located in the file graph.db/messages.log
.
Typically these types of errors is because of either:
allow_store_upgrade=true
Upvotes: 2